DBA Data[Home] [Help]

APPS.HRDPP_CREATE_LIFE_EVENT_REASON dependencies on HR_PUMP_BATCH_LINES

Line 137: delete from hr_pump_batch_lines where batch_line_id = blid;

133: ,P_EFFECTIVE_DATE in date) is
134: blid number := p_data_pump_batch_line_id;
135: begin
136: if blid is not null then
137: delete from hr_pump_batch_lines where batch_line_id = blid;
138: delete from hr_pump_batch_exceptions
139: where source_type = 'BATCH_LINE' and source_id = blid;
140: end if;
141: insert into hr_pump_batch_lines

Line 141: insert into hr_pump_batch_lines

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

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

199: ,pval054
200: ,pval056)
201: values
202: (p_batch_id
203: ,nvl(blid,hr_pump_batch_lines_s.nextval)
204: ,p_data_pump_business_grp_name
205: ,474
206: ,'U'
207: ,p_user_sequence

Line 386: from hr_pump_batch_lines l

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

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

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

Line 467: update hr_pump_batch_lines l set

463: ,P_EFFECTIVE_DATE => c.p56);
464: hr_data_pump.api_trc_off;
465:
466: --
467: update hr_pump_batch_lines l set
468: l.pval001 = decode(c.p1,null,cn,c.p1),
469: l.pval002 = decode(c.p2,null,cn,dc(c.p2)),
470: l.pval003 = decode(c.p3,null,cn,dc(c.p3)),
471: l.pval055 = decode(c.p55,null,cn,c.p55)