DBA Data[Home] [Help]

APPS.IGI_IAC_YTD_PRE_PROCESS_PKG dependencies on FND_FILE

Line 125: fnd_file.put_line(fnd_file.log, 'Start of processing for book :'||p_book_type_code);

121: BEGIN
122: SAVEPOINT iac_pre_process;
123: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'************************************');
124: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,'Start of processing for book :'||p_book_type_code);
125: fnd_file.put_line(fnd_file.log, 'Start of processing for book :'||p_book_type_code);
126: IF NOT igi_gen.is_req_installed('IAC') THEN
127: fnd_message.set_name('IGI','IGI_GEN_PROD_NOT_INSTALLED');
128: lv_mesg := fnd_message.get;
129: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' ********** ');

Line 133: fnd_file.put_line(FND_FILE.log, lv_mesg);

129: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' ********** ');
130: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,lv_mesg);
131: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' ********** ');
132: retcode := 2;
133: fnd_file.put_line(FND_FILE.log, lv_mesg);
134: errbuf := lv_mesg;
135: RETURN;
136: END IF;
137:

Line 167: fnd_file.put_line(fnd_file.log, 'Processing assets');

163: CLOSE c_get_iac_fa_deprn_rec;
164: END IF;
165: END IF;
166:
167: fnd_file.put_line(fnd_file.log, 'Processing assets');
168:
169: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' Processing the assets');
170: FOR l_asset IN c_get_all_iac_assets LOOP
171: fnd_file.put_line(fnd_file.log, 'Asset_id ' || l_asset.asset_id );

Line 171: fnd_file.put_line(fnd_file.log, 'Asset_id ' || l_asset.asset_id );

167: fnd_file.put_line(fnd_file.log, 'Processing assets');
168:
169: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' Processing the assets');
170: FOR l_asset IN c_get_all_iac_assets LOOP
171: fnd_file.put_line(fnd_file.log, 'Asset_id ' || l_asset.asset_id );
172:
173: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' Asset_id :'||l_asset.asset_id);
174: l_Transaction_Type_Code := NULL;
175: l_Transaction_Id := NULL;

Line 205: fnd_file.put_line(fnd_file.log, 'distribution_id: ' || l_dist.distribution_id );

201: CLOSE c_fully_reserved;
202:
203: FOR l_dist IN c_get_dists(l_asset.asset_id,l_adjustment_id) LOOP
204: igi_iac_debug_pkg.debug_other_string(g_state_level,l_path,' Distribution Id :'||l_dist.distribution_id);
205: fnd_file.put_line(fnd_file.log, 'distribution_id: ' || l_dist.distribution_id );
206:
207: l_deprn_ytd := 0;
208: OPEN c_get_dist_ytd(p_book_type_code,l_asset.asset_id,l_dist.distribution_id);
209: FETCH c_get_dist_ytd INTO l_deprn_ytd;