DBA Data[Home] [Help]

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

282: c cr%rowtype;
283: l_validate boolean := false;
284: --
285: begin
286: hr_data_pump.entry('call');
287: open cr;
288: fetch cr into c;
289: if cr%notfound then
290: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 297: hr_data_pump.api_trc_on;

293: hr_utility.set_message_token('VALUE',p_batch_line_id);
294: hr_utility.raise_error;
295: end if;
296: --
297: hr_data_pump.api_trc_on;
298: ben_benefits_group_api.CREATE_BENEFITS_GROUP
299: (p_validate => l_validate
300: ,P_BENFTS_GRP_ID => c.p1
301: ,p_business_group_id => p_business_group_id

Line 336: hr_data_pump.api_trc_off;

332: ,P_BNG_ATTRIBUTE28 => c.p32
333: ,P_BNG_ATTRIBUTE29 => c.p33
334: ,P_BNG_ATTRIBUTE30 => c.p34
335: ,P_OBJECT_VERSION_NUMBER => c.p35);
336: hr_data_pump.api_trc_off;
337:
338: --
339: update hr_pump_batch_lines l set
340: l.pval001 = decode(c.p1,null,cn,c.p1),

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

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