DBA Data[Home] [Help]

APPS.HRDPP_CREATE_ORGANIZATION_STRU dependencies on HR_PUMP_BATCH_LINES

Line 113: delete from hr_pump_batch_lines where batch_line_id = blid;

109: ,P_ORG_STRUCTURE_USER_KEY in varchar2) 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: ,pval027
152: ,pval028)
153: values
154: (p_batch_id
155: ,nvl(blid,hr_pump_batch_lines_s.nextval)
156: ,p_data_pump_business_grp_name
157: ,2251
158: ,'U'
159: ,p_user_sequence

Line 251: from hr_pump_batch_lines l

247: decode(l.pval027,cn,vn,vn,vn,l.pval027) p27,
248: l.pval027 d27,
249: l.pval028 p28,
250: l.pval029 p29
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 267: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');

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

Line 322: update hr_pump_batch_lines l set

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