DBA Data[Home] [Help]

APPS.HRDPP_CREATE_VEHICLE dependencies on HR_PUMP_BATCH_LINES

Line 163: delete from hr_pump_batch_lines where batch_line_id = blid;

159: ,P_VRE_INFORMATION20 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: ,pval077
252: ,pval078)
253: values
254: (p_batch_id
255: ,nvl(blid,hr_pump_batch_lines_s.nextval)
256: ,p_data_pump_business_grp_name
257: ,2893
258: ,'U'
259: ,p_user_sequence

Line 507: from hr_pump_batch_lines l

503: l.pval079 p79,
504: l.pval080 p80,
505: decode(l.pval081,cn,dn,d(l.pval081)) p81,
506: decode(l.pval082,cn,dn,d(l.pval082)) p82
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 519: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');

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

Line 614: update hr_pump_batch_lines l set

610: ,P_EFFECTIVE_END_DATE => c.p82);
611: hr_data_pump.api_trc_off;
612:
613: --
614: update hr_pump_batch_lines l set
615: l.pval079 = decode(c.p79,null,cn,c.p79),
616: l.pval080 = decode(c.p80,null,cn,c.p80),
617: l.pval081 = decode(c.p81,null,cn,dc(c.p81)),
618: l.pval082 = decode(c.p82,null,cn,dc(c.p82))