DBA Data[Home] [Help]

APPS.AP_WEB_HOLDS_WF dependencies on MO_GLOBAL

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

997: if ( p_funmode = 'SET_CTX' ) then
998: --
999:
1000: if (l_org_id is not null) then
1001: mo_global.set_policy_context(p_access_mode => 'S',
1002: p_org_id => l_org_id);
1003: end if;
1004:
1005: p_result := 'TRUE';

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

1009:
1010: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
1011: --
1012:
1013: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
1014: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
1015: p_result := 'FALSE';
1016: ELSE
1017: p_result := 'TRUE';

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

1010: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
1011: --
1012:
1013: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
1014: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
1015: p_result := 'FALSE';
1016: ELSE
1017: p_result := 'TRUE';
1018: END IF;