DBA Data[Home] [Help]

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

497: l_validate boolean := false;
498: L_EMP_COUNTY_TAX_RULE_ID number;
499: --
500: begin
501: hr_data_pump.entry('call');
502: open cr;
503: fetch cr into c;
504: if cr%notfound then
505: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 512: hr_data_pump.api_trc_on;

508: hr_utility.set_message_token('VALUE',p_batch_line_id);
509: hr_utility.raise_error;
510: end if;
511: --
512: hr_data_pump.api_trc_on;
513: PAY_COUNTY_TAX_RULE_API.CREATE_COUNTY_TAX_RULE
514: (p_validate => l_validate
515: ,P_EMP_COUNTY_TAX_RULE_ID => L_EMP_COUNTY_TAX_RULE_ID
516: ,P_EFFECTIVE_START_DATE => c.p2

Line 595: hr_data_pump.api_trc_off;

591: ,P_CNT_INFORMATION27 => c.p77
592: ,P_CNT_INFORMATION28 => c.p78
593: ,P_CNT_INFORMATION29 => c.p79
594: ,P_CNT_INFORMATION30 => c.p80);
595: hr_data_pump.api_trc_off;
596: --
597: iuk(p_batch_line_id,c.p1,L_EMP_COUNTY_TAX_RULE_ID);
598: --
599: update hr_pump_batch_lines l set

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

604: where l.rowid = c.myrowid;
605: --
606: close cr;
607: --
608: hr_data_pump.exit('call');
609: exception
610: when hr_multi_message.error_message_exist then
611: if cr%isopen then
612: close cr;