DBA Data[Home] [Help]

APPS.HRDPP_CREATE_VALID_GRADE 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 261: hr_data_pump.entry('call');

257: L_JOB_ID number;
258: L_POSITION_ID number;
259: --
260: begin
261: hr_data_pump.entry('call');
262: open cr;
263: fetch cr into c;
264: if cr%notfound then
265: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 305: hr_data_pump.api_trc_on;

301: ,P_BUSINESS_GROUP_ID => P_BUSINESS_GROUP_ID
302: ,P_EFFECTIVE_DATE => c.p1);
303: end if;
304: --
305: hr_data_pump.api_trc_on;
306: hr_valid_grade_api.create_valid_grade
307: (p_validate => l_validate
308: ,P_GRADE_ID => L_GRADE_ID
309: ,P_DATE_FROM => c.p1

Line 338: hr_data_pump.api_trc_off;

334: ,P_ATTRIBUTE19 => c.p24
335: ,P_ATTRIBUTE20 => c.p25
336: ,P_VALID_GRADE_ID => c.p26
337: ,P_OBJECT_VERSION_NUMBER => c.p27);
338: hr_data_pump.api_trc_off;
339:
340: --
341: update hr_pump_batch_lines l set
342: l.pval026 = decode(c.p26,null,cn,c.p26),

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

344: where l.rowid = c.myrowid;
345: --
346: close cr;
347: --
348: hr_data_pump.exit('call');
349: exception
350: when hr_multi_message.error_message_exist then
351: if cr%isopen then
352: close cr;