DBA Data[Home] [Help]

VIEW: APPS.ISC_MSC_BIS_ORGANIZATIONS_V

Source

View Text - Preformatted

SELECT distinct org.sr_instance_id||'-'||org.sr_tp_id ID, org.partner_name VALUE, res.responsibility_id RESPONSIBILITY_ID FROM msc_trading_partners org, msc_plans pl, fnd_responsibility_vl res WHERE org.sr_tp_id = pl.organization_id AND org.sr_instance_id = pl.sr_instance_id AND org.partner_type=3 UNION ALL SELECT distinct org.sr_instance_id||'-'||org.sr_tp_id ID, org.partner_name VALUE, oa.responsibility_id RESPONSIBILITY_ID FROM msc_trading_partners org, msc_plans pl, org_access oa WHERE org.sr_tp_id = pl.organization_id AND org.sr_instance_id = pl.sr_instance_id AND org.sr_tp_id = oa.organization_id AND org.partner_type=3
View Text - HTML Formatted

SELECT DISTINCT ORG.SR_INSTANCE_ID||'-'||ORG.SR_TP_ID ID
, ORG.PARTNER_NAME VALUE
, RES.RESPONSIBILITY_ID RESPONSIBILITY_ID
FROM MSC_TRADING_PARTNERS ORG
, MSC_PLANS PL
, FND_RESPONSIBILITY_VL RES
WHERE ORG.SR_TP_ID = PL.ORGANIZATION_ID
AND ORG.SR_INSTANCE_ID = PL.SR_INSTANCE_ID
AND ORG.PARTNER_TYPE=3 UNION ALL SELECT DISTINCT ORG.SR_INSTANCE_ID||'-'||ORG.SR_TP_ID ID
, ORG.PARTNER_NAME VALUE
, OA.RESPONSIBILITY_ID RESPONSIBILITY_ID
FROM MSC_TRADING_PARTNERS ORG
, MSC_PLANS PL
, ORG_ACCESS OA
WHERE ORG.SR_TP_ID = PL.ORGANIZATION_ID
AND ORG.SR_INSTANCE_ID = PL.SR_INSTANCE_ID
AND ORG.SR_TP_ID = OA.ORGANIZATION_ID
AND ORG.PARTNER_TYPE=3