DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_HK_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: ,pval039
168: ,pval040)
169: values
170: (p_batch_id
171: ,nvl(blid,hr_pump_batch_lines_s.nextval)
172: ,p_data_pump_business_grp_name
173: ,2180
174: ,'U'
175: ,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,vn,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))