DBA Data[Home] [Help]

VIEW: APPS.PA_XCHARGE_PROJECT_ORGS_V

Source

View Text - Preformatted

SELECT distinct org.organization_id , org.business_group_id , org.name , org.date_from , org.date_to , 'Y' from hr_organization_units org ,pa_all_organizations pao where(( org.business_group_id =pa_utils.business_group_id and pa_cross_business_grp.IsCrossBGProfile='N') OR pa_cross_business_grp.IsCrossBGProfile='Y') and org.organization_id = pao.organization_id and pao.pa_org_use_type = 'PROJECTS' and pao.inactive_date is null
View Text - HTML Formatted

SELECT DISTINCT ORG.ORGANIZATION_ID
, ORG.BUSINESS_GROUP_ID
, ORG.NAME
, ORG.DATE_FROM
, ORG.DATE_TO
, 'Y'
FROM HR_ORGANIZATION_UNITS ORG
, PA_ALL_ORGANIZATIONS PAO WHERE(( ORG.BUSINESS_GROUP_ID =PA_UTILS.BUSINESS_GROUP_ID
AND PA_CROSS_BUSINESS_GRP.ISCROSSBGPROFILE='N') OR PA_CROSS_BUSINESS_GRP.ISCROSSBGPROFILE='Y')
AND ORG.ORGANIZATION_ID = PAO.ORGANIZATION_ID
AND PAO.PA_ORG_USE_TYPE = 'PROJECTS'
AND PAO.INACTIVE_DATE IS NULL