DBA Data[Home] [Help]

APPS.HRDPP_CREATE_RATING_LEVEL dependencies on HR_PUMP_BATCH_LINES

Line 113: delete from hr_pump_batch_lines where batch_line_id = blid;

109: ,P_COMPETENCE_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: ,pval030
152: ,pval031)
153: values
154: (p_batch_id
155: ,nvl(blid,hr_pump_batch_lines_s.nextval)
156: ,p_data_pump_business_grp_name
157: ,1307
158: ,'U'
159: ,p_user_sequence

Line 252: from hr_pump_batch_lines l

248: decode(l.pval030,cn,vn,vn,vn,l.pval030) p30,
249: l.pval030 d30,
250: decode(l.pval031,cn,vn,vn,vn,l.pval031) p31,
251: l.pval031 d31
252: from hr_pump_batch_lines l
253: where l.batch_line_id = p_batch_line_id;
254: --
255: c cr%rowtype;
256: 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 322: update hr_pump_batch_lines l set

318: ,P_OBJ_VER_NUMBER_CPN_OR_RSC => c.p29);
319: hr_data_pump.api_trc_off;
320:
321: --
322: update hr_pump_batch_lines l set
323: l.pval027 = decode(c.p27,null,cn,c.p27),
324: l.pval028 = decode(c.p28,null,cn,c.p28),
325: l.pval029 = decode(c.p29,null,cn,c.p29)
326: where l.rowid = c.myrowid;