DBA Data[Home] [Help]

APPS.PSP_ENC_SUM_TRAN dependencies on MO_GLOBAL

Line 4941: mo_global.set_policy_context('S', r_interface.operating_unit(recno) );

4937: FOR recno IN 1..r_interface.txn_interface_id.COUNT
4938: LOOP
4939: psp_general.get_gms_effective_date(r_interface.person_id(recno), r_interface.gms_overriding_date(recno));
4940: -- set the context to single to call pa_utils function
4941: mo_global.set_policy_context('S', r_interface.operating_unit(recno) );
4942: r_interface.exp_end_date(recno) := pa_utils.getweekending(r_interface.gms_overriding_date(recno));
4943: END LOOP;
4944: -- set the context again to multiple
4945: mo_global.set_policy_context('M', null);

Line 4945: mo_global.set_policy_context('M', null);

4941: mo_global.set_policy_context('S', r_interface.operating_unit(recno) );
4942: r_interface.exp_end_date(recno) := pa_utils.getweekending(r_interface.gms_overriding_date(recno));
4943: END LOOP;
4944: -- set the context again to multiple
4945: mo_global.set_policy_context('M', null);
4946:
4947: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Completed computation of PA week ending date(s)');
4948:
4949: FORALL recno IN 1..r_interface.txn_interface_id.COUNT

Line 5037: mo_global.set_policy_context('S', org_id_tab(request_counter) );

5033:
5034: FOR request_counter IN 1..org_id_tab.count
5035: LOOP
5036: -- set the context to single to call submit_request
5037: mo_global.set_policy_context('S', org_id_tab(request_counter) );
5038: fnd_request.set_org_id (org_id_tab(request_counter) );
5039: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || 'Calling Transaction import process for org_id: '||org_id_tab(request_counter));
5040: req_id_tab(request_counter) := fnd_request.submit_request
5041: ('PA',

Line 5079: mo_global.set_policy_context('M', null);

5075: END IF;
5076: END LOOP;
5077: COMMIT;
5078: -- set the context again to multiple
5079: mo_global.set_policy_context('M', null);
5080:
5081: -- fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling gather_table_stats for psp_enc_summary_lines');
5082: -- fnd_stats.gather_table_stats('PSP', 'PSP_ENC_SUMMARY_LINES');
5083: -- fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Completed gather_table_stats for psp_enc_summary_lines');