DBA Data[Home] [Help]

APPS.ITG_SETUP dependencies on HR_LOCATION_API

Line 250: HR_LOCATION_API.create_location(

246:
247: CLOSE check_hrloc_data;
248:
249: IF NOT l_record_found THEN
250: HR_LOCATION_API.create_location(
251: p_effective_date => sysdate,
252: p_language_code => userenv('LANG'),
253: p_location_code => p_location_code,
254: p_description => p_description,

Line 263: itg_debug_pub.Add('HR_LOCATION_API.create_location returns normal',1);

259: p_object_version_number => l_obj_ver_num );
260:
261: IF (l_Debug_Level <= 1 ) THEN
262: itg_debug_pub.Add('---------------------------------' ,1);
263: itg_debug_pub.Add('HR_LOCATION_API.create_location returns normal',1);
264: itg_debug_pub.Add('l_location_id ' || l_location_id ,1);
265: itg_debug_pub.Add('l_obj_ver_num ' || l_obj_ver_num ,1);
266: itg_debug_pub.Add('---------------------------------',1);
267: END IF;

Line 269: HR_LOCATION_API.update_location(

265: itg_debug_pub.Add('l_obj_ver_num ' || l_obj_ver_num ,1);
266: itg_debug_pub.Add('---------------------------------',1);
267: END IF;
268: ELSE
269: HR_LOCATION_API.update_location(
270: p_effective_date => sysdate,
271: p_language_code => userenv('LANG'),
272: p_style => p_style,
273: p_description => p_description,

Line 284: itg_debug_pub.Add('HR_LOCATION_API.update_location returns normal' ,1);

280: p_location_id => l_location_id,
281: p_object_version_number => l_obj_ver_num );
282:
283: IF (l_Debug_Level <= 1 ) THEN
284: itg_debug_pub.Add('HR_LOCATION_API.update_location returns normal' ,1);
285: END IF;
286: END IF;
287:
288: x_retcode := FND_API.G_RET_STS_SUCCESS;