DBA Data[Home] [Help]

APPS.HRDPP_CREATE_PAYROLL_RUN dependencies on HR_PUMP_BATCH_LINES

Line 123: delete from hr_pump_batch_lines where batch_line_id = blid;

119: ,P_PAYROLL_NAME in varchar2) 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 175: ,nvl(blid,hr_pump_batch_lines_s.nextval)

171: ,pval037
172: ,pval039)
173: values
174: (p_batch_id
175: ,nvl(blid,hr_pump_batch_lines_s.nextval)
176: ,p_data_pump_business_grp_name
177: ,1628
178: ,'U'
179: ,p_user_sequence

Line 299: from hr_pump_batch_lines l

295: l.pval036 d36,
296: l.pval037 p37,
297: l.pval038 p38,
298: decode(l.pval039,cn,vn,l.pval039) p39
299: from hr_pump_batch_lines l
300: where l.batch_line_id = p_batch_line_id;
301: --
302: c cr%rowtype;
303: l_validate boolean := false;

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

309: open cr;
310: fetch cr into c;
311: if cr%notfound then
312: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
313: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
314: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
315: hr_utility.set_message_token('VALUE',p_batch_line_id);
316: hr_utility.raise_error;
317: end if;

Line 377: update hr_pump_batch_lines l set

373: hr_data_pump.api_trc_off;
374: --
375: iuk(p_batch_line_id,c.p37,L_PAYROLL_RUN_ID);
376: --
377: update hr_pump_batch_lines l set
378: l.pval037 = decode(c.p37,null,cn,c.p37),
379: l.pval038 = decode(c.p38,null,cn,c.p38)
380: where l.rowid = c.myrowid;
381: --