Query related to promotion request in Windchill
Hi All,
I'm trying to write a SQL to extract the objects linked to Promotion requests in Windchill. Any inputs or directions to useful articles is helpful.
Hi All,
I'm trying to write a SQL to extract the objects linked to Promotion requests in Windchill. Any inputs or directions to useful articles is helpful.
This SQL worked to extract promotionnumber associated with EPMDOCUMENT
SELECT DISTINCT
pn.name AS drw_pr_name,
pn.promotionnoticenumber,
epmm.documentnumber AS epmdocumentnumber,
epm.versionida2versioninfo AS epmdoc_revision,
pn.promotiondate,
pn.statestate pr_state
FROM
promotionnotice pn
JOIN promotiontarget pt ON pn.ida2a2 = pt.ida3a5
JOIN promotionseed ps ON ps.ida3a5 = pn.ida2a2
JOIN epmdocument epm ON epm.ida2a2 = pt.ida3b5
JOIN epmdocumentmaster epmm ON epmm.ida2a2 = epm.ida3masterreference
ORDER BY
pn.promotionnoticenumber
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.