Hi All,
Thanks for the input.
In fact it was useful to me.
But if this is the case like for a WTPart I had created a subtype called as "DemoPart" and for that DemoPart I had created an attribute or an IBA called as "DemoAttribute".
How do i retrieve the details of that IBA using an SQL Query in SQLDeveloper.
Can you please let me know about it once ?
Thanks and Regards,
Aditya Achanta
Given the following conditions
- DemoAttribute is a standard attribute (vs a global attribute)
- standard attributes are stored in the wtpart table in columns created when you run the addColumns utility
- WTPart number = "12345"
Then you would do the following
- find the column name per the referenced thread ie "ptc_str_1typeinfowtpart"
Query would then be something like this:
select
wtm.wtpartnumber,
wtm.name,
wt.versionida2versioninfo || '.' || wt.iterationida2iterationinfo Version,
wt.ptc_str_1typeinfowtpart DemoAttribute
from
wtpartmaster wtm,
wtpart wt
where
wtm.wtpartnumber = '12345'
and wt.ida3masterreference = wtm.ida2a2
and wt.statecheckoutinfo = 'c/i'
order by
wt.versionsortida2versioninfo,
wt.iterationida2iterationinfo