DBA Data[Home] [Help]

APPS.HRDPP_CREATE_USER_ACCT dependencies on HR_DATA_PUMP

Line 46: hr_data_pump.entry('ins_user_key');

42: p_user_key_value in varchar2,
43: p_unique_key_id in number)
44: is
45: begin
46: hr_data_pump.entry('ins_user_key');
47: insert into hr_pump_batch_line_user_keys
48: (user_key_id, batch_line_id,user_key_value,unique_key_id)
49: values
50: (hr_pump_batch_line_user_keys_s.nextval,

Line 54: hr_data_pump.exit('ins_user_key');

50: (hr_pump_batch_line_user_keys_s.nextval,
51: p_batch_line_id,
52: p_user_key_value,
53: p_unique_key_id);
54: hr_data_pump.exit('ins_user_key');
55: end iuk;
56: --
57: procedure insert_batch_lines
58: (p_batch_id in number

Line 172: hr_data_pump.entry('call');

168: l_validate boolean := false;
169: L_PERSON_ID number;
170: --
171: begin
172: hr_data_pump.entry('call');
173: open cr;
174: fetch cr into c;
175: if cr%notfound then
176: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 190: hr_data_pump.api_trc_on;

186: L_PERSON_ID :=
187: hr_pump_get.GET_PERSON_ID(c.p15);
188: end if;
189: --
190: hr_data_pump.api_trc_on;
191: HR_USER_ACCT_API.CREATE_USER_ACCT
192: (l_validate
193: ,L_PERSON_ID
194: ,c.p1

Line 209: hr_data_pump.api_trc_off;

205: ,c.p11
206: ,c.p12
207: ,c.p13
208: ,c.p14);
209: hr_data_pump.api_trc_off;
210:
211: --
212: update hr_pump_batch_lines l set
213: l.pval014 = decode(c.p14,null,cn,c.p14)

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

214: where l.rowid = c.myrowid;
215: --
216: close cr;
217: --
218: hr_data_pump.exit('call');
219: exception
220: when hr_multi_message.error_message_exist then
221: if cr%isopen then
222: close cr;