DBA Data[Home] [Help]

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

307: L_BASE_BALANCE_TYPE_ID number;
308: L_INPUT_VALUE_ID number;
309: --
310: begin
311: hr_data_pump.entry('call');
312: open cr;
313: fetch cr into c;
314: if cr%notfound then
315: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 357: hr_data_pump.api_trc_on;

353: ,P_EFFECTIVE_DATE => c.p1
354: ,P_LANGUAGE_CODE => c.p2);
355: end if;
356: --
357: hr_data_pump.api_trc_on;
358: PAY_BALANCE_TYPES_API.CREATE_BAL_TYPE
359: (p_validate => l_validate
360: ,P_EFFECTIVE_DATE => c.p1
361: ,P_LANGUAGE_CODE => c.p2

Line 399: hr_data_pump.api_trc_off;

395: ,P_BASE_BALANCE_TYPE_ID => L_BASE_BALANCE_TYPE_ID
396: ,P_INPUT_VALUE_ID => L_INPUT_VALUE_ID
397: ,P_BALANCE_TYPE_ID => L_BALANCE_TYPE_ID
398: ,P_OBJECT_VERSION_NUMBER => c.p35);
399: hr_data_pump.api_trc_off;
400: --
401: iuk(p_batch_line_id,c.p34,L_BALANCE_TYPE_ID);
402: --
403: update hr_pump_batch_lines l set

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

406: where l.rowid = c.myrowid;
407: --
408: close cr;
409: --
410: hr_data_pump.exit('call');
411: exception
412: when hr_multi_message.error_message_exist then
413: if cr%isopen then
414: close cr;