DBA Data[Home] [Help]

APPS.AP_WEB_RECEIPTS_WF dependencies on MO_GLOBAL

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

2374: if ( p_funmode = 'SET_CTX' ) then
2375: --
2376:
2377: if (l_org_id is not null) then
2378: mo_global.set_policy_context(p_access_mode => 'S',
2379: p_org_id => l_org_id);
2380: end if;
2381:
2382: p_result := 'TRUE';

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

2386:
2387: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
2388: --
2389:
2390: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
2391: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
2392: p_result := 'FALSE';
2393: ELSE
2394: p_result := 'TRUE';

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

2387: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
2388: --
2389:
2390: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
2391: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
2392: p_result := 'FALSE';
2393: ELSE
2394: p_result := 'TRUE';
2395: END IF;