DBA Data[Home] [Help]

APPS.OKC_CONTEXT dependencies on OE_PROFILE

Line 81: NVL(OE_PROFILE.VALUE('OE_ORGANIZATION_ID',l_org_id),-99)); --Mmadhavi replaced get_okc_org_id with l_org_id

77: IF p_organization_id IS NULL THEN
78: -- Added By Jvorugan for Bug:4729941
79: IF l_org_id IS NOT NULL THEN
80: DBMS_SESSION.SET_CONTEXT('OKC_CONTEXT','ORGANIZATION_ID',
81: NVL(OE_PROFILE.VALUE('OE_ORGANIZATION_ID',l_org_id),-99)); --Mmadhavi replaced get_okc_org_id with l_org_id
82: ELSE
83: DBMS_SESSION.SET_CONTEXT('OKC_CONTEXT','ORGANIZATION_ID',-99);
84: END IF;
85: -- End of changes for Bug:4729941