cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

We are working to address an issue with subscription email notifications. In the meantime, be sure to check your favorite boards for new topics.

epmdocument + secondary content (pvs) sql

rvanveerdeghem
9-Granite

epmdocument + secondary content (pvs) sql

Hello,

Does somebody know the link between an epmdocument and the secondary content (pvs) with oracle SQL?

Thanks in advance

1 ACCEPTED SOLUTION

Accepted Solutions

This will get you the all the derived images an EPMDocument. If you want to see only the .pvs, you can uncomment the last line.

select a.*

  from derivedimage i, epmdocument e, holdertocontent c, applicationdata a, epmdocumentmaster m

where m.cadname = '<name here>'

and m.ida2a2 = e.ida3masterreference

   and i.ida3a6 = e.ida2a2

   and c.ida3a5 = i.ida2a2

   and c.ida3b5 = a.ida2a2

   --and a.role = 'PRODUCT_VIEW_ED';

View solution in original post

2 REPLIES 2

This will get you the all the derived images an EPMDocument. If you want to see only the .pvs, you can uncomment the last line.

select a.*

  from derivedimage i, epmdocument e, holdertocontent c, applicationdata a, epmdocumentmaster m

where m.cadname = '<name here>'

and m.ida2a2 = e.ida3masterreference

   and i.ida3a6 = e.ida2a2

   and c.ida3a5 = i.ida2a2

   and c.ida3b5 = a.ida2a2

   --and a.role = 'PRODUCT_VIEW_ED';

Thanks Jamie,

This works great.

many thanks

Top Tags