DBA Data[Home] [Help]

APPS.OTA_TAV_BUS dependencies on FND_MESSAGE

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

253: IF hr_api.not_exists_in_hr_lookups
254: (p_effective_date => p_effective_date
255: ,p_lookup_type => 'OTA_COMPETENCY_UPDATE_LEVEL'
256: ,p_lookup_code => p_competency_update_level) THEN
257: fnd_message.set_name('OTA','OTA_443411_COMP_UPD_LEV_INVLD');
258: fnd_message.raise_error;
259: END IF;
260: hr_utility.set_location(' Leaving:'||l_proc, 30);
261:

Line 258: fnd_message.raise_error;

254: (p_effective_date => p_effective_date
255: ,p_lookup_type => 'OTA_COMPETENCY_UPDATE_LEVEL'
256: ,p_lookup_code => p_competency_update_level) THEN
257: fnd_message.set_name('OTA','OTA_443411_COMP_UPD_LEV_INVLD');
258: fnd_message.raise_error;
259: END IF;
260: hr_utility.set_location(' Leaving:'||l_proc, 30);
261:
262: END IF;

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

1076:
1077: begin
1078: if( p_duration < 0 )
1079: then
1080: fnd_message.set_name('OTA','OTA_443368_POSITIVE_NUMBER');
1081: fnd_message.raise_error;
1082: end if;
1083:
1084: 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 1081: fnd_message.raise_error;

1077: begin
1078: if( p_duration < 0 )
1079: then
1080: fnd_message.set_name('OTA','OTA_443368_POSITIVE_NUMBER');
1081: fnd_message.raise_error;
1082: end if;
1083:
1084: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1085: then

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

1082: end if;
1083:
1084: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1085: then
1086: fnd_message.set_name('OTA','OTA_13881_NHS_COMB_INVALID');
1087: fnd_message.raise_error;
1088: end if;
1089: Exception
1090: WHEN app_exception.application_exception THEN

Line 1087: fnd_message.raise_error;

1083:
1084: if( (p_duration is null and p_duration_units is not null) or (p_duration is not null and p_duration_units is null) )
1085: then
1086: fnd_message.set_name('OTA','OTA_13881_NHS_COMB_INVALID');
1087: fnd_message.raise_error;
1088: end if;
1089: Exception
1090: WHEN app_exception.application_exception THEN
1091:

Line 1401: fnd_message.set_name('OTA','OTA_443361_COURSE_IN_ROOT_CAT');

1397:
1398:
1399:
1400: IF l_parent_cat_usage_id IS NULL THEN
1401: fnd_message.set_name('OTA','OTA_443361_COURSE_IN_ROOT_CAT');
1402: fnd_message.raise_error;
1403: END IF;
1404: hr_utility.set_location(' Leaving:'||l_proc, 20);
1405:

Line 1402: fnd_message.raise_error;

1398:
1399:
1400: IF l_parent_cat_usage_id IS NULL THEN
1401: fnd_message.set_name('OTA','OTA_443361_COURSE_IN_ROOT_CAT');
1402: fnd_message.raise_error;
1403: END IF;
1404: hr_utility.set_location(' Leaving:'||l_proc, 20);
1405:
1406: EXCEPTION