DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_ADI_TAX_CRP dependencies on HR_PUMP_BATCH_LINES

Line 111: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 115: insert into hr_pump_batch_lines

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

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

145: ,pval023
146: ,pval024)
147: values
148: (p_batch_id
149: ,nvl(blid,hr_pump_batch_lines_s.nextval)
150: ,p_data_pump_business_grp_name
151: ,3620
152: ,'U'
153: ,p_user_sequence

Line 226: from hr_pump_batch_lines l

222: hr_pump_get.gl(l.pval021,'AU_TAX_SENIOR',d(l.pval022),vn)) p21,
223: decode(l.pval022,cn,dn,d(l.pval022)) p22,
224: decode(l.pval023,cn,vn,l.pval023) p23,
225: decode(l.pval024,cn,vn,l.pval024) p24
226: from hr_pump_batch_lines l
227: where l.batch_line_id = p_batch_line_id;
228: --
229: c cr%rowtype;
230: l_validate boolean := false;

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

236: open cr;
237: fetch cr into c;
238: if cr%notfound then
239: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
240: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
241: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
242: hr_utility.set_message_token('VALUE',p_batch_line_id);
243: hr_utility.raise_error;
244: end if;