DBA Data[Home] [Help]

APPS.GMS_AP_API2 dependencies on FND_MESSAGE

Line 525: fnd_message.set_name('GMS','GMS_INVALID_AWARD_FOUND');

521: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.
522: -- Added exception handling routine.
523: EXCEPTION
524: WHEN AWARD_NOT_FOUND THEN
525: fnd_message.set_name('GMS','GMS_INVALID_AWARD_FOUND');
526: --
527: -- Message : Incorrect award is associated with the invoice id : ??? and
528: -- distribution line number : ??????. Please change award information
529: -- on the distribution line.

Line 531: fnd_message.set_token('INVNUM',l_invoice_num);

527: -- Message : Incorrect award is associated with the invoice id : ??? and
528: -- distribution line number : ??????. Please change award information
529: -- on the distribution line.
530:
531: fnd_message.set_token('INVNUM',l_invoice_num);
532: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
533: app_exception.raise_exception;
534:
535: WHEN OTHERS THEN

Line 532: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));

528: -- distribution line number : ??????. Please change award information
529: -- on the distribution line.
530:
531: fnd_message.set_token('INVNUM',l_invoice_num);
532: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
533: app_exception.raise_exception;
534:
535: WHEN OTHERS THEN
536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');

Line 536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');

532: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
533: app_exception.raise_exception;
534:
535: WHEN OTHERS THEN
536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
537: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
538: fnd_message.set_token('OERRNO',to_char(sqlcode));
539: fnd_message.set_token('OERRM',sqlerrm);
540: app_exception.raise_exception;

Line 537: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');

533: app_exception.raise_exception;
534:
535: WHEN OTHERS THEN
536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
537: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
538: fnd_message.set_token('OERRNO',to_char(sqlcode));
539: fnd_message.set_token('OERRM',sqlerrm);
540: app_exception.raise_exception;
541:

Line 538: fnd_message.set_token('OERRNO',to_char(sqlcode));

534:
535: WHEN OTHERS THEN
536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
537: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
538: fnd_message.set_token('OERRNO',to_char(sqlcode));
539: fnd_message.set_token('OERRM',sqlerrm);
540: app_exception.raise_exception;
541:
542: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.

Line 539: fnd_message.set_token('OERRM',sqlerrm);

535: WHEN OTHERS THEN
536: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
537: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
538: fnd_message.set_token('OERRNO',to_char(sqlcode));
539: fnd_message.set_token('OERRM',sqlerrm);
540: app_exception.raise_exception;
541:
542: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.
543: -- Bug 3077074 End here