DBA Data[Home] [Help]

APPS.PQH_RSS_BUS dependencies on HR_API

Line 51: hr_api.mandatory_arg_error

47: hr_utility.set_location('Entering:'|| l_proc, 10);
48: --
49: -- Ensure that all the mandatory parameter are not null
50: --
51: hr_api.mandatory_arg_error
52: (p_api_name => l_proc
53: ,p_argument => 'result_set_id'
54: ,p_argument_value => p_result_set_id
55: );

Line 77: hr_api.set_security_group_id

73: close csr_sec_grp;
74: --
75: -- Set the security_group_id in CLIENT_INFO
76: --
77: hr_api.set_security_group_id
78: (p_security_group_id => l_security_group_id
79: );
80: end if;
81: --

Line 121: hr_api.mandatory_arg_error

117: hr_utility.set_location('Entering:'|| l_proc, 10);
118: --
119: -- Ensure that all the mandatory parameter are not null
120: --
121: hr_api.mandatory_arg_error
122: (p_api_name => l_proc
123: ,p_argument => 'result_set_id'
124: ,p_argument_value => p_result_set_id
125: );

Line 127: if ( nvl(pqh_rss_bus.g_result_set_id, hr_api.g_number)

123: ,p_argument => 'result_set_id'
124: ,p_argument_value => p_result_set_id
125: );
126: --
127: if ( nvl(pqh_rss_bus.g_result_set_id, hr_api.g_number)
128: = p_result_set_id) then
129: --
130: -- The legislation code has already been found with a previous
131: -- call to this function. Just return the value in the global

Line 218: IF nvl(p_rec.Grade_id, hr_api.g_number) <>

214: --
215: -- EDIT_HERE: Add checks to ensure non-updateable args have
216: -- not been updated.
217: --
218: IF nvl(p_rec.Grade_id, hr_api.g_number) <>
219: nvl(pqh_RSS_shd.g_old_rec.Grade_id, hr_api.g_number) THEN
220: hr_utility.set_message(8302, 'PQH_DE_NONUPD_GRADE_ID');
221: fnd_message.raise_error;
222:

Line 219: nvl(pqh_RSS_shd.g_old_rec.Grade_id, hr_api.g_number) THEN

215: -- EDIT_HERE: Add checks to ensure non-updateable args have
216: -- not been updated.
217: --
218: IF nvl(p_rec.Grade_id, hr_api.g_number) <>
219: nvl(pqh_RSS_shd.g_old_rec.Grade_id, hr_api.g_number) THEN
220: hr_utility.set_message(8302, 'PQH_DE_NONUPD_GRADE_ID');
221: fnd_message.raise_error;
222:
223: END IF;