DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_AU_PERSONAL_PAY_M dependencies on HR_PUMP_BATCH_LINES

Line 123: delete from hr_pump_batch_lines where batch_line_id = blid;

119: ,P_LANGUAGE_CODE in varchar2 default null) is
120: blid number := p_data_pump_batch_line_id;
121: begin
122: if blid is not null then
123: delete from hr_pump_batch_lines where batch_line_id = blid;
124: delete from hr_pump_batch_exceptions
125: where source_type = 'BATCH_LINE' and source_id = blid;
126: end if;
127: insert into hr_pump_batch_lines

Line 127: insert into hr_pump_batch_lines

123: delete from hr_pump_batch_lines where batch_line_id = blid;
124: delete from hr_pump_batch_exceptions
125: where source_type = 'BATCH_LINE' and source_id = blid;
126: end if;
127: insert into hr_pump_batch_lines
128: (batch_id
129: ,batch_line_id
130: ,business_group_name
131: ,api_module_id

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

168: ,pval038
169: ,pval039)
170: values
171: (p_batch_id
172: ,nvl(blid,hr_pump_batch_lines_s.nextval)
173: ,p_data_pump_business_grp_name
174: ,2164
175: ,'U'
176: ,p_user_sequence

Line 292: from hr_pump_batch_lines l

288: decode(l.pval038,cn,vn,vn,vn,l.pval038) p38,
289: l.pval038 d38,
290: decode(l.pval039,cn,vn,vn,vh,l.pval039) p39,
291: l.pval039 d39
292: from hr_pump_batch_lines l
293: where l.batch_line_id = p_batch_line_id;
294: --
295: c cr%rowtype;
296: l_validate boolean := false;

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

303: open cr;
304: fetch cr into c;
305: if cr%notfound then
306: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
307: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
308: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
309: hr_utility.set_message_token('VALUE',p_batch_line_id);
310: hr_utility.raise_error;
311: end if;

Line 385: update hr_pump_batch_lines l set

381: ,P_EFFECTIVE_END_DATE => c.p35);
382: hr_data_pump.api_trc_off;
383:
384: --
385: update hr_pump_batch_lines l set
386: l.pval032 = decode(c.p32,null,cn,c.p32),
387: l.pval033 = decode(c.p33,null,cn,c.p33),
388: l.pval034 = decode(c.p34,null,cn,dc(c.p34)),
389: l.pval035 = decode(c.p35,null,cn,dc(c.p35))