DBA Data[Home] [Help]

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

182: L_USER_ROW_ID number;
183: L_USER_TABLE_ID number;
184: --
185: begin
186: hr_data_pump.entry('call');
187: open cr;
188: fetch cr into c;
189: if cr%notfound then
190: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 231: hr_data_pump.api_trc_on;

227: PAY_USER_TABLE_DATA_PUMP.get_user_table_id
228: (P_USER_TABLE_USER_KEY => c.p13);
229: end if;
230: --
231: hr_data_pump.api_trc_on;
232: PAY_USER_ROW_API.CREATE_USER_ROW
233: (p_validate => l_validate
234: ,P_EFFECTIVE_DATE => c.p1
235: ,P_USER_TABLE_ID => L_USER_TABLE_ID

Line 248: hr_data_pump.api_trc_off;

244: ,P_OBJECT_VERSION_NUMBER => c.p9
245: ,P_EFFECTIVE_START_DATE => c.p10
246: ,P_EFFECTIVE_END_DATE => c.p11
247: ,P_BASE_ROW_LOW_RANGE_OR_NAME => c.p12);
248: hr_data_pump.api_trc_off;
249: --
250: iuk(p_batch_line_id,c.p8,L_USER_ROW_ID);
251: --
252: update hr_pump_batch_lines l set

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

258: where l.rowid = c.myrowid;
259: --
260: close cr;
261: --
262: hr_data_pump.exit('call');
263: exception
264: when hr_multi_message.error_message_exist then
265: if cr%isopen then
266: close cr;