DBA Data[Home] [Help]

APPS.AP_WEB_CREDIT_CARD_WF dependencies on MO_GLOBAL

Line 432: l_orgId := mo_global.get_current_org_id;

428: l_debugInfo := 'Get and Set ORG_ID attribute ';
429: --------------------------------------------------------------
430: --FND_PROFILE.GET('ORG_ID' , l_orgId );
431: -- 8990469 : MOAC
432: l_orgId := mo_global.get_current_org_id;
433: if l_orgId is null then
434: FND_PROFILE.GET('ORG_ID' , l_orgId );
435: end if;
436:

Line 1008: l_orgId := mo_global.get_current_org_id;

1004: l_debugInfo := 'Get and Set ORG_ID attribute ';
1005: --------------------------------------------------------------
1006: -- FND_PROFILE.GET('ORG_ID' , l_orgId );
1007: -- 8990469 : MOAC
1008: l_orgId := mo_global.get_current_org_id;
1009: if l_orgId is null then
1010: FND_PROFILE.GET('ORG_ID' , l_orgId );
1011: end if;
1012:

Line 1387: l_orgId := mo_global.get_current_org_id;

1383: l_debugInfo := 'Get and Set ORG_ID attribute ';
1384: --------------------------------------------------------------
1385: --FND_PROFILE.GET('ORG_ID' , l_orgId );
1386: -- 8990469 : MOAC
1387: l_orgId := mo_global.get_current_org_id;
1388: if l_orgId is null then
1389: FND_PROFILE.GET('ORG_ID' , l_orgId );
1390: end if;
1391:

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

3988: if ( p_funmode = 'SET_CTX' ) then
3989: --
3990:
3991: if (l_org_id is not null) then
3992: mo_global.set_policy_context(p_access_mode => 'S',
3993: p_org_id => l_org_id);
3994: end if;
3995:
3996: p_result := 'TRUE';

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

4000:
4001: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
4002: --
4003:
4004: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
4005: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
4006: p_result := 'FALSE';
4007: ELSE
4008: p_result := 'TRUE';

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

4001: if ( p_funmode = 'TEST_CTX' and l_org_id is not null) then
4002: --
4003:
4004: IF ((nvl(mo_global.get_access_mode, 'NULL') <> 'S') OR
4005: (nvl(mo_global.get_current_org_id, -99) <> nvl(l_org_id, -99)) ) THEN
4006: p_result := 'FALSE';
4007: ELSE
4008: p_result := 'TRUE';
4009: END IF;