DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_CA_EMP_FEDTAX_INF dependencies on HR_PUMP_BATCH_LINES

Line 148: delete from hr_pump_batch_lines where batch_line_id = blid;

144: ,P_EMP_FED_TAX_INF_USER_KEY in varchar2) is
145: blid number := p_data_pump_batch_line_id;
146: begin
147: if blid is not null then
148: delete from hr_pump_batch_lines where batch_line_id = blid;
149: delete from hr_pump_batch_exceptions
150: where source_type = 'BATCH_LINE' and source_id = blid;
151: end if;
152: insert into hr_pump_batch_lines

Line 152: insert into hr_pump_batch_lines

148: delete from hr_pump_batch_lines where batch_line_id = blid;
149: delete from hr_pump_batch_exceptions
150: where source_type = 'BATCH_LINE' and source_id = blid;
151: end if;
152: insert into hr_pump_batch_lines
153: (batch_id
154: ,batch_line_id
155: ,business_group_name
156: ,api_module_id

Line 215: ,nvl(blid,hr_pump_batch_lines_s.nextval)

211: ,pval054
212: ,pval055)
213: values
214: (p_batch_id
215: ,nvl(blid,hr_pump_batch_lines_s.nextval)
216: ,p_data_pump_business_grp_name
217: ,1158
218: ,'U'
219: ,p_user_sequence

Line 389: from hr_pump_batch_lines l

385: l.pval052 d52,
386: decode(l.pval053,cn,dn,d(l.pval053)) p53,
387: decode(l.pval054,cn,vn,l.pval054) p54,
388: decode(l.pval055,cn,vn,l.pval055) p55
389: from hr_pump_batch_lines l
390: where l.batch_line_id = p_batch_line_id;
391: --
392: c cr%rowtype;
393: l_validate boolean := false;

Line 403: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');

399: open cr;
400: fetch cr into c;
401: if cr%notfound then
402: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
403: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
404: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
405: hr_utility.set_message_token('VALUE',p_batch_line_id);
406: hr_utility.raise_error;
407: end if;

Line 490: update hr_pump_batch_lines l set

486: ,P_DATETRACK_MODE => c.p54);
487: hr_data_pump.api_trc_off;
488:
489: --
490: update hr_pump_batch_lines l set
491: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),
492: l.pval002 = decode(c.p2,null,cn,dc(c.p2))
493: where l.rowid = c.myrowid;
494: --