DBA Data[Home] [Help]

APPS.GMS_AP_API dependencies on FND_MESSAGE

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

1134: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.
1135: -- Added exception handling routine.
1136: EXCEPTION
1137: WHEN AWARD_NOT_FOUND THEN
1138: fnd_message.set_name('GMS','GMS_INVALID_AWARD_FOUND');
1139: --
1140: -- Message : Incorrect award is associated with the invoice id : ??? and
1141: -- distribution line number : ??????. Please change award information
1142: -- on the distribution line.

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

1140: -- Message : Incorrect award is associated with the invoice id : ??? and
1141: -- distribution line number : ??????. Please change award information
1142: -- on the distribution line.
1143:
1144: fnd_message.set_token('INVNUM',l_invoice_num);
1145: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
1146: app_exception.raise_exception;
1147:
1148: WHEN OTHERS THEN

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

1141: -- distribution line number : ??????. Please change award information
1142: -- on the distribution line.
1143:
1144: fnd_message.set_token('INVNUM',l_invoice_num);
1145: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
1146: app_exception.raise_exception;
1147:
1148: WHEN OTHERS THEN
1149: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');

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

1145: fnd_message.set_token('DISTLNO', l_distribution_line_number(l_count));
1146: app_exception.raise_exception;
1147:
1148: WHEN OTHERS THEN
1149: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
1150: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
1151: fnd_message.set_token('OERRNO',to_char(sqlcode));
1152: fnd_message.set_token('OERRM',sqlerrm);
1153: app_exception.raise_exception;

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

1146: app_exception.raise_exception;
1147:
1148: WHEN OTHERS THEN
1149: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
1150: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
1151: fnd_message.set_token('OERRNO',to_char(sqlcode));
1152: fnd_message.set_token('OERRM',sqlerrm);
1153: app_exception.raise_exception;
1154:

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

1147:
1148: WHEN OTHERS THEN
1149: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
1150: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
1151: fnd_message.set_token('OERRNO',to_char(sqlcode));
1152: fnd_message.set_token('OERRM',sqlerrm);
1153: app_exception.raise_exception;
1154:
1155: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.

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

1148: WHEN OTHERS THEN
1149: fnd_message.set_name('GMS','GMS_UNEXPECTED_ERROR');
1150: fnd_message.set_token('PROGRAM_NAME',NVL(p_calling_sequence,' ')||'->gms_ap_api.verify_create_adls');
1151: fnd_message.set_token('OERRNO',to_char(sqlcode));
1152: fnd_message.set_token('OERRM',sqlerrm);
1153: app_exception.raise_exception;
1154:
1155: -- EXECEPTION HANDLING TO GMS_AP_API TO SUPPORT CODE HOOK IN AP APPROVAL.
1156: -- Bug 3077074 End here