DBA Data[Home] [Help]

APPS.IGS_PS_UNIT_LGCY_PVT dependencies on FND_LOG

Line 34: sommukhe 27-SEP-2005 BUG #4632652.FND logging included.

30:
31: Change History
32:
33: Who When What
34: sommukhe 27-SEP-2005 BUG #4632652.FND logging included.
35: smvk 07-Nov-2003 Bug # 3138353. Added the call to validate_unit_dtls, which does unit level cross
36: subprocesses validation.
37: jbegum 02-june-2003 Bug # 2972950. Added the call to unit section occcurrence instructor sub process
38: As Mentioned in TD.

Line 46: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN

42: l_rec_status VARCHAR2(1) :='S';
43: l_record_exists BOOLEAN := FALSE;
44: BEGIN
45:
46: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
47: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.start_logging_for',
48: 'Data import from external Sysytem to OSS -LEGACY ');
49: END IF;
50:

Line 47: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.start_logging_for',

43: l_record_exists BOOLEAN := FALSE;
44: BEGIN
45:
46: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
47: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.start_logging_for',
48: 'Data import from external Sysytem to OSS -LEGACY ');
49: END IF;
50:
51: --Standard start of API savepoint

Line 194: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN

190: --Standard call to get message count and if count is 1, get message info.
191: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count,
192: p_data => x_msg_data);
193:
194: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
195: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.end_of_logging_for',
196: 'Data import from external Sysytem to OSS -LEGACY ');
197: END IF;
198:

Line 195: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.end_of_logging_for',

191: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count,
192: p_data => x_msg_data);
193:
194: IF (fnd_log.level_procedure >= fnd_log.g_current_runtime_level) THEN
195: fnd_log.string( fnd_log.level_procedure, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.end_of_logging_for',
196: 'Data import from external Sysytem to OSS -LEGACY ');
197: END IF;
198:
199:

Line 223: IF (fnd_log.level_exception >= fnd_log.g_current_runtime_level) THEN

219: l_api_name);
220: END IF;
221: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
222: p_data => x_msg_data );
223: IF (fnd_log.level_exception >= fnd_log.g_current_runtime_level) THEN
224: fnd_log.string( fnd_log.level_exception, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.in_exception_section_OTHERS.err_msg',
225: SUBSTRB(SQLERRM,1,4000));
226: END IF;
227:

Line 224: fnd_log.string( fnd_log.level_exception, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.in_exception_section_OTHERS.err_msg',

220: END IF;
221: FND_MSG_PUB.Count_And_Get( p_count => x_msg_count ,
222: p_data => x_msg_data );
223: IF (fnd_log.level_exception >= fnd_log.g_current_runtime_level) THEN
224: fnd_log.string( fnd_log.level_exception, 'igs.plsql.igs_ps_unit_lgcy_pvt.create_unit.in_exception_section_OTHERS.err_msg',
225: SUBSTRB(SQLERRM,1,4000));
226: END IF;
227:
228: END create_unit;