DBA Data[Home] [Help]

APPS.PSP_ENC_SUM_TRAN dependencies on MO_GLOBAL

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

4813: FOR recno IN 1..r_interface.txn_interface_id.COUNT
4814: LOOP
4815: psp_general.get_gms_effective_date(r_interface.person_id(recno), r_interface.gms_overriding_date(recno));
4816: -- set the context to single to call pa_utils function
4817: mo_global.set_policy_context('S', r_interface.operating_unit(recno) );
4818: r_interface.exp_end_date(recno) := pa_utils.getweekending(r_interface.gms_overriding_date(recno));
4819: END LOOP;
4820: -- set the context again to multiple
4821: mo_global.set_policy_context('M', null);

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

4817: mo_global.set_policy_context('S', r_interface.operating_unit(recno) );
4818: r_interface.exp_end_date(recno) := pa_utils.getweekending(r_interface.gms_overriding_date(recno));
4819: END LOOP;
4820: -- set the context again to multiple
4821: mo_global.set_policy_context('M', null);
4822:
4823: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Completed computation of PA week ending date(s)');
4824:
4825: FORALL recno IN 1..r_interface.txn_interface_id.COUNT

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

4897:
4898: FOR request_counter IN 1..org_id_tab.count
4899: LOOP
4900: -- set the context to single to call submit_request
4901: mo_global.set_policy_context('S', org_id_tab(request_counter) );
4902: fnd_request.set_org_id (org_id_tab(request_counter) );
4903:
4904: req_id_tab(request_counter) := fnd_request.submit_request
4905: ('PA',

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

4933: END IF;
4934: END LOOP;
4935: COMMIT;
4936: -- set the context again to multiple
4937: mo_global.set_policy_context('M', null);
4938:
4939: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Calling gather_table_stats for psp_enc_summary_lines');
4940: fnd_stats.gather_table_stats('PSP', 'PSP_ENC_SUMMARY_LINES');
4941: fnd_file.put_line(fnd_file.log, fnd_date.date_to_canonical(SYSDATE) || ' Completed gather_table_stats for psp_enc_summary_lines');