DBA Data[Home] [Help]

APPS.PER_ES_CREATE_PERSON dependencies on HR_GENERAL

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

29: IF hr_utility.chk_product_install('Oracle Human Resources', 'ES') THEN
30: --
31: hr_api.mandatory_arg_error
32: (p_api_name => l_proc,
33: p_argument => hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'),
34: p_argument_value => p_last_name
35: );
36:
37: /*IF p_per_information3 IS NOT NULL AND

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

66: END IF;*/
67:
68: IF length(p_last_name)>40 THEN
69: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
70: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_1'));
71: hr_utility.set_message_token('COLUMN_VALUE',p_last_name);
72: hr_utility.set_message_token('MAX_LENGTH','40');
73: hr_utility.raise_error;
74: END IF;

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

74: END IF;
75:
76: IF length(p_first_name)>40 THEN
77: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
78: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','NAME'));
79: hr_utility.set_message_token('COLUMN_VALUE',p_first_name);
80: hr_utility.set_message_token('MAX_LENGTH','40');
81: hr_utility.raise_error;
82: END IF;

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

82: END IF;
83:
84: IF length(p_per_information1)>40 THEN
85: hr_utility.set_message(800, 'HR_289712_UTF8_LENGTH_EXCEEDED');
86: hr_utility.set_message_token('COLUMN_NAME',hr_general.decode_lookup('ES_FORM_LABELS','LAST_NAME_2'));
87: hr_utility.set_message_token('COLUMN_VALUE',p_per_information1);
88: hr_utility.set_message_token('MAX_LENGTH','40');
89: hr_utility.raise_error;
90: END IF;