DBA Data[Home] [Help]

APPS.BEN_ICD_PKG dependencies on FND_MSG_PUB

Line 146: fnd_msg_pub.initialize;

142: AND pet.effective_end_date;
143:
144:
145: begin
146: fnd_msg_pub.initialize;
147: open c_entry_exists;
148: fetch c_entry_exists into l_null;
149: if c_entry_exists%found then
150: hr_utility.set_message(801,'HR_7455_PLK_ELE_ENTRY_EXISTS');

Line 407: fnd_msg_pub.add;

403: );
404:
405: EXCEPTION
406: when others then
407: fnd_msg_pub.add;
408:
409: end CREATE_TRANSACTION;
410:
411: procedure UPDATE_TRANSACTION

Line 553: fnd_msg_pub.initialize;

549: AND icd.ICD_TRANSACTION_ID<>P_ICD_TRANSACTION_ID;
550:
551: begin
552:
553: fnd_msg_pub.initialize;
554: open c_entry_exists;
555: fetch c_entry_exists into l_null;
556: if c_entry_exists%found then
557: hr_utility.set_message(801,'HR_7455_PLK_ELE_ENTRY_EXISTS');

Line 722: fnd_msg_pub.initialize;

718: AND icd.ICD_TRANSACTION_ID<>P_ICD_TRANSACTION_ID;
719:
720: begin
721:
722: fnd_msg_pub.initialize;
723: open c_entry_exists;
724: fetch c_entry_exists into l_null;
725: if c_entry_exists%found then
726: hr_utility.set_message(801,'HR_7455_PLK_ELE_ENTRY_EXISTS');

Line 727: FND_MSG_PUB.ADD;

723: open c_entry_exists;
724: fetch c_entry_exists into l_null;
725: if c_entry_exists%found then
726: hr_utility.set_message(801,'HR_7455_PLK_ELE_ENTRY_EXISTS');
727: FND_MSG_PUB.ADD;
728: end if;
729: close c_entry_exists;
730:
731: END VALIDATE_TRANSACTION;