DBA Data[Home] [Help]

APPS.HRDPP_SUSPEND_EMP_ASG dependencies on HR_PUMP_BATCH_LINES

Line 91: delete from hr_pump_batch_lines where batch_line_id = blid;

87: ,P_LANGUAGE_CODE in varchar2 default null) is
88: blid number := p_data_pump_batch_line_id;
89: begin
90: if blid is not null then
91: delete from hr_pump_batch_lines where batch_line_id = blid;
92: delete from hr_pump_batch_exceptions
93: where source_type = 'BATCH_LINE' and source_id = blid;
94: end if;
95: insert into hr_pump_batch_lines

Line 95: insert into hr_pump_batch_lines

91: delete from hr_pump_batch_lines where batch_line_id = blid;
92: delete from hr_pump_batch_exceptions
93: where source_type = 'BATCH_LINE' and source_id = blid;
94: end if;
95: insert into hr_pump_batch_lines
96: (batch_id
97: ,batch_line_id
98: ,business_group_name
99: ,api_module_id

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

107: ,pval007
108: ,pval008)
109: values
110: (p_batch_id
111: ,nvl(blid,hr_pump_batch_lines_s.nextval)
112: ,p_data_pump_business_grp_name
113: ,1191
114: ,'U'
115: ,p_user_sequence

Line 142: from hr_pump_batch_lines l

138: decode(l.pval007,cn,vn,vn,vh,l.pval007) p7,
139: l.pval007 d7,
140: decode(l.pval008,cn,vn,vn,vh,l.pval008) p8,
141: l.pval008 d8
142: from hr_pump_batch_lines l
143: where l.batch_line_id = p_batch_line_id;
144: --
145: c cr%rowtype;
146: l_validate boolean := false;

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

153: open cr;
154: fetch cr into c;
155: if cr%notfound then
156: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
157: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
158: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
159: hr_utility.set_message_token('VALUE',p_batch_line_id);
160: hr_utility.raise_error;
161: end if;

Line 209: update hr_pump_batch_lines l set

205: ,P_EFFECTIVE_END_DATE => c.p5);
206: hr_data_pump.api_trc_off;
207:
208: --
209: update hr_pump_batch_lines l set
210: l.pval004 = decode(c.p4,null,cn,dc(c.p4)),
211: l.pval005 = decode(c.p5,null,cn,dc(c.p5))
212: where l.rowid = c.myrowid;
213: --