DBA Data[Home] [Help]

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

193: c cr%rowtype;
194: l_validate boolean := false;
195: --
196: begin
197: hr_data_pump.entry('call');
198: open cr;
199: fetch cr into c;
200: if cr%notfound then
201: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 208: hr_data_pump.api_trc_on;

204: hr_utility.set_message_token('VALUE',p_batch_line_id);
205: hr_utility.raise_error;
206: end if;
207: --
208: hr_data_pump.api_trc_on;
209: PAY_AC_TAXABILITY_WRAPPER.CREATE_TAXABILITY_RULES
210: (P_CLASSIFICATION_ID => c.p1
211: ,P_TAX_CATEGORY => c.p2
212: ,P_JURISDICTION => c.p3

Line 226: hr_data_pump.api_trc_off;

222: ,P_INPUT_TAX_TYPE_VALUE9 => c.p13
223: ,P_INPUT_TAX_TYPE_VALUE10 => c.p14
224: ,P_INPUT_TAX_TYPE_VALUE11 => c.p15
225: ,P_SPREADSHEET_IDENTIFIER => c.p16);
226: hr_data_pump.api_trc_off;
227:
228: --
229:
230: --

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

229:
230: --
231: close cr;
232: --
233: hr_data_pump.exit('call');
234: exception
235: when hr_multi_message.error_message_exist then
236: if cr%isopen then
237: close cr;