DBA Data[Home] [Help]

APPS.AP_WEB_HOLDS_WF dependencies on MO_GLOBAL

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

1003: if ( p_funmode = 'SET_CTX' ) then
1004: --
1005:
1006: if (l_org_id is not null) then
1007: mo_global.set_policy_context(p_access_mode => 'S',
1008: p_org_id => l_org_id);
1009: end if;
1010:
1011: p_result := 'TRUE';

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

1015:
1016: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
1017: --
1018:
1019: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
1020: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
1021: p_result := 'FALSE';
1022: ELSE
1023: p_result := 'TRUE';

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

1016: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
1017: --
1018:
1019: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
1020: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
1021: p_result := 'FALSE';
1022: ELSE
1023: p_result := 'TRUE';
1024: END IF;