DBA Data[Home] [Help]

APPS.HRDPP_CREATE_VALID_GRADE dependencies on HR_PUMP_BATCH_LINES

Line 113: delete from hr_pump_batch_lines where batch_line_id = blid;

109: ,P_POSITION_NAME in varchar2 default null) is
110: blid number := p_data_pump_batch_line_id;
111: begin
112: if blid is not null then
113: delete from hr_pump_batch_lines where batch_line_id = blid;
114: delete from hr_pump_batch_exceptions
115: where source_type = 'BATCH_LINE' and source_id = blid;
116: end if;
117: insert into hr_pump_batch_lines

Line 117: insert into hr_pump_batch_lines

113: delete from hr_pump_batch_lines where batch_line_id = blid;
114: delete from hr_pump_batch_exceptions
115: where source_type = 'BATCH_LINE' and source_id = blid;
116: end if;
117: insert into hr_pump_batch_lines
118: (batch_id
119: ,batch_line_id
120: ,business_group_name
121: ,api_module_id

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

151: ,pval029
152: ,pval030)
153: values
154: (p_batch_id
155: ,nvl(blid,hr_pump_batch_lines_s.nextval)
156: ,p_data_pump_business_grp_name
157: ,1327
158: ,'U'
159: ,p_user_sequence

Line 251: from hr_pump_batch_lines l

247: decode(l.pval029,cn,vn,vn,vn,l.pval029) p29,
248: l.pval029 d29,
249: decode(l.pval030,cn,vn,vn,vn,l.pval030) p30,
250: l.pval030 d30
251: from hr_pump_batch_lines l
252: where l.batch_line_id = p_batch_line_id;
253: --
254: c cr%rowtype;
255: l_validate boolean := false;

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

262: open cr;
263: fetch cr into c;
264: if cr%notfound then
265: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
266: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
267: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
268: hr_utility.set_message_token('VALUE',p_batch_line_id);
269: hr_utility.raise_error;
270: end if;

Line 341: update hr_pump_batch_lines l set

337: ,P_OBJECT_VERSION_NUMBER => c.p27);
338: hr_data_pump.api_trc_off;
339:
340: --
341: update hr_pump_batch_lines l set
342: l.pval026 = decode(c.p26,null,cn,c.p26),
343: l.pval027 = decode(c.p27,null,cn,c.p27)
344: where l.rowid = c.myrowid;
345: --