DBA Data[Home] [Help]

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

196: l_validate boolean := false;
197: L_PERSON_ID number;
198: --
199: begin
200: hr_data_pump.entry('call');
201: open cr;
202: fetch cr into c;
203: if cr%notfound then
204: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 219: hr_data_pump.api_trc_on;

215: hr_pump_get.GET_PERSON_ID
216: (P_PERSON_USER_KEY => c.p14);
217: end if;
218: --
219: hr_data_pump.api_trc_on;
220: HR_USER_ACCT_API.UPDATE_USER_ACCT
221: (p_validate => l_validate
222: ,P_PERSON_ID => L_PERSON_ID
223: ,P_PER_EFFECTIVE_START_DATE => c.p1

Line 237: hr_data_pump.api_trc_off;

233: ,P_PARENT_ORG_ID => c.p10
234: ,P_SINGLE_ORG_ID => c.p11
235: ,P_RUN_TYPE => c.p12
236: ,P_INACTIVATE_DATE => c.p13);
237: hr_data_pump.api_trc_off;
238:
239: --
240:
241: --

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

240:
241: --
242: close cr;
243: --
244: hr_data_pump.exit('call');
245: exception
246: when hr_multi_message.error_message_exist then
247: if cr%isopen then
248: close cr;