DBA Data[Home] [Help]

APPS.HRDPP_UPDATE_CA_EMP_PRVTAX_INF dependencies on HR_PUMP_BATCH_LINES

Line 160: delete from hr_pump_batch_lines where batch_line_id = blid;

156: ,P_EMP_PROV_TAX_INF_USER_KEY in varchar2) is
157: blid number := p_data_pump_batch_line_id;
158: begin
159: if blid is not null then
160: delete from hr_pump_batch_lines where batch_line_id = blid;
161: delete from hr_pump_batch_exceptions
162: where source_type = 'BATCH_LINE' and source_id = blid;
163: end if;
164: insert into hr_pump_batch_lines

Line 164: insert into hr_pump_batch_lines

160: delete from hr_pump_batch_lines where batch_line_id = blid;
161: delete from hr_pump_batch_exceptions
162: where source_type = 'BATCH_LINE' and source_id = blid;
163: end if;
164: insert into hr_pump_batch_lines
165: (batch_id
166: ,batch_line_id
167: ,business_group_name
168: ,api_module_id

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

232: ,pval063
233: ,pval064)
234: values
235: (p_batch_id
236: ,nvl(blid,hr_pump_batch_lines_s.nextval)
237: ,p_data_pump_business_grp_name
238: ,1160
239: ,'U'
240: ,p_user_sequence

Line 441: from hr_pump_batch_lines l

437: decode(l.pval062,cn,vn,l.pval062) p62,
438: decode(l.pval063,cn,vn,vn,vh,l.pval063) p63,
439: l.pval063 d63,
440: decode(l.pval064,cn,vn,l.pval064) p64
441: from hr_pump_batch_lines l
442: where l.batch_line_id = p_batch_line_id;
443: --
444: c cr%rowtype;
445: l_validate boolean := false;

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

451: open cr;
452: fetch cr into c;
453: if cr%notfound then
454: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
455: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
456: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
457: hr_utility.set_message_token('VALUE',p_batch_line_id);
458: hr_utility.raise_error;
459: end if;

Line 551: update hr_pump_batch_lines l set

547: ,P_PPIP_EXEMPT_FLAG => c.p63);
548: hr_data_pump.api_trc_off;
549:
550: --
551: update hr_pump_batch_lines l set
552: l.pval001 = decode(c.p1,null,cn,dc(c.p1)),
553: l.pval002 = decode(c.p2,null,cn,dc(c.p2))
554: where l.rowid = c.myrowid;
555: --