DBA Data[Home] [Help]

APPS.AP_WEB_CREDIT_CARD_WF dependencies on MO_GLOBAL

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

3919: if ( p_funmode = 'SET_CTX' ) then
3920: --
3921:
3922: if (l_org_id is not null) then
3923: mo_global.set_policy_context(p_access_mode => 'S',
3924: p_org_id => l_org_id);
3925: end if;
3926:
3927: p_result := 'TRUE';

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

3931:
3932: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
3933: --
3934:
3935: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
3936: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
3937: p_result := 'FALSE';
3938: ELSE
3939: p_result := 'TRUE';

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

3932: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
3933: --
3934:
3935: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
3936: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
3937: p_result := 'FALSE';
3938: ELSE
3939: p_result := 'TRUE';
3940: END IF;