DBA Data[Home] [Help]

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

187: l_validate boolean := false;
188: L_PERSON_ID number;
189: --
190: begin
191: hr_data_pump.entry('call');
192: open cr;
193: fetch cr into c;
194: if cr%notfound then
195: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 210: hr_data_pump.api_trc_on;

206: hr_pump_get.GET_PERSON_ID
207: (P_PERSON_USER_KEY => c.p15);
208: end if;
209: --
210: hr_data_pump.api_trc_on;
211: HR_USER_ACCT_API.CREATE_USER_ACCT
212: (p_validate => l_validate
213: ,P_PERSON_ID => L_PERSON_ID
214: ,P_PER_EFFECTIVE_START_DATE => c.p1

Line 229: hr_data_pump.api_trc_off;

225: ,P_PARENT_ORG_ID => c.p11
226: ,P_SINGLE_ORG_ID => c.p12
227: ,P_RUN_TYPE => c.p13
228: ,P_USER_ID => c.p14);
229: hr_data_pump.api_trc_off;
230:
231: --
232: update hr_pump_batch_lines l set
233: l.pval014 = decode(c.p14,null,cn,c.p14)

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

234: where l.rowid = c.myrowid;
235: --
236: close cr;
237: --
238: hr_data_pump.exit('call');
239: exception
240: when hr_multi_message.error_message_exist then
241: if cr%isopen then
242: close cr;