DBA Data[Home] [Help]

APPS.PNP_DEBUG_PKG dependencies on FND_FILE

Line 74: Fnd_File.Put_Line ( Fnd_File.Log, status_string );

70: PROCEDURE put_log_msg(status_string VarChar2 )is
71:
72: BEGIN
73:
74: Fnd_File.Put_Line ( Fnd_File.Log, status_string );
75: Fnd_File.Put_Line ( Fnd_File.OutPut, status_string );
76:
77: EXCEPTION
78: When Others Then Raise;

Line 75: Fnd_File.Put_Line ( Fnd_File.OutPut, status_string );

71:
72: BEGIN
73:
74: Fnd_File.Put_Line ( Fnd_File.Log, status_string );
75: Fnd_File.Put_Line ( Fnd_File.OutPut, status_string );
76:
77: EXCEPTION
78: When Others Then Raise;
79:

Line 88: Fnd_File.Put_Line ( Fnd_File.Log, status_string );

84: PROCEDURE log(status_string VarChar2 )is
85:
86: BEGIN
87:
88: Fnd_File.Put_Line ( Fnd_File.Log, status_string );
89:
90: IF (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
91: FND_LOG.STRING(FND_LOG.LEVEL_STATEMENT, 'PN' , status_string );
92: END IF;