DBA Data[Home] [Help]

APPS.PON_EMD_VALIDATION_PKG dependencies on FND_MSG_PUB

Line 88: FND_MSG_PUB.initialize();

84: END IF;
85:
86: -- Initialize message list if p_init_msg_list is set to TRUE.
87: IF FND_API.to_Boolean(p_init_msg_list) THEN
88: FND_MSG_PUB.initialize();
89: END IF;
90:
91: -- Start credit card number validation
92: IF (l_card_number IS NULL) THEN

Line 213: FND_MSG_PUB.ADD;

209:
210: x_return_status := FND_API.G_RET_STS_ERROR;
211: FND_MESSAGE.SET_NAME('PON', 'RECEIPT_NOT_CRE_FOR_DEPOSIT');
212: FND_MESSAGE.SET_TOKEN('DEPOSIT_TRX_NUM', p_trx_number);
213: FND_MSG_PUB.ADD;
214: x_receipt_num := NULL;
215: x_cash_receipt_id := NULL;
216: x_receipt_status := NULL;
217: IF (FND_LOG.LEVEL_UNEXPECTED >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

Line 249: FND_MSG_PUB.ADD;

245: x_return_status := FND_API.G_RET_STS_ERROR;
246: FND_MESSAGE.SET_NAME('PON', 'RECEIPT_NOT_CLEARED');
247: FND_MESSAGE.SET_TOKEN('DEPOSIT_TRX_NUM', p_trx_number);
248: FND_MESSAGE.SET_TOKEN('RECEIPT_NUM', x_receipt_num);
249: FND_MSG_PUB.ADD;
250: x_receipt_num := NULL;
251: x_cash_receipt_id := NULL;
252: x_receipt_status := NULL;
253: x_receipt_status_code := NULL;