DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_CN_PERSONAL_PAY_M dependencies on HR_PUMP_BATCH_LINES

Line 124: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 128: insert into hr_pump_batch_lines

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

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

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

Line 294: from hr_pump_batch_lines l

290: decode(l.pval039,cn,vn,vn,vn,l.pval039) p39,
291: l.pval039 d39,
292: decode(l.pval040,cn,vn,vn,vh,l.pval040) p40,
293: l.pval040 d40
294: from hr_pump_batch_lines l
295: where l.batch_line_id = p_batch_line_id;
296: --
297: c cr%rowtype;
298: l_validate boolean := false;

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

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

Line 388: update hr_pump_batch_lines l set

384: ,P_EFFECTIVE_END_DATE => c.p36);
385: hr_data_pump.api_trc_off;
386:
387: --
388: update hr_pump_batch_lines l set
389: l.pval033 = decode(c.p33,null,cn,c.p33),
390: l.pval034 = decode(c.p34,null,cn,c.p34),
391: l.pval035 = decode(c.p35,null,cn,dc(c.p35)),
392: l.pval036 = decode(c.p36,null,cn,dc(c.p36))