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

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

Line 227: hr_data_pump.api_trc_on;

223: PAY_USER_TABLE_DATA_PUMP.get_user_table_id
224: (P_USER_TABLE_USER_KEY => c.p12);
225: end if;
226: --
227: hr_data_pump.api_trc_on;
228: PAY_USER_ROW_API.CREATE_USER_ROW
229: (p_validate => l_validate
230: ,P_EFFECTIVE_DATE => c.p1
231: ,P_USER_TABLE_ID => L_USER_TABLE_ID

Line 243: hr_data_pump.api_trc_off;

239: ,P_USER_ROW_ID => L_USER_ROW_ID
240: ,P_OBJECT_VERSION_NUMBER => c.p9
241: ,P_EFFECTIVE_START_DATE => c.p10
242: ,P_EFFECTIVE_END_DATE => c.p11);
243: hr_data_pump.api_trc_off;
244: --
245: iuk(p_batch_line_id,c.p8,L_USER_ROW_ID);
246: --
247: update hr_pump_batch_lines l set

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

253: where l.rowid = c.myrowid;
254: --
255: close cr;
256: --
257: hr_data_pump.exit('call');
258: exception
259: when hr_multi_message.error_message_exist then
260: if cr%isopen then
261: close cr;