DBA Data[Home] [Help]

APPS.AR_DOC_TRANSFER_STANDARD dependencies on MO_GLOBAL

Line 22: --replaced the call to fnd_client_info with mo_global[bug 5729562]

18: 'ORG_ID');
19:
20: if ( p_funmode = 'SET_CTX' ) then
21: if (l_org_id is not null) then
22: --replaced the call to fnd_client_info with mo_global[bug 5729562]
23: mo_global.set_policy_context('S',l_org_id);
24: end if;
25: p_result := 'TRUE';
26: return;

Line 23: mo_global.set_policy_context('S',l_org_id);

19:
20: if ( p_funmode = 'SET_CTX' ) then
21: if (l_org_id is not null) then
22: --replaced the call to fnd_client_info with mo_global[bug 5729562]
23: mo_global.set_policy_context('S',l_org_id);
24: end if;
25: p_result := 'TRUE';
26: return;
27: end if;

Line 31: --replaced the call to fnd_client_info with mo_global[bug 5729562]

27: end if;
28:
29: if ( p_funmode = 'TEST_CTX') then
30: if(l_org_id is not null) then
31: --replaced the call to fnd_client_info with mo_global[bug 5729562]
32: mo_global.set_policy_context('S',l_org_id);
33: end if;
34: IF (nvl(rtrim(substrb(USERENV('CLIENT_INFO'), 1, 10)),'NULL') = nvl(to_char(l_org_id),'NULL')) THEN
35: p_result := 'TRUE';

Line 32: mo_global.set_policy_context('S',l_org_id);

28:
29: if ( p_funmode = 'TEST_CTX') then
30: if(l_org_id is not null) then
31: --replaced the call to fnd_client_info with mo_global[bug 5729562]
32: mo_global.set_policy_context('S',l_org_id);
33: end if;
34: IF (nvl(rtrim(substrb(USERENV('CLIENT_INFO'), 1, 10)),'NULL') = nvl(to_char(l_org_id),'NULL')) THEN
35: p_result := 'TRUE';
36: ELSE

Line 195: --replaced the call to fnd_client_info with mo_global[bug 5729562]

191: select org_id into l_org_id from ra_customer_trx_all
192: where customer_trx_id = doc_rec.source_id;
193:
194: if l_org_id is not null then
195: --replaced the call to fnd_client_info with mo_global[bug 5729562]
196: mo_global.set_policy_context('S',l_org_id);
197: end if;
198:
199: end if;

Line 196: mo_global.set_policy_context('S',l_org_id);

192: where customer_trx_id = doc_rec.source_id;
193:
194: if l_org_id is not null then
195: --replaced the call to fnd_client_info with mo_global[bug 5729562]
196: mo_global.set_policy_context('S',l_org_id);
197: end if;
198:
199: end if;
200: end if;