DBA Data[Home] [Help]

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

511: l_validate boolean := false;
512: L_EMP_CITY_TAX_RULE_ID number;
513: --
514: begin
515: hr_data_pump.entry('call');
516: open cr;
517: fetch cr into c;
518: if cr%notfound then
519: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 526: hr_data_pump.api_trc_on;

522: hr_utility.set_message_token('VALUE',p_batch_line_id);
523: hr_utility.raise_error;
524: end if;
525: --
526: hr_data_pump.api_trc_on;
527: PAY_CITY_TAX_RULE_API.CREATE_CITY_TAX_RULE
528: (p_validate => l_validate
529: ,P_EMP_CITY_TAX_RULE_ID => L_EMP_CITY_TAX_RULE_ID
530: ,P_EFFECTIVE_START_DATE => c.p2

Line 610: hr_data_pump.api_trc_off;

606: ,P_CTY_INFORMATION27 => c.p78
607: ,P_CTY_INFORMATION28 => c.p79
608: ,P_CTY_INFORMATION29 => c.p80
609: ,P_CTY_INFORMATION30 => c.p81);
610: hr_data_pump.api_trc_off;
611: --
612: iuk(p_batch_line_id,c.p1,L_EMP_CITY_TAX_RULE_ID);
613: --
614: update hr_pump_batch_lines l set

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

619: where l.rowid = c.myrowid;
620: --
621: close cr;
622: --
623: hr_data_pump.exit('call');
624: exception
625: when hr_multi_message.error_message_exist then
626: if cr%isopen then
627: close cr;