DBA Data[Home] [Help]

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

364: L_PL_TYP_ID number;
365: L_OBJECT_VERSION_NUMBER number;
366: --
367: begin
368: hr_data_pump.entry('call');
369: open cr;
370: fetch cr into c;
371: if cr%notfound then
372: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 401: hr_data_pump.api_trc_on;

397: ,P_PLAN_TYPE => c.p50
398: ,P_EFFECTIVE_DATE => c.p44);
399: end if;
400: --
401: hr_data_pump.api_trc_on;
402: ben_plan_type_api.UPDATE_PLAN_TYPE
403: (p_validate => l_validate
404: ,P_PL_TYP_ID => L_PL_TYP_ID
405: ,P_EFFECTIVE_START_DATE => c.p1

Line 456: hr_data_pump.api_trc_off;

452: ,P_SHORT_NAME => c.p46
453: ,P_SHORT_CODE => c.p47
454: ,P_LEGISLATION_CODE => c.p48
455: ,P_LEGISLATION_SUBGROUP => c.p49);
456: hr_data_pump.api_trc_off;
457:
458: --
459: update hr_pump_batch_lines l set
460: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),

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

462: where l.rowid = c.myrowid;
463: --
464: close cr;
465: --
466: hr_data_pump.exit('call');
467: exception
468: when hr_multi_message.error_message_exist then
469: if cr%isopen then
470: close cr;