DBA Data[Home] [Help]

APPS.AP_WEB_RECEIPTS_WF dependencies on MO_GLOBAL

Line 2126: mo_global.set_policy_context(p_access_mode => 'S',

2122: if ( p_funmode = 'SET_CTX' ) then
2123: --
2124:
2125: if (l_org_id is not null) then
2126: mo_global.set_policy_context(p_access_mode => 'S',
2127: p_org_id => l_org_id);
2128: end if;
2129:
2130: p_result := 'TRUE';

Line 2138: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR

2134:
2135: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
2136: --
2137:
2138: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
2139: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
2140: p_result := 'FALSE';
2141: ELSE
2142: p_result := 'TRUE';

Line 2139: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN

2135: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
2136: --
2137:
2138: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
2139: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
2140: p_result := 'FALSE';
2141: ELSE
2142: p_result := 'TRUE';
2143: END IF;