DBA Data[Home] [Help]

APPS.IGS_UC_MV_IMP_INST dependencies on FND_FILE

Line 82: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');

78:
79: --anwest 18-JAN-2006 Bug# 4950285 R12 Disable OSS Mandate
80: IGS_GE_GEN_003.SET_ORG_ID;
81:
82: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');
83: retcode := 0;
84:
85: -- Check If profile Country Code is set to GB. If not, then close form.
86: IF NOT igs_uc_utils.is_ucas_hesa_enabled THEN

Line 88: fnd_file.put_line( fnd_file.log, fnd_message.get());

84:
85: -- Check If profile Country Code is set to GB. If not, then close form.
86: IF NOT igs_uc_utils.is_ucas_hesa_enabled THEN
87: fnd_message.set_name('IGS','IGS_UC_HE_NOT_ENABLED');
88: fnd_file.put_line( fnd_file.log, fnd_message.get());
89: retcode := 2;
90: RETURN;
91: END IF;
92:

Line 124: fnd_file.put_line( fnd_file.log, fnd_message.get());

120:
121: fnd_message.set_name('IGS', 'IGS_UC_MV_INST_IMP');
122: fnd_message.set_token('IMPORT', 'INSERTING ');
123: fnd_message.set_token('INST', inst_int_rec.inst);
124: fnd_file.put_line( fnd_file.log, fnd_message.get());
125:
126: --Call the TBH of the Reference codes table to insert a new Degree Subject.
127: igs_uc_com_inst_pkg.Insert_Row (
128: x_rowid => l_rowid,

Line 164: fnd_file.put_line( fnd_file.log, fnd_message.get());

160:
161: fnd_message.set_name('IGS', 'IGS_UC_MV_INST_IMP');
162: fnd_message.set_token('IMPORT', 'UPDATING ');
163: fnd_message.set_token('INST', instcodes_rec.inst);
164: fnd_file.put_line( fnd_file.log, fnd_message.get());
165:
166: --Call the TBH of the Reference codes table to update a new Degree Subject.
167: igs_uc_com_inst_pkg.Update_Row (
168: x_rowid => l_rowid,

Line 190: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');

186:
187: END LOOP;
188:
189: -- Print Number of records successfully transferred
190: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');
191: FND_MESSAGE.SET_NAME('IGS', 'IGS_UC_MV_LOAD_SUCCESS');
192: FND_MESSAGE.SET_TOKEN('CNT', l_success_cnt);
193: FND_FILE.PUT_LINE( FND_FILE.LOG, FND_MESSAGE.GET());
194:

Line 193: FND_FILE.PUT_LINE( FND_FILE.LOG, FND_MESSAGE.GET());

189: -- Print Number of records successfully transferred
190: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');
191: FND_MESSAGE.SET_NAME('IGS', 'IGS_UC_MV_LOAD_SUCCESS');
192: FND_MESSAGE.SET_TOKEN('CNT', l_success_cnt);
193: FND_FILE.PUT_LINE( FND_FILE.LOG, FND_MESSAGE.GET());
194:
195: -- commit the data;
196: COMMIT;
197: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');

Line 197: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');

193: FND_FILE.PUT_LINE( FND_FILE.LOG, FND_MESSAGE.GET());
194:
195: -- commit the data;
196: COMMIT;
197: FND_FILE.PUT_LINE( FND_FILE.LOG, ' ');
198:
199: EXCEPTION
200: WHEN app_exception.record_lock_exception THEN
201: ROLLBACK;