DBA Data[Home] [Help]

APPS.HRDPP_CREATE_COUNTY_TAX_RULE dependencies on HR_PUMP_BATCH_LINES

Line 163: delete from hr_pump_batch_lines where batch_line_id = blid;

159: ,P_CNT_INFORMATION30 in varchar2 default null) is
160: blid number := p_data_pump_batch_line_id;
161: begin
162: if blid is not null then
163: delete from hr_pump_batch_lines where batch_line_id = blid;
164: delete from hr_pump_batch_exceptions
165: where source_type = 'BATCH_LINE' and source_id = blid;
166: end if;
167: insert into hr_pump_batch_lines

Line 167: insert into hr_pump_batch_lines

163: delete from hr_pump_batch_lines where batch_line_id = blid;
164: delete from hr_pump_batch_exceptions
165: where source_type = 'BATCH_LINE' and source_id = blid;
166: end if;
167: insert into hr_pump_batch_lines
168: (batch_id
169: ,batch_line_id
170: ,business_group_name
171: ,api_module_id

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

251: ,pval080
252: ,pval081)
253: values
254: (p_batch_id
255: ,nvl(blid,hr_pump_batch_lines_s.nextval)
256: ,p_data_pump_business_grp_name
257: ,1702
258: ,'U'
259: ,p_user_sequence

Line 498: from hr_pump_batch_lines l

494: decode(l.pval080,cn,vn,vn,vn,l.pval080) p80,
495: l.pval080 d80,
496: decode(l.pval081,cn,vn,vn,vn,l.pval081) p81,
497: l.pval081 d81
498: from hr_pump_batch_lines l
499: where l.batch_line_id = p_batch_line_id;
500: --
501: c cr%rowtype;
502: l_validate boolean := false;

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

507: open cr;
508: fetch cr into c;
509: if cr%notfound then
510: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
511: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
512: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
513: hr_utility.set_message_token('VALUE',p_batch_line_id);
514: hr_utility.raise_error;
515: end if;

Line 605: update hr_pump_batch_lines l set

601: hr_data_pump.api_trc_off;
602: --
603: iuk(p_batch_line_id,c.p1,L_EMP_COUNTY_TAX_RULE_ID);
604: --
605: update hr_pump_batch_lines l set
606: l.pval001 = decode(c.p1,null,cn,c.p1),
607: l.pval002 = decode(c.p2,null,cn,dc(c.p2)),
608: l.pval003 = decode(c.p3,null,cn,dc(c.p3)),
609: l.pval018 = decode(c.p18,null,cn,c.p18)