DBA Data[Home] [Help]

APPS.HRDPP_CREATE_AU_PERSONAL_PAY_M dependencies on HR_PUMP_BATCH_LINES

Line 121: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 125: insert into hr_pump_batch_lines

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

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

167: ,pval040
168: ,pval041)
169: values
170: (p_batch_id
171: ,nvl(blid,hr_pump_batch_lines_s.nextval)
172: ,p_data_pump_business_grp_name
173: ,2163
174: ,'U'
175: ,p_user_sequence

Line 290: from hr_pump_batch_lines l

286: decode(l.pval040,cn,vn,vn,vn,l.pval040) p40,
287: l.pval040 d40,
288: decode(l.pval041,cn,vn,vn,vn,l.pval041) p41,
289: l.pval041 d41
290: from hr_pump_batch_lines l
291: where l.batch_line_id = p_batch_line_id;
292: --
293: c cr%rowtype;
294: l_validate boolean := false;

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

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

Line 384: update hr_pump_batch_lines l set

380: hr_data_pump.api_trc_off;
381: --
382: iuk(p_batch_line_id,c.p31,L_PERSONAL_PAYMENT_METHOD_ID);
383: --
384: update hr_pump_batch_lines l set
385: l.pval031 = decode(c.p31,null,cn,c.p31),
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)),