DBA Data[Home] [Help]

APPS.PER_PL_CREATE_PERSON dependencies on HR_API

Line 60: hr_api.mandatory_arg_error

56: l_system_type := 'OTHER';
57: l_var := NULL;
58:
59:
60: hr_api.mandatory_arg_error
61: (p_api_name => l_proc,
62: p_argument => hr_general.decode_lookup('PL_FORM_LABELS','LAST'),
63: p_argument_value => p_last_name
64: );

Line 79: -- Bug 4567534 : Replaced hr_api.mandatory_arg_error with an error message.

75:
76: if p_per_information3 = 'Y' or p_per_information2 = 'Y' then
77:
78: --Insured by is yes or Inheritor is yes.Citizenship and First Name are required.
79: -- Bug 4567534 : Replaced hr_api.mandatory_arg_error with an error message.
80: if p_first_name is NULL then
81: hr_utility.set_message(800,'HR_375873_FIRST_NAME_REQD');
82: hr_utility.raise_error;
83: end if;

Line 85: hr_api.mandatory_arg_error

81: hr_utility.set_message(800,'HR_375873_FIRST_NAME_REQD');
82: hr_utility.raise_error;
83: end if;
84:
85: hr_api.mandatory_arg_error
86: (p_api_name => l_proc,
87: p_argument => hr_general.decode_lookup('PL_FORM_LABELS','CITIZENSHIP'),
88: p_argument_value => p_per_information8
89: );

Line 97: -- Bug 4567534 : Replaced hr_api.mandatory_arg_error with an error message

93: Nationality and Citizenship are both Polish then NIP is mandatory */
94: /* Commented by nprasath for Bug 6272487
95: If p_per_information3='Y' and p_per_information8='PL' and p_nationality='PQH_PL' then
96:
97: -- Bug 4567534 : Replaced hr_api.mandatory_arg_error with an error message
98: if p_per_information1 is NULL then
99: hr_utility.set_message(800,'HR_375874_NIP_REQD');
100: hr_utility.raise_error;
101: end if;

Line 107: hr_api.mandatory_arg_error

103: End if; -- End if of Inherited by employee in 'Yes' and nationality and citizenship are Polish
104: */
105:
106: IF p_per_information2 = 'Y' then
107: hr_api.mandatory_arg_error
108: (p_api_name => l_proc,
109: p_argument => hr_general.decode_lookup('PL_FORM_LABELS','BIRTH'),
110: p_argument_value => p_date_of_birth
111: );