DBA Data[Home] [Help]

APPS.JG_ZZ_VAT_REP_UTILITY dependencies on FND_MESSAGE

Line 503: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_SELECTION');

499: /* Record does not exist in jg_zz_vat_rep_status for the given combination */
500:
501: /* Validation#1 : Only selection process can initiate the entire processing, for other processes selection should have run */
502: if pv_process_name <> 'SELECTION' then
503: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_SELECTION');
504: fnd_message.set_token('SOURCE', lv_source);
505: fnd_message.set_token('PROCESS_NAME', pv_process_name);
506: xv_return_message := fnd_message.get;
507: xv_return_status := fnd_api.g_ret_sts_error;

Line 504: fnd_message.set_token('SOURCE', lv_source);

500:
501: /* Validation#1 : Only selection process can initiate the entire processing, for other processes selection should have run */
502: if pv_process_name <> 'SELECTION' then
503: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_SELECTION');
504: fnd_message.set_token('SOURCE', lv_source);
505: fnd_message.set_token('PROCESS_NAME', pv_process_name);
506: xv_return_message := fnd_message.get;
507: xv_return_status := fnd_api.g_ret_sts_error;
508: goto error_exit_from_procedure;

Line 505: fnd_message.set_token('PROCESS_NAME', pv_process_name);

501: /* Validation#1 : Only selection process can initiate the entire processing, for other processes selection should have run */
502: if pv_process_name <> 'SELECTION' then
503: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_SELECTION');
504: fnd_message.set_token('SOURCE', lv_source);
505: fnd_message.set_token('PROCESS_NAME', pv_process_name);
506: xv_return_message := fnd_message.get;
507: xv_return_status := fnd_api.g_ret_sts_error;
508: goto error_exit_from_procedure;
509: end if;

Line 506: xv_return_message := fnd_message.get;

502: if pv_process_name <> 'SELECTION' then
503: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_SELECTION');
504: fnd_message.set_token('SOURCE', lv_source);
505: fnd_message.set_token('PROCESS_NAME', pv_process_name);
506: xv_return_message := fnd_message.get;
507: xv_return_status := fnd_api.g_ret_sts_error;
508: goto error_exit_from_procedure;
509: end if;
510:

Line 571: fnd_message.set_name('JG', 'JG_ZZ_VAT_FINALLY_REPORTED');

567: /* Record exists in jg_zz_vat_rep_status for the given combination */
568:
569: /* Validation # 2: Common validation - Final reporting should not have happened */
570: if cur_rec_jg_zz_vat_rep_status.final_reporting_status_flag = fnd_api.g_ret_sts_success then
571: fnd_message.set_name('JG', 'JG_ZZ_VAT_FINALLY_REPORTED');
572: fnd_message.set_token('SOURCE', lv_source);
573: fnd_message.set_token('PROCESS_NAME', pv_process_name);
574: xv_return_message := fnd_message.get;
575: xv_return_status := fnd_api.g_ret_sts_error;

Line 572: fnd_message.set_token('SOURCE', lv_source);

568:
569: /* Validation # 2: Common validation - Final reporting should not have happened */
570: if cur_rec_jg_zz_vat_rep_status.final_reporting_status_flag = fnd_api.g_ret_sts_success then
571: fnd_message.set_name('JG', 'JG_ZZ_VAT_FINALLY_REPORTED');
572: fnd_message.set_token('SOURCE', lv_source);
573: fnd_message.set_token('PROCESS_NAME', pv_process_name);
574: xv_return_message := fnd_message.get;
575: xv_return_status := fnd_api.g_ret_sts_error;
576: goto error_exit_from_procedure;

Line 573: fnd_message.set_token('PROCESS_NAME', pv_process_name);

569: /* Validation # 2: Common validation - Final reporting should not have happened */
570: if cur_rec_jg_zz_vat_rep_status.final_reporting_status_flag = fnd_api.g_ret_sts_success then
571: fnd_message.set_name('JG', 'JG_ZZ_VAT_FINALLY_REPORTED');
572: fnd_message.set_token('SOURCE', lv_source);
573: fnd_message.set_token('PROCESS_NAME', pv_process_name);
574: xv_return_message := fnd_message.get;
575: xv_return_status := fnd_api.g_ret_sts_error;
576: goto error_exit_from_procedure;
577: end if;

Line 574: xv_return_message := fnd_message.get;

570: if cur_rec_jg_zz_vat_rep_status.final_reporting_status_flag = fnd_api.g_ret_sts_success then
571: fnd_message.set_name('JG', 'JG_ZZ_VAT_FINALLY_REPORTED');
572: fnd_message.set_token('SOURCE', lv_source);
573: fnd_message.set_token('PROCESS_NAME', pv_process_name);
574: xv_return_message := fnd_message.get;
575: xv_return_status := fnd_api.g_ret_sts_error;
576: goto error_exit_from_procedure;
577: end if;
578:

Line 615: fnd_message.set_name('JG', 'JG_ZZ_VAT_GENERIC_ERROR');

611: x_return_status => xv_return_status
612: );
613:
614: if xv_return_status <> fnd_api.g_ret_sts_success then
615: fnd_message.set_name('JG', 'JG_ZZ_VAT_GENERIC_ERROR');
616: fnd_message.set_token('PROCESS_DETAILS', ' during purge of previous selection data');
617: xv_return_message := fnd_message.get;
618: goto error_exit_from_procedure;
619: end if;

Line 616: fnd_message.set_token('PROCESS_DETAILS', ' during purge of previous selection data');

612: );
613:
614: if xv_return_status <> fnd_api.g_ret_sts_success then
615: fnd_message.set_name('JG', 'JG_ZZ_VAT_GENERIC_ERROR');
616: fnd_message.set_token('PROCESS_DETAILS', ' during purge of previous selection data');
617: xv_return_message := fnd_message.get;
618: goto error_exit_from_procedure;
619: end if;
620:

Line 617: xv_return_message := fnd_message.get;

613:
614: if xv_return_status <> fnd_api.g_ret_sts_success then
615: fnd_message.set_name('JG', 'JG_ZZ_VAT_GENERIC_ERROR');
616: fnd_message.set_token('PROCESS_DETAILS', ' during purge of previous selection data');
617: xv_return_message := fnd_message.get;
618: goto error_exit_from_procedure;
619: end if;
620:
621: elsif pv_process_name = 'ALLOCATION' then

Line 625: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');

621: elsif pv_process_name = 'ALLOCATION' then
622:
623: /* Check if selection has already happened successfully */
624: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
625: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
626: fnd_message.set_token('SOURCE', lv_source);
627: fnd_message.set_token('PROCESS_NAME', pv_process_name);
628: xv_return_message := fnd_message.get;
629: xv_return_status := fnd_api.g_ret_sts_error;

Line 626: fnd_message.set_token('SOURCE', lv_source);

622:
623: /* Check if selection has already happened successfully */
624: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
625: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
626: fnd_message.set_token('SOURCE', lv_source);
627: fnd_message.set_token('PROCESS_NAME', pv_process_name);
628: xv_return_message := fnd_message.get;
629: xv_return_status := fnd_api.g_ret_sts_error;
630: goto error_exit_from_procedure;

Line 627: fnd_message.set_token('PROCESS_NAME', pv_process_name);

623: /* Check if selection has already happened successfully */
624: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
625: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
626: fnd_message.set_token('SOURCE', lv_source);
627: fnd_message.set_token('PROCESS_NAME', pv_process_name);
628: xv_return_message := fnd_message.get;
629: xv_return_status := fnd_api.g_ret_sts_error;
630: goto error_exit_from_procedure;
631: end if;

Line 628: xv_return_message := fnd_message.get;

624: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
625: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
626: fnd_message.set_token('SOURCE', lv_source);
627: fnd_message.set_token('PROCESS_NAME', pv_process_name);
628: xv_return_message := fnd_message.get;
629: xv_return_status := fnd_api.g_ret_sts_error;
630: goto error_exit_from_procedure;
631: end if;
632:

Line 676: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');

672: elsif pv_process_name = 'FINAL REPORTING' then
673:
674: /* Check if selection has already happened successfully */
675: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
676: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
677: fnd_message.set_token('SOURCE', lv_source);
678: fnd_message.set_token('PROCESS_NAME', pv_process_name);
679: xv_return_message := fnd_message.get;
680: xv_return_status := fnd_api.g_ret_sts_error;

Line 677: fnd_message.set_token('SOURCE', lv_source);

673:
674: /* Check if selection has already happened successfully */
675: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
676: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
677: fnd_message.set_token('SOURCE', lv_source);
678: fnd_message.set_token('PROCESS_NAME', pv_process_name);
679: xv_return_message := fnd_message.get;
680: xv_return_status := fnd_api.g_ret_sts_error;
681: goto error_exit_from_procedure;

Line 678: fnd_message.set_token('PROCESS_NAME', pv_process_name);

674: /* Check if selection has already happened successfully */
675: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
676: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
677: fnd_message.set_token('SOURCE', lv_source);
678: fnd_message.set_token('PROCESS_NAME', pv_process_name);
679: xv_return_message := fnd_message.get;
680: xv_return_status := fnd_api.g_ret_sts_error;
681: goto error_exit_from_procedure;
682: end if;

Line 679: xv_return_message := fnd_message.get;

675: if cur_rec_jg_zz_vat_rep_status.selection_status_flag <> fnd_api.g_ret_sts_success then
676: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_SELECTION');
677: fnd_message.set_token('SOURCE', lv_source);
678: fnd_message.set_token('PROCESS_NAME', pv_process_name);
679: xv_return_message := fnd_message.get;
680: xv_return_status := fnd_api.g_ret_sts_error;
681: goto error_exit_from_procedure;
682: end if;
683:

Line 688: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_ALLOCATION');

684: if cur_rec_jg_zz_vat_rep_status.allocation_status_flag = 'N' then
685:
686: /* Allocation has not happened, check if it is applicable */
687: if cur_rec_jg_zz_vat_rep_entities.enable_allocations_flag = 'Y' then
688: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_ALLOCATION');
689: fnd_message.set_token('SOURCE', lv_source);
690: fnd_message.set_token('PROCESS_NAME', pv_process_name);
691: xv_return_message := fnd_message.get;
692: xv_return_status := fnd_api.g_ret_sts_error;

Line 689: fnd_message.set_token('SOURCE', lv_source);

685:
686: /* Allocation has not happened, check if it is applicable */
687: if cur_rec_jg_zz_vat_rep_entities.enable_allocations_flag = 'Y' then
688: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_ALLOCATION');
689: fnd_message.set_token('SOURCE', lv_source);
690: fnd_message.set_token('PROCESS_NAME', pv_process_name);
691: xv_return_message := fnd_message.get;
692: xv_return_status := fnd_api.g_ret_sts_error;
693: goto error_exit_from_procedure;

Line 690: fnd_message.set_token('PROCESS_NAME', pv_process_name);

686: /* Allocation has not happened, check if it is applicable */
687: if cur_rec_jg_zz_vat_rep_entities.enable_allocations_flag = 'Y' then
688: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_ALLOCATION');
689: fnd_message.set_token('SOURCE', lv_source);
690: fnd_message.set_token('PROCESS_NAME', pv_process_name);
691: xv_return_message := fnd_message.get;
692: xv_return_status := fnd_api.g_ret_sts_error;
693: goto error_exit_from_procedure;
694: end if;

Line 691: xv_return_message := fnd_message.get;

687: if cur_rec_jg_zz_vat_rep_entities.enable_allocations_flag = 'Y' then
688: fnd_message.set_name('JG', 'JG_ZZ_VAT_NO_ALLOCATION');
689: fnd_message.set_token('SOURCE', lv_source);
690: fnd_message.set_token('PROCESS_NAME', pv_process_name);
691: xv_return_message := fnd_message.get;
692: xv_return_status := fnd_api.g_ret_sts_error;
693: goto error_exit_from_procedure;
694: end if;
695:

Line 698: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_ALLOCATION');

694: end if;
695:
696: elsif cur_rec_jg_zz_vat_rep_status.allocation_status_flag <> fnd_api.g_ret_sts_success then
697:
698: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_ALLOCATION');
699: fnd_message.set_token('SOURCE', lv_source);
700: fnd_message.set_token('PROCESS_NAME', pv_process_name);
701: xv_return_message := fnd_message.get;
702: xv_return_status := fnd_api.g_ret_sts_error;

Line 699: fnd_message.set_token('SOURCE', lv_source);

695:
696: elsif cur_rec_jg_zz_vat_rep_status.allocation_status_flag <> fnd_api.g_ret_sts_success then
697:
698: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_ALLOCATION');
699: fnd_message.set_token('SOURCE', lv_source);
700: fnd_message.set_token('PROCESS_NAME', pv_process_name);
701: xv_return_message := fnd_message.get;
702: xv_return_status := fnd_api.g_ret_sts_error;
703: goto error_exit_from_procedure;

Line 700: fnd_message.set_token('PROCESS_NAME', pv_process_name);

696: elsif cur_rec_jg_zz_vat_rep_status.allocation_status_flag <> fnd_api.g_ret_sts_success then
697:
698: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_ALLOCATION');
699: fnd_message.set_token('SOURCE', lv_source);
700: fnd_message.set_token('PROCESS_NAME', pv_process_name);
701: xv_return_message := fnd_message.get;
702: xv_return_status := fnd_api.g_ret_sts_error;
703: goto error_exit_from_procedure;
704:

Line 701: xv_return_message := fnd_message.get;

697:
698: fnd_message.set_name('JG', 'JG_ZZ_VAT_ERROR_ALLOCATION');
699: fnd_message.set_token('SOURCE', lv_source);
700: fnd_message.set_token('PROCESS_NAME', pv_process_name);
701: xv_return_message := fnd_message.get;
702: xv_return_status := fnd_api.g_ret_sts_error;
703: goto error_exit_from_procedure;
704:
705: end if; /* Has allocation happend successfully or is it enabled but not happened */

Line 1112: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');

1108:
1109: if pn_vat_reporting_entity_id is null then
1110: /* This parameter is required for entities of all level*/
1111: xv_return_status := fnd_api.g_ret_sts_error;
1112: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1113: fnd_message.set_token('PARAMETER', 'TRN');
1114: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1115: xv_return_message := fnd_message.get;
1116: xv_return_status := fnd_api.g_ret_sts_error;

Line 1113: fnd_message.set_token('PARAMETER', 'TRN');

1109: if pn_vat_reporting_entity_id is null then
1110: /* This parameter is required for entities of all level*/
1111: xv_return_status := fnd_api.g_ret_sts_error;
1112: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1113: fnd_message.set_token('PARAMETER', 'TRN');
1114: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1115: xv_return_message := fnd_message.get;
1116: xv_return_status := fnd_api.g_ret_sts_error;
1117: goto exit_from_procedure;

Line 1114: fnd_message.set_token('LEVEL', 'pv_entity_level_code');

1110: /* This parameter is required for entities of all level*/
1111: xv_return_status := fnd_api.g_ret_sts_error;
1112: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1113: fnd_message.set_token('PARAMETER', 'TRN');
1114: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1115: xv_return_message := fnd_message.get;
1116: xv_return_status := fnd_api.g_ret_sts_error;
1117: goto exit_from_procedure;
1118: end if;

Line 1115: xv_return_message := fnd_message.get;

1111: xv_return_status := fnd_api.g_ret_sts_error;
1112: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1113: fnd_message.set_token('PARAMETER', 'TRN');
1114: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1115: xv_return_message := fnd_message.get;
1116: xv_return_status := fnd_api.g_ret_sts_error;
1117: goto exit_from_procedure;
1118: end if;
1119:

Line 1124: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');

1120: if pv_entity_level_code = 'LEDGER' then
1121:
1122: if pn_ledger_id is null then /* Required parameter */
1123: xv_return_status := fnd_api.g_ret_sts_error;
1124: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1125: fnd_message.set_token('PARAMETER', 'LEDGER');
1126: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1127: xv_return_message := fnd_message.get;
1128: goto exit_from_procedure;

Line 1125: fnd_message.set_token('PARAMETER', 'LEDGER');

1121:
1122: if pn_ledger_id is null then /* Required parameter */
1123: xv_return_status := fnd_api.g_ret_sts_error;
1124: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1125: fnd_message.set_token('PARAMETER', 'LEDGER');
1126: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1127: xv_return_message := fnd_message.get;
1128: goto exit_from_procedure;
1129: end if;

Line 1126: fnd_message.set_token('LEVEL', 'pv_entity_level_code');

1122: if pn_ledger_id is null then /* Required parameter */
1123: xv_return_status := fnd_api.g_ret_sts_error;
1124: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1125: fnd_message.set_token('PARAMETER', 'LEDGER');
1126: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1127: xv_return_message := fnd_message.get;
1128: goto exit_from_procedure;
1129: end if;
1130:

Line 1127: xv_return_message := fnd_message.get;

1123: xv_return_status := fnd_api.g_ret_sts_error;
1124: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1125: fnd_message.set_token('PARAMETER', 'LEDGER');
1126: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1127: xv_return_message := fnd_message.get;
1128: goto exit_from_procedure;
1129: end if;
1130:
1131: end if;

Line 1138: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');

1134: if pv_entity_level_code = 'BSV' then
1135:
1136: if pn_ledger_id is null then /* Required parameter */
1137: xv_return_status := fnd_api.g_ret_sts_error;
1138: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1139: fnd_message.set_token('PARAMETER', 'LEDGER');
1140: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1141: xv_return_message := fnd_message.get;
1142: goto exit_from_procedure;

Line 1139: fnd_message.set_token('PARAMETER', 'LEDGER');

1135:
1136: if pn_ledger_id is null then /* Required parameter */
1137: xv_return_status := fnd_api.g_ret_sts_error;
1138: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1139: fnd_message.set_token('PARAMETER', 'LEDGER');
1140: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1141: xv_return_message := fnd_message.get;
1142: goto exit_from_procedure;
1143: end if;

Line 1140: fnd_message.set_token('LEVEL', 'pv_entity_level_code');

1136: if pn_ledger_id is null then /* Required parameter */
1137: xv_return_status := fnd_api.g_ret_sts_error;
1138: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1139: fnd_message.set_token('PARAMETER', 'LEDGER');
1140: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1141: xv_return_message := fnd_message.get;
1142: goto exit_from_procedure;
1143: end if;
1144:

Line 1141: xv_return_message := fnd_message.get;

1137: xv_return_status := fnd_api.g_ret_sts_error;
1138: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1139: fnd_message.set_token('PARAMETER', 'LEDGER');
1140: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1141: xv_return_message := fnd_message.get;
1142: goto exit_from_procedure;
1143: end if;
1144:
1145: if pv_balancing_segment_value is null then

Line 1147: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');

1143: end if;
1144:
1145: if pv_balancing_segment_value is null then
1146: xv_return_status := fnd_api.g_ret_sts_error;
1147: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1148: fnd_message.set_token('PARAMETER', 'BSV');
1149: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1150: xv_return_message := fnd_message.get;
1151: goto exit_from_procedure; end if;

Line 1148: fnd_message.set_token('PARAMETER', 'BSV');

1144:
1145: if pv_balancing_segment_value is null then
1146: xv_return_status := fnd_api.g_ret_sts_error;
1147: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1148: fnd_message.set_token('PARAMETER', 'BSV');
1149: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1150: xv_return_message := fnd_message.get;
1151: goto exit_from_procedure; end if;
1152:

Line 1149: fnd_message.set_token('LEVEL', 'pv_entity_level_code');

1145: if pv_balancing_segment_value is null then
1146: xv_return_status := fnd_api.g_ret_sts_error;
1147: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1148: fnd_message.set_token('PARAMETER', 'BSV');
1149: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1150: xv_return_message := fnd_message.get;
1151: goto exit_from_procedure; end if;
1152:
1153: end if;

Line 1150: xv_return_message := fnd_message.get;

1146: xv_return_status := fnd_api.g_ret_sts_error;
1147: fnd_message.set_name('JG', 'JG_ZZ_VAT_INVALID_ENTITY');
1148: fnd_message.set_token('PARAMETER', 'BSV');
1149: fnd_message.set_token('LEVEL', 'pv_entity_level_code');
1150: xv_return_message := fnd_message.get;
1151: goto exit_from_procedure; end if;
1152:
1153: end if;
1154: