DBA Data[Home] [Help]

APPS.PER_ES_UPDATE_PERSON dependencies on HR_GENERAL

Line 109: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_FORM_LABELS','IDENTIFIER_TYPE'));

105: OPEN get_lookup_type(l_identifier_type);
106: FETCH get_lookup_type into l_identifier_type;
107: IF get_lookup_type%NOTFOUND THEN
108: hr_utility.set_message(800,'HR_ES_INVALID_VALUE');
109: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_FORM_LABELS','IDENTIFIER_TYPE'));
110: hr_utility.raise_error;
111: END IF;
112: CLOSE get_lookup_type;
113:

Line 115: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_IDENTIFIER_TYPE',l_identifier_type));

111: END IF;
112: CLOSE get_lookup_type;
113:
114: hr_utility.set_message(800,'HR_ES_INVALID_VALUE');
115: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_IDENTIFIER_TYPE',l_identifier_type));
116: hr_utility.raise_error;
117: END IF;
118: --
119: IF l_identifier_type IS NULL AND

Line 122: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_FORM_LABELS','IDENTIFIER_TYPE'));

118: --
119: IF l_identifier_type IS NULL AND
120: l_identifier_value IS NOT NULL THEN
121: hr_utility.set_message(800,'HR_ES_INVALID_VALUE');
122: hr_utility.set_message_token(800,'FIELD',hr_general.decode_lookup('ES_FORM_LABELS','IDENTIFIER_TYPE'));
123: hr_utility.raise_error;
124: END IF;
125: --
126: IF FND_PROFILE.VALUE('PER_NATIONAL_IDENTIFIER_VALIDATION') <> 'NONE' AND ---Bug No 4718049

Line 169: p_argument => hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'),

165: END IF;
166: --
167: hr_api.mandatory_arg_error
168: (p_api_name => l_proc,
169: p_argument => hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'),
170: p_argument_value => p_last_name
171: );
172: --
173: IF length(p_last_name)>40 THEN

Line 175: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'));

171: );
172: --
173: IF length(p_last_name)>40 THEN
174: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
175: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'));
176: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
177: hr_utility.set_message_token('MAX_LENGTH','40');
178: hr_utility.raise_error;
179: END IF;

Line 185: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_2'));

181: --
182: IF p_per_information1 is not null THEN
183: IF length(p_per_information1)>40 THEN
184: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
185: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_2'));
186: hr_utility.set_message_token('COLUMN_VALUE',p_per_information1);
187: hr_utility.set_message_token('MAX_LENGTH','40');
188: hr_utility.raise_error;
189: END IF;

Line 195: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','NAME'));

191: --
192: IF p_first_name is not null THEN
193: IF length(p_first_name)>40 THEN
194: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
195: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','NAME'));
196: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
197: hr_utility.set_message_token('MAX_LENGTH','40');
198: hr_utility.raise_error;
199: END IF;