DBA Data[Home] [Help]

APPS.HRDPP_CREATE_RATING_SCALE dependencies on HR_DATA_PUMP

Line 65: hr_data_pump.entry('ins_user_key');

61: p_user_key_value in varchar2,
62: p_unique_key_id in number)
63: is
64: begin
65: hr_data_pump.entry('ins_user_key');
66: insert into hr_pump_batch_line_user_keys
67: (user_key_id, batch_line_id,user_key_value,unique_key_id)
68: values
69: (hr_pump_batch_line_user_keys_s.nextval,

Line 73: hr_data_pump.exit('ins_user_key');

69: (hr_pump_batch_line_user_keys_s.nextval,
70: p_batch_line_id,
71: p_user_key_value,
72: p_unique_key_id);
73: hr_data_pump.exit('ins_user_key');
74: end iuk;
75: --
76: procedure insert_batch_lines
77: (p_batch_id in number

Line 255: hr_data_pump.entry('call');

251: c cr%rowtype;
252: l_validate boolean := false;
253: --
254: begin
255: hr_data_pump.entry('call');
256: open cr;
257: fetch cr into c;
258: if cr%notfound then
259: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 266: hr_data_pump.api_trc_on;

262: hr_utility.set_message_token('VALUE',p_batch_line_id);
263: hr_utility.raise_error;
264: end if;
265: --
266: hr_data_pump.api_trc_on;
267: HR_RATING_SCALES_API.CREATE_RATING_SCALE
268: (P_LANGUAGE_CODE => c.p1
269: ,p_validate => l_validate
270: ,P_EFFECTIVE_DATE => c.p2

Line 299: hr_data_pump.api_trc_off;

295: ,P_ATTRIBUTE19 => c.p26
296: ,P_ATTRIBUTE20 => c.p27
297: ,P_RATING_SCALE_ID => c.p28
298: ,P_OBJECT_VERSION_NUMBER => c.p29);
299: hr_data_pump.api_trc_off;
300:
301: --
302: update hr_pump_batch_lines l set
303: l.pval028 = decode(c.p28,null,cn,c.p28),

Line 309: hr_data_pump.exit('call');

305: where l.rowid = c.myrowid;
306: --
307: close cr;
308: --
309: hr_data_pump.exit('call');
310: exception
311: when hr_multi_message.error_message_exist then
312: if cr%isopen then
313: close cr;