DBA Data[Home] [Help]

APPS.PER_RI_PRE_DATAPUMP dependencies on FND_FILE

Line 133: fnd_file.put_line

129: hr_utility.set_location ('Entering '||l_package,10);
130: savepoint pre_datapump_process;
131: --
132: --
133: fnd_file.put_line
134: (which => fnd_file.log,
135: buff => 'Before Pre Process call ');
136: --
137: FOR l_rec in c_api LOOP

Line 134: (which => fnd_file.log,

130: savepoint pre_datapump_process;
131: --
132: --
133: fnd_file.put_line
134: (which => fnd_file.log,
135: buff => 'Before Pre Process call ');
136: --
137: FOR l_rec in c_api LOOP
138: --

Line 139: fnd_file.put_line

135: buff => 'Before Pre Process call ');
136: --
137: FOR l_rec in c_api LOOP
138: --
139: fnd_file.put_line
140: (which => fnd_file.log,
141: buff => 'module_name :'||l_rec.module_name );
142: --
143: IF l_rec.module_name = 'CREATE_ENROLLMENT' THEN

Line 140: (which => fnd_file.log,

136: --
137: FOR l_rec in c_api LOOP
138: --
139: fnd_file.put_line
140: (which => fnd_file.log,
141: buff => 'module_name :'||l_rec.module_name );
142: --
143: IF l_rec.module_name = 'CREATE_ENROLLMENT' THEN
144: --

Line 166: fnd_file.put_line

162: );
163: --
164: END IF;
165: --
166: fnd_file.put_line
167: (which => fnd_file.log,
168: buff => 'After Call - module_name :'||l_rec.module_name );
169: --
170: END LOOP;

Line 167: (which => fnd_file.log,

163: --
164: END IF;
165: --
166: fnd_file.put_line
167: (which => fnd_file.log,
168: buff => 'After Call - module_name :'||l_rec.module_name );
169: --
170: END LOOP;
171: --

Line 176: fnd_file.put_line

172: -- Now lets call Data pump Process
173: --
174: hr_utility.set_location ('Before Submit Request '||l_package,20);
175: --
176: fnd_file.put_line
177: (which => fnd_file.log,
178: buff => 'Before Datapump Call');
179: --
180: l_request_id := fnd_request.submit_request

Line 177: (which => fnd_file.log,

173: --
174: hr_utility.set_location ('Before Submit Request '||l_package,20);
175: --
176: fnd_file.put_line
177: (which => fnd_file.log,
178: buff => 'Before Datapump Call');
179: --
180: l_request_id := fnd_request.submit_request
181: (application => 'PER'

Line 192: fnd_file.put_line

188: hr_utility.set_location ('After Submit Request '||l_package,30);
189: --
190: commit;
191: --
192: fnd_file.put_line
193: (which => fnd_file.log,
194: buff => 'After Datapump Call');
195: --
196: check_slaves_status(p_request_id => l_request_id

Line 193: (which => fnd_file.log,

189: --
190: commit;
191: --
192: fnd_file.put_line
193: (which => fnd_file.log,
194: buff => 'After Datapump Call');
195: --
196: check_slaves_status(p_request_id => l_request_id
197: ,p_slave_errored => l_slave_errored);

Line 201: fnd_file.put_line

197: ,p_slave_errored => l_slave_errored);
198: --
199: if l_slave_errored then
200: --
201: fnd_file.put_line
202: (which => fnd_file.log,
203: buff => 'Datapump Request '||l_request_id||' completed with error.');
204: fnd_file.put_line
205: (which => fnd_file.log,

Line 202: (which => fnd_file.log,

198: --
199: if l_slave_errored then
200: --
201: fnd_file.put_line
202: (which => fnd_file.log,
203: buff => 'Datapump Request '||l_request_id||' completed with error.');
204: fnd_file.put_line
205: (which => fnd_file.log,
206: buff => 'Check the request log for error details.');

Line 204: fnd_file.put_line

200: --
201: fnd_file.put_line
202: (which => fnd_file.log,
203: buff => 'Datapump Request '||l_request_id||' completed with error.');
204: fnd_file.put_line
205: (which => fnd_file.log,
206: buff => 'Check the request log for error details.');
207: --
208: else

Line 205: (which => fnd_file.log,

201: fnd_file.put_line
202: (which => fnd_file.log,
203: buff => 'Datapump Request '||l_request_id||' completed with error.');
204: fnd_file.put_line
205: (which => fnd_file.log,
206: buff => 'Check the request log for error details.');
207: --
208: else
209: --

Line 210: fnd_file.put_line

206: buff => 'Check the request log for error details.');
207: --
208: else
209: --
210: fnd_file.put_line
211: (which => fnd_file.log,
212: buff => 'Datapump Request '||l_request_id||' completed successfully.');
213: --
214: end if;

Line 211: (which => fnd_file.log,

207: --
208: else
209: --
210: fnd_file.put_line
211: (which => fnd_file.log,
212: buff => 'Datapump Request '||l_request_id||' completed successfully.');
213: --
214: end if;
215: --