DBA Data[Home] [Help]

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

705: c cr%rowtype;
706: l_validate boolean := false;
707: --
708: begin
709: hr_data_pump.entry('call');
710: open cr;
711: fetch cr into c;
712: if cr%notfound then
713: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 720: hr_data_pump.api_trc_on;

716: hr_utility.set_message_token('VALUE',p_batch_line_id);
717: hr_utility.raise_error;
718: end if;
719: --
720: hr_data_pump.api_trc_on;
721: PAY_RI_AC_TAX_RULE.CREATE_AC_EMPTAXRULE
722: (P_BUSINESS_GROUP => c.p1
723: ,P_EFFECTIVE_DATE => c.p2
724: ,P_EMPLOYEE => c.p3

Line 838: hr_data_pump.api_trc_off;

834: ,P_ADDITIONAL_INFO7 => c.p113
835: ,P_ADDITIONAL_INFO8 => c.p114
836: ,P_ADDITIONAL_INFO9 => c.p115
837: ,P_ADDITIONAL_INFO10 => c.p116);
838: hr_data_pump.api_trc_off;
839:
840: --
841:
842: --

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

841:
842: --
843: close cr;
844: --
845: hr_data_pump.exit('call');
846: exception
847: when hr_multi_message.error_message_exist then
848: if cr%isopen then
849: close cr;