DBA Data[Home] [Help]

APPS.HRDPP_CREATE_CITY_TAX_RULE dependencies on HR_PUMP_BATCH_LINES

Line 163: delete from hr_pump_batch_lines where batch_line_id = blid;

159: ,P_CTY_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: ,1700
258: ,'U'
259: ,p_user_sequence

Line 507: from hr_pump_batch_lines l

503: decode(l.pval080,cn,vn,vn,vn,l.pval080) p80,
504: l.pval080 d80,
505: decode(l.pval081,cn,vn,vn,vn,l.pval081) p81,
506: l.pval081 d81
507: from hr_pump_batch_lines l
508: where l.batch_line_id = p_batch_line_id;
509: --
510: c cr%rowtype;
511: l_validate boolean := false;

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

516: open cr;
517: fetch cr into c;
518: if cr%notfound then
519: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
520: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
521: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
522: hr_utility.set_message_token('VALUE',p_batch_line_id);
523: hr_utility.raise_error;
524: end if;

Line 614: update hr_pump_batch_lines l set

610: hr_data_pump.api_trc_off;
611: --
612: iuk(p_batch_line_id,c.p1,L_EMP_CITY_TAX_RULE_ID);
613: --
614: update hr_pump_batch_lines l set
615: l.pval001 = decode(c.p1,null,cn,c.p1),
616: l.pval002 = decode(c.p2,null,cn,dc(c.p2)),
617: l.pval003 = decode(c.p3,null,cn,dc(c.p3)),
618: l.pval018 = decode(c.p18,null,cn,c.p18)