DBA Data[Home] [Help]

APPS.HRDPP_CREATE_PERSON_EXTRA_INFO dependencies on HR_PUMP_BATCH_LINES

Line 140: delete from hr_pump_batch_lines where batch_line_id = blid;

136: ,P_PERSON_USER_KEY in varchar2) is
137: blid number := p_data_pump_batch_line_id;
138: begin
139: if blid is not null then
140: delete from hr_pump_batch_lines where batch_line_id = blid;
141: delete from hr_pump_batch_exceptions
142: where source_type = 'BATCH_LINE' and source_id = blid;
143: end if;
144: insert into hr_pump_batch_lines

Line 144: insert into hr_pump_batch_lines

140: delete from hr_pump_batch_lines where batch_line_id = blid;
141: delete from hr_pump_batch_exceptions
142: where source_type = 'BATCH_LINE' and source_id = blid;
143: end if;
144: insert into hr_pump_batch_lines
145: (batch_id
146: ,batch_line_id
147: ,business_group_name
148: ,api_module_id

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

205: ,pval054
206: ,pval056)
207: values
208: (p_batch_id
209: ,nvl(blid,hr_pump_batch_lines_s.nextval)
210: ,p_data_pump_business_grp_name
211: ,1226
212: ,'U'
213: ,p_user_sequence

Line 385: from hr_pump_batch_lines l

381: l.pval053 d53,
382: l.pval054 p54,
383: l.pval055 p55,
384: decode(l.pval056,cn,vn,l.pval056) p56
385: from hr_pump_batch_lines l
386: where l.batch_line_id = p_batch_line_id;
387: --
388: c cr%rowtype;
389: l_validate boolean := false;

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

395: open cr;
396: fetch cr into c;
397: if cr%notfound then
398: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
399: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
400: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
401: hr_utility.set_message_token('VALUE',p_batch_line_id);
402: hr_utility.raise_error;
403: end if;

Line 476: update hr_pump_batch_lines l set

472: hr_data_pump.api_trc_off;
473: --
474: iuk(p_batch_line_id,c.p54,L_PERSON_EXTRA_INFO_ID);
475: --
476: update hr_pump_batch_lines l set
477: l.pval054 = decode(c.p54,null,cn,c.p54),
478: l.pval055 = decode(c.p55,null,cn,c.p55)
479: where l.rowid = c.myrowid;
480: --