DBA Data[Home] [Help]

APPS.POS_SBD_PKG dependencies on FND_MSG_PUB

Line 2680: fnd_msg_pub.add;

2676: x_response => l_record_type);
2677:
2678: if l_ext_bank_account_id is not null then
2679: fnd_message.set_name('IBY', 'IBY_UNIQ_ACCOUNT');
2680: fnd_msg_pub.add;
2681: OPEN c_supplier(l_ext_bank_account_id);
2682: FETCH c_supplier INTO l_party_id;
2683: IF l_party_id IS NOT NULL THEN
2684: SELECT vendor_name, segment1

Line 2691: fnd_msg_pub.add;

2687: WHERE party_id = l_party_id;
2688: fnd_message.set_name('IBY', 'IBY_UNIQ_ACCOUNT_SUPPLIER');
2689: fnd_message.set_Token('SUPPLIER',l_supplier_name);
2690: fnd_message.set_Token('SUPPLIERNUMBER',l_supplier_number);
2691: fnd_msg_pub.add;
2692: END IF;
2693: CLOSE c_supplier;
2694: X_STATUS := fnd_api.g_ret_sts_error;
2695: RAISE fnd_api.g_exc_error;