DBA Data[Home] [Help]

APPS.HRDPP_CREATE_CA_EMP_FEDTAX_INF dependencies on HR_PUMP_BATCH_LINES

Line 137: delete from hr_pump_batch_lines where batch_line_id = blid;

133: ,P_EFFECTIVE_DATE in date) is
134: blid number := p_data_pump_batch_line_id;
135: begin
136: if blid is not null then
137: delete from hr_pump_batch_lines where batch_line_id = blid;
138: delete from hr_pump_batch_exceptions
139: where source_type = 'BATCH_LINE' and source_id = blid;
140: end if;
141: insert into hr_pump_batch_lines

Line 141: insert into hr_pump_batch_lines

137: delete from hr_pump_batch_lines where batch_line_id = blid;
138: delete from hr_pump_batch_exceptions
139: where source_type = 'BATCH_LINE' and source_id = blid;
140: end if;
141: insert into hr_pump_batch_lines
142: (batch_id
143: ,batch_line_id
144: ,business_group_name
145: ,api_module_id

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

199: ,pval054
200: ,pval055)
201: values
202: (p_batch_id
203: ,nvl(blid,hr_pump_batch_lines_s.nextval)
204: ,p_data_pump_business_grp_name
205: ,1153
206: ,'U'
207: ,p_user_sequence

Line 376: from hr_pump_batch_lines l

372: l.pval053 p53,
373: decode(l.pval054,cn,nn,vn,nn,n(l.pval054)) p54,
374: l.pval054 d54,
375: decode(l.pval055,cn,dn,d(l.pval055)) p55
376: from hr_pump_batch_lines l
377: where l.batch_line_id = p_batch_line_id;
378: --
379: c cr%rowtype;
380: l_validate boolean := false;

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

385: open cr;
386: fetch cr into c;
387: if cr%notfound then
388: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
389: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
390: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
391: hr_utility.set_message_token('VALUE',p_batch_line_id);
392: hr_utility.raise_error;
393: end if;

Line 458: update hr_pump_batch_lines l set

454: hr_data_pump.api_trc_off;
455: --
456: iuk(p_batch_line_id,c.p1,L_EMP_FED_TAX_INF_ID);
457: --
458: update hr_pump_batch_lines l set
459: l.pval001 = decode(c.p1,null,cn,c.p1),
460: l.pval002 = decode(c.p2,null,cn,dc(c.p2)),
461: l.pval003 = decode(c.p3,null,cn,dc(c.p3)),
462: l.pval053 = decode(c.p53,null,cn,c.p53)