DBA Data[Home] [Help]

APPS.HR_ORGANIZATION_INTERNAL dependencies on HR_ORGANIZATION_API

Line 165: hr_organization_api.update_org_information(

161: ,l_object_version_number_org;
162:
163: if (check_ou_exists%found) then
164: begin
165: hr_organization_api.update_org_information(
166: p_effective_date =>sysdate
167: ,p_org_information_id =>l_org_information_id
168: ,p_org_info_type_code =>l_org_info_type_code
169: ,p_org_information1 =>l_operating_unit_id

Line 180: hr_organization_api.create_org_information(

176: end;
177:
178: elsif(l_operating_unit_id is not null) then
179: begin
180: hr_organization_api.create_org_information(
181: p_effective_date =>sysdate
182: ,p_organization_id =>l_organization_id
183: ,p_org_information1 =>l_operating_unit_id
184: ,p_org_info_type_code =>'Exp Organization Defaults'

Line 201: hr_organization_api.update_organization(

197: fetch get_object_version_number into l_object_version_number_org;
198: hr_utility.set_location(l_object_version_number_org,99);
199: --Update row in HR_ALL_ORGANIZATION_UNITS Table
200: if get_object_version_number%found then
201: hr_organization_api.update_organization(
202: p_effective_date =>sysdate
203: ,p_name =>l_organization_name
204: ,p_organization_id =>l_organization_id
205: ,p_internal_external_flag =>l_internal_external_flag

Line 227: hr_organization_api.create_hr_organization(

223: else
224: --Create an Hr organization
225: hr_utility.set_location(l_proc,30);
226: begin
227: hr_organization_api.create_hr_organization(
228: p_effective_date =>sysdate
229: ,p_business_group_id =>l_business_group_id
230: ,p_name =>l_organization_name
231: ,p_date_to =>l_date_to

Line 249: hr_organization_api.create_org_information(

245: end;
246:
247: if(l_operating_unit_id is not null) then
248: begin
249: hr_organization_api.create_org_information(
250: p_effective_date =>sysdate
251: ,p_organization_id =>l_organization_id
252: ,p_org_information1 =>l_operating_unit_id
253: ,p_org_info_type_code =>'Exp Organization Defaults'