DBA Data[Home] [Help]

APPS.HRDPP_CREATE_COMPANY_COST_CENT dependencies on HR_PUMP_BATCH_LINES

Line 92: delete from hr_pump_batch_lines where batch_line_id = blid;

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

Line 96: insert into hr_pump_batch_lines

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

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

109: ,pval010
110: ,pval011)
111: values
112: (p_batch_id
113: ,nvl(blid,hr_pump_batch_lines_s.nextval)
114: ,p_data_pump_business_grp_name
115: ,2209
116: ,'U'
117: ,p_user_sequence

Line 148: from hr_pump_batch_lines l

144: decode(l.pval010,cn,vn,vn,vn,l.pval010) p10,
145: l.pval010 d10,
146: decode(l.pval011,cn,vn,vn,vn,l.pval011) p11,
147: l.pval011 d11
148: from hr_pump_batch_lines l
149: where l.batch_line_id = p_batch_line_id;
150: --
151: c cr%rowtype;
152: l_validate boolean := false;

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

159: open cr;
160: fetch cr into c;
161: if cr%notfound then
162: hr_utility.set_message(800,'HR_50326_DP_NO_ROW');
163: hr_utility.set_message_token('TABLE','HR_PUMP_BATCH_LINES');
164: hr_utility.set_message_token('COLUMN','P_BATCH_LINE_ID');
165: hr_utility.set_message_token('VALUE',p_batch_line_id);
166: hr_utility.raise_error;
167: end if;

Line 214: update hr_pump_batch_lines l set

210: ,P_OBJECT_VERSION_NUMBER => c.p7);
211: hr_data_pump.api_trc_off;
212:
213: --
214: update hr_pump_batch_lines l set
215: l.pval004 = decode(c.p4,null,cn,c.p4),
216: l.pval005 = decode(c.p5,null,cn,c.p5),
217: l.pval006 = decode(c.p6,null,cn,c.p6),
218: l.pval007 = decode(c.p7,null,cn,c.p7)