DBA Data[Home] [Help]

APPS.PER_HU_CREATE_APPLICANT dependencies on HR_UTILITY

Line 17: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN

13: BEGIN
14: --
15: -- Added for GSI Bug 5472781
16: --
17: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN
18: --
19:
20: --Bug 4411143
21: /*hr_api.mandatory_arg_error

Line 40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

36: p_argument_value => p_per_information1
37: );*/
38:
39: IF length(p_last_name)>40 THEN
40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
43: hr_utility.set_message_token('MAX_LENGTH','40');
44: hr_utility.raise_error;

Line 41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));

37: );*/
38:
39: IF length(p_last_name)>40 THEN
40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
43: hr_utility.set_message_token('MAX_LENGTH','40');
44: hr_utility.raise_error;
45: END IF;

Line 42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);

38:
39: IF length(p_last_name)>40 THEN
40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
43: hr_utility.set_message_token('MAX_LENGTH','40');
44: hr_utility.raise_error;
45: END IF;
46:

Line 43: hr_utility.set_message_token('MAX_LENGTH','40');

39: IF length(p_last_name)>40 THEN
40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
43: hr_utility.set_message_token('MAX_LENGTH','40');
44: hr_utility.raise_error;
45: END IF;
46:
47: IF length(p_first_name)>40 THEN

Line 44: hr_utility.raise_error;

40: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
41: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','LAST_NAME'));
42: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
43: hr_utility.set_message_token('MAX_LENGTH','40');
44: hr_utility.raise_error;
45: END IF;
46:
47: IF length(p_first_name)>40 THEN
48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

Line 48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');

44: hr_utility.raise_error;
45: END IF;
46:
47: IF length(p_first_name)>40 THEN
48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
51: hr_utility.set_message_token('MAX_LENGTH','40');
52: hr_utility.raise_error;

Line 49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));

45: END IF;
46:
47: IF length(p_first_name)>40 THEN
48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
51: hr_utility.set_message_token('MAX_LENGTH','40');
52: hr_utility.raise_error;
53: END IF;

Line 50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);

46:
47: IF length(p_first_name)>40 THEN
48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
51: hr_utility.set_message_token('MAX_LENGTH','40');
52: hr_utility.raise_error;
53: END IF;
54: END IF;

Line 51: hr_utility.set_message_token('MAX_LENGTH','40');

47: IF length(p_first_name)>40 THEN
48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
51: hr_utility.set_message_token('MAX_LENGTH','40');
52: hr_utility.raise_error;
53: END IF;
54: END IF;
55: END create_hu_applicant;

Line 52: hr_utility.raise_error;

48: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
49: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
50: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
51: hr_utility.set_message_token('MAX_LENGTH','40');
52: hr_utility.raise_error;
53: END IF;
54: END IF;
55: END create_hu_applicant;
56: