DBA Data[Home] [Help]

APPS.HRDPP_CREATE_BENEFITS_GROUP dependencies on HR_PUMP_BATCH_LINES

Line 118: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 122: insert into hr_pump_batch_lines

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

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

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

Line 279: from hr_pump_batch_lines l

275: l.pval033 d33,
276: decode(l.pval034,cn,vn,vn,vn,l.pval034) p34,
277: l.pval034 d34,
278: l.pval035 p35
279: from hr_pump_batch_lines l
280: where l.batch_line_id = p_batch_line_id;
281: --
282: c cr%rowtype;
283: l_validate boolean := false;

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

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

Line 339: update hr_pump_batch_lines l set

335: ,P_OBJECT_VERSION_NUMBER => c.p35);
336: hr_data_pump.api_trc_off;
337:
338: --
339: update hr_pump_batch_lines l set
340: l.pval001 = decode(c.p1,null,cn,c.p1),
341: l.pval035 = decode(c.p35,null,cn,c.p35)
342: where l.rowid = c.myrowid;
343: --