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

516: l_validate boolean := false;
517: L_EMP_CITY_TAX_RULE_ID number;
518: --
519: begin
520: hr_data_pump.entry('call');
521: open cr;
522: fetch cr into c;
523: if cr%notfound then
524: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 531: hr_data_pump.api_trc_on;

527: hr_utility.set_message_token('VALUE',p_batch_line_id);
528: hr_utility.raise_error;
529: end if;
530: --
531: hr_data_pump.api_trc_on;
532: PAY_CITY_TAX_RULE_API.CREATE_CITY_TAX_RULE
533: (p_validate => l_validate
534: ,P_EMP_CITY_TAX_RULE_ID => L_EMP_CITY_TAX_RULE_ID
535: ,P_EFFECTIVE_START_DATE => c.p2

Line 616: hr_data_pump.api_trc_off;

612: ,P_CTY_INFORMATION27 => c.p79
613: ,P_CTY_INFORMATION28 => c.p80
614: ,P_CTY_INFORMATION29 => c.p81
615: ,P_CTY_INFORMATION30 => c.p82);
616: hr_data_pump.api_trc_off;
617: --
618: iuk(p_batch_line_id,c.p1,L_EMP_CITY_TAX_RULE_ID);
619: --
620: update hr_pump_batch_lines l set

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

625: where l.rowid = c.myrowid;
626: --
627: close cr;
628: --
629: hr_data_pump.exit('call');
630: exception
631: when hr_multi_message.error_message_exist then
632: if cr%isopen then
633: close cr;