DBA Data[Home] [Help]

APPS.AR_BR_REMIT_IMPORT_API_PUB dependencies on FND_MESSAGE

Line 92: fnd_message.set_name('AR_BR','AR_BR_TRX_INVALID');

88: where customer_trx_id = p_internal_reference
89: and reserved_type = 'REMITTANCE';
90:
91: IF p_reserved_value is null THEN
92: fnd_message.set_name('AR_BR','AR_BR_TRX_INVALID');
93: app_exception.raise_exception;
94: END IF;
95:
96: Select batch_applied_status,

Line 119: fnd_message.set_name ('AR_BR','AR_BR_TRX_INVALID');

115:
116: EXCEPTION
117: WHEN NO_DATA_FOUND THEN
118: ROLLBACK TO IMPORT_MAIN;
119: fnd_message.set_name ('AR_BR','AR_BR_TRX_INVALID');
120: arp_standard.debug ('EXCEPTION NO_DATA impremapi.Check_BR_and_Batch_Status');
121: app_exception.raise_exception;
122:
123: WHEN invalid_remittance_status THEN

Line 125: fnd_message.set_name ('AR_BR','AR_BR_TRX_INVALID');

121: app_exception.raise_exception;
122:
123: WHEN invalid_remittance_status THEN
124: ROLLBACK TO IMPORT_MAIN;
125: fnd_message.set_name ('AR_BR','AR_BR_TRX_INVALID');
126: arp_standard.debug ('EXCEPTION invalid_remittance_status.Check_BR_and_Batch_Status');
127: app_exception.raise_exception;
128:
129: WHEN OTHERS THEN

Line 212: fnd_message.set_name

208: WHERE cbau.bank_acct_use_id =l_remit_bank_acct_use_id
209: AND cbau.bank_account_id = cba.bank_account_id;
210:
211: If l_bank_account_num <> p_remittance_bnk_acct_number THEN
212: fnd_message.set_name
213: ( 'AR_BR','AR_BR_INVALID_PARAMETER');
214: FND_MESSAGE.set_token('PARAMETER',' bank account ');
215: app_exception.raise_exception;
216: END IF;

Line 214: FND_MESSAGE.set_token('PARAMETER',' bank account ');

210:
211: If l_bank_account_num <> p_remittance_bnk_acct_number THEN
212: fnd_message.set_name
213: ( 'AR_BR','AR_BR_INVALID_PARAMETER');
214: FND_MESSAGE.set_token('PARAMETER',' bank account ');
215: app_exception.raise_exception;
216: END IF;
217:
218: IF l_currency_code<>p_currency_code THEN

Line 219: fnd_message.set_name

215: app_exception.raise_exception;
216: END IF;
217:
218: IF l_currency_code<>p_currency_code THEN
219: fnd_message.set_name
220: ('AR_BR','AR_BR_INVALID_PARAMETER');
221: FND_MESSAGE.set_token('PARAMETER',' currency code ');
222: app_exception.raise_exception;
223: END IF;

Line 221: FND_MESSAGE.set_token('PARAMETER',' currency code ');

217:
218: IF l_currency_code<>p_currency_code THEN
219: fnd_message.set_name
220: ('AR_BR','AR_BR_INVALID_PARAMETER');
221: FND_MESSAGE.set_token('PARAMETER',' currency code ');
222: app_exception.raise_exception;
223: END IF;
224:
225: IF l_gl_date<>p_remittance_accounting_date THEN

Line 226: fnd_message.set_name

222: app_exception.raise_exception;
223: END IF;
224:
225: IF l_gl_date<>p_remittance_accounting_date THEN
226: fnd_message.set_name
227: ('AR_BR','AR_BR_INVALID_PARAMETER');
228: FND_MESSAGE.set_token('PARAMETER',' accounting date ');
229: app_exception.raise_exception;
230: END IF;

Line 228: FND_MESSAGE.set_token('PARAMETER',' accounting date ');

224:
225: IF l_gl_date<>p_remittance_accounting_date THEN
226: fnd_message.set_name
227: ('AR_BR','AR_BR_INVALID_PARAMETER');
228: FND_MESSAGE.set_token('PARAMETER',' accounting date ');
229: app_exception.raise_exception;
230: END IF;
231:
232: IF l_with_recourse_flag<>p_with_recourse_flag THEN

Line 233: fnd_message.set_name

229: app_exception.raise_exception;
230: END IF;
231:
232: IF l_with_recourse_flag<>p_with_recourse_flag THEN
233: fnd_message.set_name
234: ('AR_BR','AR_BR_INVALID_PARAMETER');
235: FND_MESSAGE.set_token('PARAMETER',' recourse flag ');
236: app_exception.raise_exception;
237: END IF;

Line 235: FND_MESSAGE.set_token('PARAMETER',' recourse flag ');

231:
232: IF l_with_recourse_flag<>p_with_recourse_flag THEN
233: fnd_message.set_name
234: ('AR_BR','AR_BR_INVALID_PARAMETER');
235: FND_MESSAGE.set_token('PARAMETER',' recourse flag ');
236: app_exception.raise_exception;
237: END IF;
238:
239:

Line 241: fnd_message.set_name

237: END IF;
238:
239:
240: IF l_batch_date<>p_remittance_date THEN
241: fnd_message.set_name
242: ('AR_BR','AR_BR_INVALID_PARAMETER');
243: FND_MESSAGE.set_token('PARAMETER',' remittance date ');
244: app_exception.raise_exception;
245: END IF;

Line 243: FND_MESSAGE.set_token('PARAMETER',' remittance date ');

239:
240: IF l_batch_date<>p_remittance_date THEN
241: fnd_message.set_name
242: ('AR_BR','AR_BR_INVALID_PARAMETER');
243: FND_MESSAGE.set_token('PARAMETER',' remittance date ');
244: app_exception.raise_exception;
245: END IF;
246:
247: BEGIN

Line 258: fnd_message.set_name ( 'AR', 'AR_BR_INVALID_RECEIPT_METHOD');

254:
255:
256: EXCEPTION
257: WHEN NO_DATA_FOUND THEN
258: fnd_message.set_name ( 'AR', 'AR_BR_INVALID_RECEIPT_METHOD');
259: app_exception.raise_exception;
260:
261: END;
262:

Line 264: fnd_message.set_name

260:
261: END;
262:
263: IF l_payment_method <> p_payment_method THEN
264: fnd_message.set_name
265: ('AR_BR','AR_BR_INVALID_PARAMETER');
266: FND_MESSAGE.set_token('PARAMETER',' payment method ');
267: app_exception.raise_exception;
268: END IF;

Line 266: FND_MESSAGE.set_token('PARAMETER',' payment method ');

262:
263: IF l_payment_method <> p_payment_method THEN
264: fnd_message.set_name
265: ('AR_BR','AR_BR_INVALID_PARAMETER');
266: FND_MESSAGE.set_token('PARAMETER',' payment method ');
267: app_exception.raise_exception;
268: END IF;
269:
270: arp_standard.debug ('impremapi.Compare_old_versus_new_values ()-');

Line 464: fnd_message.set_name ( 'AR', 'AR_MUST_ENTER_REMIT_BANK');

460: x_return_status := FND_API.G_RET_STS_ERROR;
461: ROLLBACK TO IMPORT_MAIN;
462: arp_standard.debug('EXCEPTION Branch no_data : ' ||
463: 'impremapi.New_Remittance');
464: fnd_message.set_name ( 'AR', 'AR_MUST_ENTER_REMIT_BANK');
465: app_exception.raise_exception;
466: END;
467:
468: BEGIN

Line 482: fnd_message.set_name ( 'AR', 'Invalid Remittance Bank Branch');

478: x_return_status := FND_API.G_RET_STS_ERROR;
479: ROLLBACK TO IMPORT_MAIN;
480: arp_standard.debug('EXCEPTION Bank acc id no_data : ' ||
481: 'impremapi.New_Remittance');
482: fnd_message.set_name ( 'AR', 'Invalid Remittance Bank Branch');
483: app_exception.raise_exception;
484: END;
485:
486: BEGIN

Line 503: fnd_message.set_name('AR','AR_BR_INVALID_REMIT_PROGRAM');

499: WHEN NO_DATA_FOUND THEN
500: x_return_status := FND_API.G_RET_STS_ERROR;
501: ROLLBACK TO IMPORT_MAIN;
502: arp_standard.debug('EXCEPTION Receipt Method : impremapi.New_Remittance');
503: fnd_message.set_name('AR','AR_BR_INVALID_REMIT_PROGRAM');
504: app_exception.raise_exception;
505:
506: END;
507:

Line 524: fnd_message.set_name ( 'AR', 'AR_BR_INVALID_RECEIPT_METHOD');

520: WHEN NO_DATA_FOUND THEN
521: x_return_status := FND_API.G_RET_STS_ERROR;
522: ROLLBACK TO IMPORT_MAIN;
523: arp_standard.debug('EXCEPTION Receipt Method Progs : impremapi.New_Remittance');
524: fnd_message.set_name ( 'AR', 'AR_BR_INVALID_RECEIPT_METHOD');
525: app_exception.raise_exception;
526: END;
527:
528: l_batch_id := null;

Line 738: fnd_message.set_name('AR_BR','AR_BR_MEDIA_REF_NULL');

734: IF p_media_reference is null THEN
735: x_return_status := FND_API.G_RET_STS_ERROR;
736: arp_standard.debug('Impremapi.Import_Remittance_Main media_ref null');
737: --bug 1644533
738: fnd_message.set_name('AR_BR','AR_BR_MEDIA_REF_NULL');
739: app_exception.raise_exception;
740: end if;
741:
742: /*---------------------------------------------------------------------------------------