DBA Data[Home] [Help]

APPS.OZF_CLAIM_TAX_PVT dependencies on FND_MESSAGE

Line 46: FND_MESSAGE.set_name('OZF', 'OZF_VENDOR_INFO_MISSING');

42: -- Do Header Level Validation
43: IF p_claim_rec.payment_method IN ( 'EFT','WIRE','CHECK','AP_DEBIT', 'AP_DEFAULT') AND
44: p_claim_rec.vendor_id IS NULL AND p_claim_rec.vendor_site_id IS NULL THEN
45: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
46: FND_MESSAGE.set_name('OZF', 'OZF_VENDOR_INFO_MISSING');
47: FND_MSG_PUB.add;
48: END IF;
49: RAISE FND_API.g_exc_error;
50: END IF;

Line 224: FND_MESSAGE.set_name('OZF', 'OZF_PROD_QTY_PRICE_MISSING');

220: IF p_x_claim_line_rec.item_id IS NULL OR p_x_claim_line_rec.quantity IS NULL OR
221: p_x_claim_line_rec.rate IS NULL
222: THEN
223: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
224: FND_MESSAGE.set_name('OZF', 'OZF_PROD_QTY_PRICE_MISSING');
225: FND_MSG_PUB.add;
226: END IF;
227: RAISE FND_API.g_exc_error;
228: END IF;

Line 235: FND_MESSAGE.set_name('OZF', 'OZF_INV_INFO_MISSING');

231: IF l_claim_header.payment_method = 'REG_CREDIT_MEMO' THEN
232: IF p_x_claim_line_rec.source_object_class IS NULL OR p_x_claim_line_rec.source_object_id IS NULL
233: AND p_x_claim_line_rec.source_object_id NOT IN ( 'INVOICE', 'CB', 'DM' ) THEN
234: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
235: FND_MESSAGE.set_name('OZF', 'OZF_INV_INFO_MISSING');
236: FND_MSG_PUB.add;
237: END IF;
238: RAISE FND_API.g_exc_error;
239: END IF;

Line 242: FND_MESSAGE.set_name('OZF', 'OZF_REGCM_TAXCALC_ERR');

238: RAISE FND_API.g_exc_error;
239: END IF;
240: IF p_x_claim_line_rec. credit_to IS NOT NULL OR p_x_claim_line_rec. source_object_line_id IS NULL THEN
241: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
242: FND_MESSAGE.set_name('OZF', 'OZF_REGCM_TAXCALC_ERR');
243: FND_MSG_PUB.add;
244: END IF;
245: RAISE FND_API.g_exc_error;
246: END IF;

Line 621: FND_MESSAGE.set_name('OZF', 'OZF_ADJLINE_ERR');

617: IF p_x_claim_line_rec.earnings_associated_flag = 'T' OR
618: ( p_x_claim_line_rec.quantity IS NOT NULL AND p_x_claim_line_rec.rate IS NOT NULL)
619: THEN
620: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
621: FND_MESSAGE.set_name('OZF', 'OZF_ADJLINE_ERR');
622: FND_MESSAGE.set_token('LINE_AMOUNT' , p_x_claim_line_rec.claim_currency_amount );
623: FND_MSG_PUB.add;
624: END IF;
625: RAISE FND_API.g_exc_error;

Line 622: FND_MESSAGE.set_token('LINE_AMOUNT' , p_x_claim_line_rec.claim_currency_amount );

618: ( p_x_claim_line_rec.quantity IS NOT NULL AND p_x_claim_line_rec.rate IS NOT NULL)
619: THEN
620: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
621: FND_MESSAGE.set_name('OZF', 'OZF_ADJLINE_ERR');
622: FND_MESSAGE.set_token('LINE_AMOUNT' , p_x_claim_line_rec.claim_currency_amount );
623: FND_MSG_PUB.add;
624: END IF;
625: RAISE FND_API.g_exc_error;
626: END IF;