DBA Data[Home] [Help]

APPS.PER_CONTACT_INFO_TYPES_PKG dependencies on HR_UTILITY

Line 49: hr_utility.set_message(

45:
46: -- = Raise an error when specified active_inactive_flag is not 'Y' or 'N'.
47: IF x_active_inactive_flag NOT IN ('Y','N') THEN
48: --
49: hr_utility.set_message(
50: applid => 800,
51: l_message_name => 'PER_52500_INV_YES_NO_FLAG');
52: --
53: hr_utility.set_message_token(

Line 53: hr_utility.set_message_token(

49: hr_utility.set_message(
50: applid => 800,
51: l_message_name => 'PER_52500_INV_YES_NO_FLAG');
52: --
53: hr_utility.set_message_token(
54: l_token_name => 'YES_NO_FLAG',
55: l_token_value => 'active_inactive_flag');
56: --
57: hr_utility.raise_error;

Line 57: hr_utility.raise_error;

53: hr_utility.set_message_token(
54: l_token_name => 'YES_NO_FLAG',
55: l_token_value => 'active_inactive_flag');
56: --
57: hr_utility.raise_error;
58: END IF;
59: -- =
60:
61: END chk_active_inactive_flag;

Line 103: hr_utility.set_message(

99:
100: -- = Raise an error when specified multiple_occurences_flag is not 'Y' or 'N'.
101: IF x_multiple_occurences_flag NOT IN ('Y','N') THEN
102: --
103: hr_utility.set_message(
104: applid => 800,
105: l_message_name => 'PER_52500_INV_YES_NO_FLAG');
106: --
107: hr_utility.set_message_token(

Line 107: hr_utility.set_message_token(

103: hr_utility.set_message(
104: applid => 800,
105: l_message_name => 'PER_52500_INV_YES_NO_FLAG');
106: --
107: hr_utility.set_message_token(
108: l_token_name => 'YES_NO_FLAG',
109: l_token_value => 'multiple_occurences_flag');
110: --
111: hr_utility.raise_error;

Line 111: hr_utility.raise_error;

107: hr_utility.set_message_token(
108: l_token_name => 'YES_NO_FLAG',
109: l_token_value => 'multiple_occurences_flag');
110: --
111: hr_utility.raise_error;
112: END IF;
113: -- =
114:
115: END chk_multiple_occurences_flag;

Line 176: hr_utility.set_message(

172: IF l_old_value = 'N' THEN
173: --
174: CLOSE cel_old_value;
175: --
176: hr_utility.set_message(
177: applid => 800,
178: l_message_name => 'PER_50048_UPD_MULTI_OCCRNCS_NO');
179: --
180: hr_utility.raise_error;

Line 180: hr_utility.raise_error;

176: hr_utility.set_message(
177: applid => 800,
178: l_message_name => 'PER_50048_UPD_MULTI_OCCRNCS_NO');
179: --
180: hr_utility.raise_error;
181: --
182: END IF;
183: -- ==
184:

Line 1054: hr_utility.set_location(

1050: OR p_information_type IS NULL);
1051: --
1052: BEGIN
1053: --
1054: hr_utility.set_location(
1055: procedure_name => l_package_name,
1056: stage => 10);
1057: --
1058: OPEN c_translation(language, description, information_type);

Line 1060: hr_utility.set_location(

1056: stage => 10);
1057: --
1058: OPEN c_translation(language, description, information_type);
1059: --
1060: hr_utility.set_location(
1061: procedure_name => l_package_name,
1062: stage => 50);
1063: --
1064: FETCH c_translation INTO g_dummy;

Line 1069: hr_utility.set_location(

1065: -- = fail if a description translation is already present in the table for a
1066: -- = given language. Otherwise, no action is performed.
1067: IF c_translation%NOTFOUND THEN
1068: --
1069: hr_utility.set_location(
1070: procedure_name => l_package_name,
1071: stage => 60);
1072: --
1073: CLOSE c_translation;

Line 1076: hr_utility.set_location(

1072: --
1073: CLOSE c_translation;
1074: ELSE
1075: --
1076: hr_utility.set_location(
1077: procedure_name => l_package_name,
1078: stage => 70);
1079: --
1080: fnd_message.set_name(

Line 1088: hr_utility.set_location(

1084: fnd_message.raise_error;
1085: END IF;
1086: -- =
1087: --
1088: hr_utility.set_location(
1089: procedure_name => 'Leaving:' || l_package_name,
1090: stage => 80);
1091: --
1092: END validate_translation;