There have been some great blog posts for this type of query. Here are a few that I like
From CompShack - http://www.compshack.com/breadcrumb/breadcrumb-sql-to-find-navigation-path-for-component-pia
From Peoplesoft Tipster - http://peoplesofttipster.com/2007/12/09/portal-navigation/
/* Provide navigation location for component */
SELECT a.portal_name,
e.portal_label AS parent4_folder,
d.portal_label AS parent3_folder,
c.portal_label AS parent2_folder,
b.portal_label AS parent_folder,
a.portal_label AS component
FROM psprsmdefn a
left join psprsmdefn b
ON b.portal_name = a.portal_name
AND b.portal_objname = a.portal_prntobjname
left join psprsmdefn c
ON c.portal_name = b.portal_name
AND c.portal_objname = b.portal_prntobjname
left join psprsmdefn d
ON d.portal_name = c.portal_name
AND d.portal_objname = c.portal_prntobjname
left join psprsmdefn e
ON e.portal_name = d.portal_name
AND e.portal_objname = d.portal_prntobjname
WHERE a.portal_reftype = 'C'
-- Parameter to set: (In this case I used the component - ADM_APPL_MAINTNCE)
AND a.portal_uri_seg2 = 'ADM_APPL_MAINTNCE'
Welcome to my Peoplesoft/Oracle blog. I wanted to create this blog to help other developers and colleagues with coding samples.(HCM, CRM, SA and CS mods) The views expressed on this blog are my own and do not necessarily reflect the views of Oracle / Peoplesoft. Likewise, the views and opinions expressed by visitors to this blog are theirs and do not necessarily reflect my opinions or the opinions of Oracle / Peoplesoft.
Friday, November 18, 2011
Alliance 2012
Looking forward to attending and presenting at the HEUG Alliance Conference 2012 in Nashville!
Here is the technical track session I will be presenting with a great colleague Andrew Cesario.
Wed, Mar 21, 2012 (09:15 AM - 10:15 AM)
Technical
Subscribe to:
Posts (Atom)