DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_BENEFITS_GROUP dependencies on HR_PUMP_BATCH_LINES

Line 119: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 123: insert into hr_pump_batch_lines

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

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

163: ,pval033
164: ,pval034)
165: values
166: (p_batch_id
167: ,nvl(blid,hr_pump_batch_lines_s.nextval)
168: ,p_data_pump_business_grp_name
169: ,104
170: ,'U'
171: ,p_user_sequence

Line 281: from hr_pump_batch_lines l

277: l.pval032 d32,
278: decode(l.pval033,cn,vn,vn,vh,l.pval033) p33,
279: l.pval033 d33,
280: decode(l.pval034,cn,vn,l.pval034) p34
281: from hr_pump_batch_lines l
282: where l.batch_line_id = p_batch_line_id;
283: --
284: c cr%rowtype;
285: l_validate boolean := false;

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

291: open cr;
292: fetch cr into c;
293: if cr%notfound then
294: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
295: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
296: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
297: hr_utility.set_message_token('VALUE',p_batch_line_id);
298: hr_utility.raise_error;
299: end if;