DBA Data[Home] [Help]

APPS.ITG_SETUP dependencies on HR_API

Line 160: -- All the params input here are mandatory, to the HR APIs which create a location

156: -- p_postal_code => Some postal code
157: -- Notes
158: -- We really do not care what value go in here so long as a record
159: -- with location code 'OIPC Default TP' is created in Hr_Locations table
160: -- All the params input here are mandatory, to the HR APIs which create a location
161: -- Defaulting is done in the Concurrent Program definition which wraps this call
162: PROCEDURE setup_hr_loc(
163: x_errbuf OUT NOCOPY VARCHAR2,
164: x_retcode OUT NOCOPY VARCHAR2,

Line 220: -- The object_verion_number field is used for optimistic locking in the HR apis

216:
217: -- query Hr_locations to get location id for given location code
218: -- if record does not exists create a new location
219: -- else update using the location-id as key
220: -- The object_verion_number field is used for optimistic locking in the HR apis
221:
222: OPEN check_hrloc_data(p_location_code);
223: FETCH check_hrloc_data INTO l_location_id, l_obj_ver_num;
224: l_record_found := check_hrloc_data%FOUND;