DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_BAL_TYPE dependencies on HR_PUMP_BATCH_LINES

Line 119: delete from hr_pump_batch_lines where batch_line_id = blid;

115: ,P_INPUT_NAME in varchar2 default null) is
116: blid number := p_data_pump_batch_line_id;
117: begin
118: if blid is not null then
119: delete from hr_pump_batch_lines where batch_line_id = blid;
120: delete from hr_pump_batch_exceptions
121: where source_type = 'BATCH_LINE' and source_id = blid;
122: end if;
123: insert into hr_pump_batch_lines

Line 123: insert into hr_pump_batch_lines

119: delete from hr_pump_batch_lines where batch_line_id = blid;
120: delete from hr_pump_batch_exceptions
121: where source_type = 'BATCH_LINE' and source_id = blid;
122: end if;
123: insert into hr_pump_batch_lines
124: (batch_id
125: ,batch_line_id
126: ,business_group_name
127: ,api_module_id

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

163: ,pval034
164: ,pval035)
165: values
166: (p_batch_id
167: ,nvl(blid,hr_pump_batch_lines_s.nextval)
168: ,p_data_pump_business_grp_name
169: ,3584
170: ,'U'
171: ,p_user_sequence

Line 282: from hr_pump_batch_lines l

278: decode(l.pval034,cn,vn,vn,vh,l.pval034) p34,
279: l.pval034 d34,
280: decode(l.pval035,cn,vn,vn,vh,l.pval035) p35,
281: l.pval035 d35
282: from hr_pump_batch_lines l
283: where l.batch_line_id = p_batch_line_id;
284: --
285: c cr%rowtype;
286: l_validate boolean := false;

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

295: open cr;
296: fetch cr into c;
297: if cr%notfound then
298: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
299: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
300: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
301: hr_utility.set_message_token('VALUE',p_batch_line_id);
302: hr_utility.raise_error;
303: end if;

Line 405: update hr_pump_batch_lines l set

401: ,P_BALANCE_NAME_WARNING => c.p30);
402: hr_data_pump.api_trc_off;
403:
404: --
405: update hr_pump_batch_lines l set
406: l.pval030 = decode(c.p30,null,cn,c.p30)
407: where l.rowid = c.myrowid;
408: --
409: close cr;