DBA Data[Home] [Help]

APPS.PAY_PPMV4_SS dependencies on HR_TRANSACTION_SS

Line 94: hr_transaction_ss.rollback_transaction

90: fnd_msg_pub.initialize;
91: --
92: -- Rollback any existing HR transaction table data.
93: --
94: hr_transaction_ss.rollback_transaction
95: (itemtype => p_item_type
96: ,itemkey => p_item_key
97: ,actid => p_activity_id
98: ,funmode => 'RUN'

Line 104: if hr_transaction_ss.get_transaction_id

100: );
101: --
102: -- Set the HR TRANSACTION_ID value to null.
103: --
104: if hr_transaction_ss.get_transaction_id
105: (p_item_type => p_item_type
106: ,p_item_key => p_item_key
107: ) is not null then
108: wf_engine.setitemattrtext

Line 595: to_date(p_effective_date, hr_transaction_ss.g_date_format);

591: --
592: add2wf(l_item_type, l_item_key, C_GOT_CONFIG2_WF_ATTR, 'Y');
593: --
594: l_effective_date :=
595: to_date(p_effective_date, hr_transaction_ss.g_date_format);
596: p_prepayments := 'N';
597: add2wf(l_item_type, l_item_key, C_PREPAYMENTS_WF_ATTR, 'N');
598: --
599: -- Count the PPMs.

Line 1598: to_date(p_effective_date, hr_transaction_ss.g_date_format);

1594: -- 1. Check that EFFECTIVE_DATE is valid and save it to the workflow.
1595: --
1596: l_stage := 'EFFECTIVE_DATE:1';
1597: l_effective_date :=
1598: to_date(p_effective_date, hr_transaction_ss.g_date_format);
1599: --
1600: l_stage := 'EFFECTIVE_DATE:2';
1601: if not hr_workflow_utility.item_attribute_exists
1602: (p_item_type => p_item_type

Line 2344: to_date(p_effective_date, hr_transaction_ss.g_date_format);

2340: --
2341: -- Fetch priorities.
2342: --
2343: l_effective_date :=
2344: to_date(p_effective_date, hr_transaction_ss.g_date_format);
2345: pay_ppmv4_utils_ss.seterrorstage(l_proc, 'GETPRIORITIES', 10);
2346: pay_ppmv4_utils_ss.getpriorities
2347: (p_assignment_id => p_assignment_id
2348: ,p_effective_date => l_effective_date

Line 2785: to_date(p_effective_date, hr_transaction_ss.g_date_format);

2781: l_new_ppm.currency_code := p_currency_code;
2782: l_new_ppm.org_payment_method_id := p_org_payment_method_id;
2783: l_new_ppm.territory_code := p_territory_code;
2784: l_new_ppm.effective_date :=
2785: to_date(p_effective_date, hr_transaction_ss.g_date_format);
2786: l_new_ppm.amount_type := p_amount_type;
2787: l_new_ppm.amount := p_amount;
2788: l_new_ppm.external_account_id := p_external_account_id;
2789: l_new_ppm.attribute_category := p_attribute_category;

Line 4105: p_effective_date := to_date(p_effective_date_str,hr_transaction_ss.g_date_format);

4101: where ppm.assignment_id = p_assignment_id
4102: and nvl(ppm.run_type_id, hr_api.g_number) = nvl(p_run_type_id, hr_api.g_number)
4103: and ppm.effective_start_date > p_effective_date;
4104: begin
4105: p_effective_date := to_date(p_effective_date_str,hr_transaction_ss.g_date_format);
4106: open csr_future_ppms
4107: (p_assignment_id
4108: ,p_effective_date
4109: );