DBA Data[Home] [Help]

APPS.PER_HU_CREATE_EMPLOYEE dependencies on HR_UTILITY

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

31: );*/
32: --
33: -- Added for GSI Bug 5472781
34: --
35: IF hr_utility.chk_product_install('Oracle Human Resources', 'HU') THEN
36: --
37: IF fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') in ('ERROR','WARN') THEN
38: hr_api.mandatory_arg_error
39: (p_api_name => l_proc,

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

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

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

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

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

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

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

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

Line 50: hr_utility.raise_error;

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

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

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

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

51: END IF;
52:
53: IF length(p_first_name)>40 THEN
54: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
55: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
56: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
57: hr_utility.set_message_token('MAX_LENGTH','40');
58: hr_utility.raise_error;
59: END IF;

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

52:
53: IF length(p_first_name)>40 THEN
54: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
55: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
56: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
57: hr_utility.set_message_token('MAX_LENGTH','40');
58: hr_utility.raise_error;
59: END IF;
60: END IF;

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

53: IF length(p_first_name)>40 THEN
54: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
55: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
56: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
57: hr_utility.set_message_token('MAX_LENGTH','40');
58: hr_utility.raise_error;
59: END IF;
60: END IF;
61: END create_hu_employee;

Line 58: hr_utility.raise_error;

54: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
55: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('HU_FORM_LABELS','FIRST_NAME'));
56: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
57: hr_utility.set_message_token('MAX_LENGTH','40');
58: hr_utility.raise_error;
59: END IF;
60: END IF;
61: END create_hu_employee;
62: