DBA Data[Home] [Help]

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

149: L_ELIG_CVRD_DPNT_ID number;
150: L_OBJECT_VERSION_NUMBER number;
151: --
152: begin
153: hr_data_pump.entry('call');
154: open cr;
155: fetch cr into c;
156: if cr%notfound then
157: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');

Line 195: hr_data_pump.api_trc_on;

191: (P_ELIG_CVRD_DPNT_USER_KEY => c.p7
192: ,P_EFFECTIVE_DATE => c.p3);
193: end if;
194: --
195: hr_data_pump.api_trc_on;
196: ben_elig_cvrd_dpnt_api.DELETE_ELIG_CVRD_DPNT
197: (p_validate => l_validate
198: ,P_ELIG_CVRD_DPNT_ID => L_ELIG_CVRD_DPNT_ID
199: ,P_EFFECTIVE_START_DATE => c.p1

Line 207: hr_data_pump.api_trc_off;

203: ,P_EFFECTIVE_DATE => c.p3
204: ,P_DATETRACK_MODE => c.p4
205: ,P_MULTI_ROW_ACTN => L_MULTI_ROW_ACTN
206: ,P_CALLED_FROM => c.p6);
207: hr_data_pump.api_trc_off;
208:
209: --
210: update hr_pump_batch_lines l set
211: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),

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

213: where l.rowid = c.myrowid;
214: --
215: close cr;
216: --
217: hr_data_pump.exit('call');
218: exception
219: when hr_multi_message.error_message_exist then
220: if cr%isopen then
221: close cr;