DBA Data[Home] [Help]

APPS.PSP_RBKPAY dependencies on FND_MESSAGE

Line 71: fnd_message.set_name('PSP','PSP_INVALID_PERIOD');

67:
68: open get_payroll_id_csr;
69: fetch get_payroll_id_csr into l_start_date,l_end_date, l_payroll_id;
70: if get_payroll_id_csr%NOTFOUND then
71: fnd_message.set_name('PSP','PSP_INVALID_PERIOD');
72: fnd_msg_pub.add;
73: close get_payroll_id_csr;
74: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
75: end if;

Line 84: fnd_message.set_name('PSP','PSP_PAY_RBK_PRD');

80: open get_payroll_control_id_csr;
81: fetch get_payroll_control_id_csr into g_payroll_control_rec;
82:
83: if get_payroll_control_id_csr%NOTFOUND then
84: fnd_message.set_name('PSP','PSP_PAY_RBK_PRD');
85:
86: /*************************************************************************************************
87: Message Details would be either Summarize and transfer has already been run , or
88: create dist lines. Need to first rollback CDL, before attempting here

Line 112: fnd_message.set_name('PSP','PSP_PAY_RBK_DST');

108: Check whether Create Distribution Lines has been run
109: If so, need to rollback create distribution lines first
110: ***********************************************************************************************/
111: THEN
112: fnd_message.set_name('PSP','PSP_PAY_RBK_DST');
113: fnd_msg_pub.add;
114: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
115:
116: ELSE

Line 151: fnd_message.set_name('PSP','PSP_PAY_RBK_STA');

147: Summerized and transfered (status_code= 'P') then dont allow rollback and show error.
148: *********************************************************************************************** */
149: -- Bug 3950282:raise error only if all rows in Control table are already summerised and transfered.
150: IF l_all_sum_trans_flag = TRUE THEN
151: fnd_message.set_name('PSP','PSP_PAY_RBK_STA');
152: fnd_msg_pub.add;
153: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
154: END IF;
155: