DBA Data[Home] [Help]

APPS.OTA_OFF_BUS dependencies on FND_MESSAGE

Line 63: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');

59: close csr_sec_grp;
60: --
61: -- The primary key is invalid therefore we must error
62: --
63: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
64: hr_multi_message.add
65: (p_associated_column1
66: => nvl(p_associated_column1,'OFFERING_ID')
67: );

Line 144: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');

140: --
141: -- The primary key is invalid therefore we must error
142: --
143: close csr_leg_code;
144: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
145: fnd_message.raise_error;
146: end if;
147: hr_utility.set_location(l_proc,30);
148: --

Line 145: fnd_message.raise_error;

141: -- The primary key is invalid therefore we must error
142: --
143: close csr_leg_code;
144: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
145: fnd_message.raise_error;
146: end if;
147: hr_utility.set_location(l_proc,30);
148: --
149: -- Set the global variables so the values are

Line 182: fnd_message.set_name ( p_error_appl ,p_error_txt);

178: hr_utility.set_location('Entering:'|| v_proc, 5);
179: --
180: -- ** TEMP ** Add error message with the following text.
181: --
182: fnd_message.set_name ( p_error_appl ,p_error_txt);
183: fnd_message.raise_error;
184: --
185: hr_utility.set_location(' Leaving:'|| v_proc, 10);
186: --

Line 183: fnd_message.raise_error;

179: --
180: -- ** TEMP ** Add error message with the following text.
181: --
182: fnd_message.set_name ( p_error_appl ,p_error_txt);
183: fnd_message.raise_error;
184: --
185: hr_utility.set_location(' Leaving:'|| v_proc, 10);
186: --
187: End call_error_message;

Line 369: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');

365: IF NOT ota_off_shd.api_updating
366: (p_offering_id => p_rec.offering_id
367: ,p_object_version_number => p_rec.object_version_number
368: ) THEN
369: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
370: fnd_message.set_token('PROCEDURE ', l_proc);
371: fnd_message.set_token('STEP ', '5');
372: fnd_message.raise_error;
373: END IF;

Line 370: fnd_message.set_token('PROCEDURE ', l_proc);

366: (p_offering_id => p_rec.offering_id
367: ,p_object_version_number => p_rec.object_version_number
368: ) THEN
369: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
370: fnd_message.set_token('PROCEDURE ', l_proc);
371: fnd_message.set_token('STEP ', '5');
372: fnd_message.raise_error;
373: END IF;
374: --

Line 371: fnd_message.set_token('STEP ', '5');

367: ,p_object_version_number => p_rec.object_version_number
368: ) THEN
369: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
370: fnd_message.set_token('PROCEDURE ', l_proc);
371: fnd_message.set_token('STEP ', '5');
372: fnd_message.raise_error;
373: END IF;
374: --
375: -- EDIT_HERE: Add checks to ensure non-updateable args have

Line 372: fnd_message.raise_error;

368: ) THEN
369: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
370: fnd_message.set_token('PROCEDURE ', l_proc);
371: fnd_message.set_token('STEP ', '5');
372: fnd_message.raise_error;
373: END IF;
374: --
375: -- EDIT_HERE: Add checks to ensure non-updateable args have
376: -- not been updated.

Line 427: fnd_message.set_name ( 'OTA','OTA_443459_OFF_OUT_OF_DM_DATES');

423: v_end_date,
424: NVL(p_start_date, hr_api.g_sot),
425: NVL(p_end_date, hr_api.g_eot) ) then
426: --
427: fnd_message.set_name ( 'OTA','OTA_443459_OFF_OUT_OF_DM_DATES');
428: fnd_message.raise_error;
429: End If;
430:
431: --

Line 428: fnd_message.raise_error;

424: NVL(p_start_date, hr_api.g_sot),
425: NVL(p_end_date, hr_api.g_eot) ) then
426: --
427: fnd_message.set_name ( 'OTA','OTA_443459_OFF_OUT_OF_DM_DATES');
428: fnd_message.raise_error;
429: End If;
430:
431: --
432: CLOSE cur_dm_start_end_date;

Line 517: fnd_message.set_name('OTA','OTA_443375_OFF_CLASS_DATES');

513: if l_evt_start_date < l_start_date or
514: l_evt_start_date > l_end_date or
515: l_evt_end_date > l_end_date or
516: l_evt_end_date < l_start_date then
517: fnd_message.set_name('OTA','OTA_443375_OFF_CLASS_DATES');
518: fnd_message.raise_error;
519: end if;
520: end loop;
521: --

Line 518: fnd_message.raise_error;

514: l_evt_start_date > l_end_date or
515: l_evt_end_date > l_end_date or
516: l_evt_end_date < l_start_date then
517: fnd_message.set_name('OTA','OTA_443375_OFF_CLASS_DATES');
518: fnd_message.raise_error;
519: end if;
520: end loop;
521: --
522: hr_utility.set_location(' Exiting:'||l_proc,10);

Line 572: fnd_message.set_name('OTA','OTA_13312_GEN_DATE_ORDER');

568: fetch check_dates into l_start_date, l_end_date;
569: close check_dates;
570: --
571: if p_offering_start_date is not null and p_offering_end_date is not null and p_offering_start_date > p_offering_end_date then
572: fnd_message.set_name('OTA','OTA_13312_GEN_DATE_ORDER');
573: fnd_message.raise_error;
574: end if;
575:
576: if l_start_date is null then

Line 573: fnd_message.raise_error;

569: close check_dates;
570: --
571: if p_offering_start_date is not null and p_offering_end_date is not null and p_offering_start_date > p_offering_end_date then
572: fnd_message.set_name('OTA','OTA_13312_GEN_DATE_ORDER');
573: fnd_message.raise_error;
574: end if;
575:
576: if l_start_date is null then
577: l_start_date := hr_api.g_sot;

Line 598: fnd_message.set_name('OTA','OTA_443316_OFF_INVALID_DATES');

594: if l_offering_start_date < l_start_date or
595: l_offering_start_date > l_end_date or
596: l_offering_end_date > l_end_date or
597: l_offering_end_date < l_start_date then
598: fnd_message.set_name('OTA','OTA_443316_OFF_INVALID_DATES');
599: fnd_message.raise_error;
600: end if;
601: --
602: hr_utility.set_location(' Exiting:'||l_proc,10);

Line 599: fnd_message.raise_error;

595: l_offering_start_date > l_end_date or
596: l_offering_end_date > l_end_date or
597: l_offering_end_date < l_start_date then
598: fnd_message.set_name('OTA','OTA_443316_OFF_INVALID_DATES');
599: fnd_message.raise_error;
600: end if;
601: --
602: hr_utility.set_location(' Exiting:'||l_proc,10);
603: Exception

Line 656: fnd_message.set_name('OTA','OTA_443411_COMP_UPD_LEV_INVLD');

652: IF hr_api.not_exists_in_hr_lookups
653: (p_effective_date => p_effective_date
654: ,p_lookup_type => 'OTA_COMPETENCY_UPDATE_LEVEL'
655: ,p_lookup_code => p_competency_update_level) THEN
656: fnd_message.set_name('OTA','OTA_443411_COMP_UPD_LEV_INVLD');
657: fnd_message.raise_error;
658: END IF;
659: hr_utility.set_location(' Leaving:'||l_proc, 30);
660:

Line 657: fnd_message.raise_error;

653: (p_effective_date => p_effective_date
654: ,p_lookup_type => 'OTA_COMPETENCY_UPDATE_LEVEL'
655: ,p_lookup_code => p_competency_update_level) THEN
656: fnd_message.set_name('OTA','OTA_443411_COMP_UPD_LEV_INVLD');
657: fnd_message.raise_error;
658: END IF;
659: hr_utility.set_location(' Leaving:'||l_proc, 30);
660:
661: END IF;

Line 712: fnd_message.set_name('OTA','OTA_443317_OFF_UNIQUE');

708: P_NAME => P_NAME,
709: P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID,
710: P_ACTIVITY_VERSION_ID => P_ACTIVITY_VERSION_ID,
711: P_OFFERING_ID => P_OFFERING_ID)) then
712: fnd_message.set_name('OTA','OTA_443317_OFF_UNIQUE');
713: fnd_message.raise_error;
714: --
715: end if;
716: --

Line 713: fnd_message.raise_error;

709: P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID,
710: P_ACTIVITY_VERSION_ID => P_ACTIVITY_VERSION_ID,
711: P_OFFERING_ID => P_OFFERING_ID)) then
712: fnd_message.set_name('OTA','OTA_443317_OFF_UNIQUE');
713: fnd_message.raise_error;
714: --
715: end if;
716: --
717: HR_UTILITY.SET_LOCATION (' Leaving:' || W_PROC, 10);

Line 827: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');

823: CLOSE c_is_test;
824:
825: IF l_test_id IS NOT NULL THEN
826: IF p_player_toolbar_flag = 'N' THEN
827: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');
828: fnd_message.raise_error;
829: END IF;
830:
831: IF mod(floor(p_player_toolbar_bitset/1),2) <> 1 THEN

Line 828: fnd_message.raise_error;

824:
825: IF l_test_id IS NOT NULL THEN
826: IF p_player_toolbar_flag = 'N' THEN
827: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');
828: fnd_message.raise_error;
829: END IF;
830:
831: IF mod(floor(p_player_toolbar_bitset/1),2) <> 1 THEN
832: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');

Line 832: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');

828: fnd_message.raise_error;
829: END IF;
830:
831: IF mod(floor(p_player_toolbar_bitset/1),2) <> 1 THEN
832: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');
833: fnd_message.raise_error;
834: END IF;
835:
836: END IF;

Line 833: fnd_message.raise_error;

829: END IF;
830:
831: IF mod(floor(p_player_toolbar_bitset/1),2) <> 1 THEN
832: fnd_message.set_name('OTA','OTA_13068_OFF_TEST_LO_ERR');
833: fnd_message.raise_error;
834: END IF;
835:
836: END IF;
837: hr_utility.set_location('Leaving:'||l_proc, 40);

Line 901: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');

897: OPEN c_people_cross;
898: FETCH c_people_cross into l_exist;
899: if c_people_cross%notfound then
900: close c_people_cross;
901: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');
902: fnd_message.raise_error;
903: end if;
904: close c_people_cross;
905: else

Line 902: fnd_message.raise_error;

898: FETCH c_people_cross into l_exist;
899: if c_people_cross%notfound then
900: close c_people_cross;
901: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');
902: fnd_message.raise_error;
903: end if;
904: close c_people_cross;
905: else
906: hr_utility.set_location('Entering:'||l_proc, 20);

Line 911: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');

907: OPEN c_people;
908: FETCH c_people into l_exist;
909: if c_people%notfound then
910: close c_people;
911: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');
912: fnd_message.raise_error;
913: end if;
914: close c_people;
915: end if;

Line 912: fnd_message.raise_error;

908: FETCH c_people into l_exist;
909: if c_people%notfound then
910: close c_people;
911: fnd_message.set_name('OTA','OTA_13887_EVT_OWNER_INVALID');
912: fnd_message.raise_error;
913: end if;
914: close c_people;
915: end if;
916: hr_utility.set_location('Leaving:'||l_proc, 40);

Line 972: fnd_message.set_name ( 'OTA','OTA_13072_OFF_LO_NULL');

968: p_learning_object_id IS NULL then
969: --
970: l_iln_rco_id := ota_utility.get_iln_rco_id(p_activity_version_id);
971: If l_iln_rco_id IS NULL THEN
972: fnd_message.set_name ( 'OTA','OTA_13072_OFF_LO_NULL');
973: fnd_message.raise_error;
974: END IF;
975: End If;
976:

Line 973: fnd_message.raise_error;

969: --
970: l_iln_rco_id := ota_utility.get_iln_rco_id(p_activity_version_id);
971: If l_iln_rco_id IS NULL THEN
972: fnd_message.set_name ( 'OTA','OTA_13072_OFF_LO_NULL');
973: fnd_message.raise_error;
974: END IF;
975: End If;
976:
977: --

Line 1014: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');

1010: begin
1011:
1012: if(p_minimum_attendees < 0 or p_maximum_attendees < 0 or p_maximum_internal_attendees < 0)
1013: then
1014: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1015: fnd_message.raise_error;
1016: end if;
1017:
1018: if( checkDecimal(p_minimum_attendees,1) or checkDecimal(p_maximum_attendees,1) or checkDecimal(p_maximum_internal_attendees,1))

Line 1015: fnd_message.raise_error;

1011:
1012: if(p_minimum_attendees < 0 or p_maximum_attendees < 0 or p_maximum_internal_attendees < 0)
1013: then
1014: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1015: fnd_message.raise_error;
1016: end if;
1017:
1018: if( checkDecimal(p_minimum_attendees,1) or checkDecimal(p_maximum_attendees,1) or checkDecimal(p_maximum_internal_attendees,1))
1019: then

Line 1020: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');

1016: end if;
1017:
1018: if( checkDecimal(p_minimum_attendees,1) or checkDecimal(p_maximum_attendees,1) or checkDecimal(p_maximum_internal_attendees,1))
1019: then
1020: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1021: fnd_message.raise_error;
1022: end if;
1023:
1024: if (( p_minimum_attendees is not null and p_maximum_attendees is not null and p_minimum_attendees > p_maximum_attendees

Line 1021: fnd_message.raise_error;

1017:
1018: if( checkDecimal(p_minimum_attendees,1) or checkDecimal(p_maximum_attendees,1) or checkDecimal(p_maximum_internal_attendees,1))
1019: then
1020: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1021: fnd_message.raise_error;
1022: end if;
1023:
1024: if (( p_minimum_attendees is not null and p_maximum_attendees is not null and p_minimum_attendees > p_maximum_attendees
1025: ) or

Line 1028: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');

1024: if (( p_minimum_attendees is not null and p_maximum_attendees is not null and p_minimum_attendees > p_maximum_attendees
1025: ) or
1026: ( p_maximum_internal_attendees is not null and p_maximum_attendees is not null and p_maximum_internal_attendees > p_maximum_attendees))
1027: then
1028: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1029: fnd_message.raise_error;
1030: end if;
1031: Exception
1032: WHEN app_exception.application_exception THEN

Line 1029: fnd_message.raise_error;

1025: ) or
1026: ( p_maximum_internal_attendees is not null and p_maximum_attendees is not null and p_maximum_internal_attendees > p_maximum_attendees))
1027: then
1028: fnd_message.set_name('OTA','OTA_13449_EVT_ATTENDEES_POS');
1029: fnd_message.raise_error;
1030: end if;
1031: Exception
1032: WHEN app_exception.application_exception THEN
1033:

Line 1052: fnd_message.set_name('OTA','OTA_443368_POSITIVE_NUMBER');

1048:
1049: begin
1050: if( p_duration < 0 )
1051: then
1052: fnd_message.set_name('OTA','OTA_443368_POSITIVE_NUMBER');
1053: fnd_message.raise_error;
1054: end if;
1055:
1056: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )

Line 1053: fnd_message.raise_error;

1049: begin
1050: if( p_duration < 0 )
1051: then
1052: fnd_message.set_name('OTA','OTA_443368_POSITIVE_NUMBER');
1053: fnd_message.raise_error;
1054: end if;
1055:
1056: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1057: then

Line 1058: fnd_message.set_name('OTA','OTA_13881_NHS_COMB_INVALID');

1054: end if;
1055:
1056: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1057: then
1058: fnd_message.set_name('OTA','OTA_13881_NHS_COMB_INVALID');
1059: fnd_message.raise_error;
1060: end if;
1061: Exception
1062: WHEN app_exception.application_exception THEN

Line 1059: fnd_message.raise_error;

1055:
1056: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1057: then
1058: fnd_message.set_name('OTA','OTA_13881_NHS_COMB_INVALID');
1059: fnd_message.raise_error;
1060: end if;
1061: Exception
1062: WHEN app_exception.application_exception THEN
1063:

Line 1082: fnd_message.set_name('OTA','OTA_443354_OFF_AMT_NEGATIVE');

1078: begin
1079: if( p_actual_cost < 0 or p_budget_cost < 0 or p_standard_price < 0 or checkDecimal(p_actual_cost,3)
1080: or checkDecimal(p_budget_cost,3) or checkDecimal(p_standard_price,3) )
1081: then
1082: fnd_message.set_name('OTA','OTA_443354_OFF_AMT_NEGATIVE');
1083: fnd_message.raise_error;
1084: end if;
1085:
1086: if( ( p_actual_cost is not null or p_budget_cost is not null ) and p_budget_currency_code is null ) then

Line 1083: fnd_message.raise_error;

1079: if( p_actual_cost < 0 or p_budget_cost < 0 or p_standard_price < 0 or checkDecimal(p_actual_cost,3)
1080: or checkDecimal(p_budget_cost,3) or checkDecimal(p_standard_price,3) )
1081: then
1082: fnd_message.set_name('OTA','OTA_443354_OFF_AMT_NEGATIVE');
1083: fnd_message.raise_error;
1084: end if;
1085:
1086: if( ( p_actual_cost is not null or p_budget_cost is not null ) and p_budget_currency_code is null ) then
1087: fnd_message.set_name('OTA','OTA_13394_TAV_COST_ATTR');

Line 1087: fnd_message.set_name('OTA','OTA_13394_TAV_COST_ATTR');

1083: fnd_message.raise_error;
1084: end if;
1085:
1086: if( ( p_actual_cost is not null or p_budget_cost is not null ) and p_budget_currency_code is null ) then
1087: fnd_message.set_name('OTA','OTA_13394_TAV_COST_ATTR');
1088: fnd_message.raise_error;
1089: end if;
1090:
1091: if ( p_price_basis is not null and p_price_basis ='S' and (p_standard_price is null or p_currency_code is null)) then

Line 1088: fnd_message.raise_error;

1084: end if;
1085:
1086: if( ( p_actual_cost is not null or p_budget_cost is not null ) and p_budget_currency_code is null ) then
1087: fnd_message.set_name('OTA','OTA_13394_TAV_COST_ATTR');
1088: fnd_message.raise_error;
1089: end if;
1090:
1091: if ( p_price_basis is not null and p_price_basis ='S' and (p_standard_price is null or p_currency_code is null)) then
1092: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');

Line 1092: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');

1088: fnd_message.raise_error;
1089: end if;
1090:
1091: if ( p_price_basis is not null and p_price_basis ='S' and (p_standard_price is null or p_currency_code is null)) then
1092: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');
1093: fnd_message.raise_error;
1094: end if;
1095:
1096: if ( p_price_basis is not null and p_price_basis ='C' and (p_standard_price is not null or p_currency_code is null)) then

Line 1093: fnd_message.raise_error;

1089: end if;
1090:
1091: if ( p_price_basis is not null and p_price_basis ='S' and (p_standard_price is null or p_currency_code is null)) then
1092: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');
1093: fnd_message.raise_error;
1094: end if;
1095:
1096: if ( p_price_basis is not null and p_price_basis ='C' and (p_standard_price is not null or p_currency_code is null)) then
1097: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');

Line 1097: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');

1093: fnd_message.raise_error;
1094: end if;
1095:
1096: if ( p_price_basis is not null and p_price_basis ='C' and (p_standard_price is not null or p_currency_code is null)) then
1097: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');
1098: fnd_message.raise_error;
1099: end if;
1100:
1101:

Line 1098: fnd_message.raise_error;

1094: end if;
1095:
1096: if ( p_price_basis is not null and p_price_basis ='C' and (p_standard_price is not null or p_currency_code is null)) then
1097: fnd_message.set_name('OTA','OTA_443348_SE_AMOUNT_FIELD_NUL');
1098: fnd_message.raise_error;
1099: end if;
1100:
1101:
1102: Exception

Line 1185: fnd_message.set_name ( 'OTA', 'OTA_443961_OFF_INV_CRS_ERR');

1181: If Cur_Inventory_Course%FOUND Then
1182: --
1183: CLOSE Cur_Inventory_Course;
1184: --
1185: fnd_message.set_name ( 'OTA', 'OTA_443961_OFF_INV_CRS_ERR');
1186: fnd_message.raise_error;
1187: Else
1188: --
1189: CLOSE Cur_Inventory_Course;

Line 1186: fnd_message.raise_error;

1182: --
1183: CLOSE Cur_Inventory_Course;
1184: --
1185: fnd_message.set_name ( 'OTA', 'OTA_443961_OFF_INV_CRS_ERR');
1186: fnd_message.raise_error;
1187: Else
1188: --
1189: CLOSE Cur_Inventory_Course;
1190: End If;

Line 1366: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');

1362: --
1363:
1364: -- 2733966
1365: If p_rec.language_code IS NULL THEN
1366: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');
1367: fnd_message.raise_error;
1368: END IF;
1369:
1370:

Line 1367: fnd_message.raise_error;

1363:
1364: -- 2733966
1365: If p_rec.language_code IS NULL THEN
1366: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');
1367: fnd_message.raise_error;
1368: END IF;
1369:
1370:
1371: ota_off_bus.chk_df(p_rec);

Line 1425: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');

1421:
1422:
1423: -- 2733966
1424: If p_rec.language_code IS NULL THEN
1425: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');
1426: fnd_message.raise_error;
1427: END IF;
1428:
1429:

Line 1426: fnd_message.raise_error;

1422:
1423: -- 2733966
1424: If p_rec.language_code IS NULL THEN
1425: fnd_message.set_name ( 'OTA','OTA_467063_MAND_LANGUAGE_CODE');
1426: fnd_message.raise_error;
1427: END IF;
1428:
1429:
1430: ota_off_bus.chk_df(p_rec);