DBA Data[Home] [Help]

APPS.JTF_TAE_GEN_PVT dependencies on FND_FILE

Line 111: FND_FILE.put(which, mssg);

107: IS
108: BEGIN
109: --
110: --dbms_output.put_line(' LOG: ' || mssg );
111: FND_FILE.put(which, mssg);
112: FND_FILE.NEW_LINE(which, 1);
113: --
114: -- If the output message and if debug flag is set then also write
115: -- to the log file

Line 112: FND_FILE.NEW_LINE(which, 1);

108: BEGIN
109: --
110: --dbms_output.put_line(' LOG: ' || mssg );
111: FND_FILE.put(which, mssg);
112: FND_FILE.NEW_LINE(which, 1);
113: --
114: -- If the output message and if debug flag is set then also write
115: -- to the log file
116: --

Line 119: FND_FILE.put(1, mssg);

115: -- to the log file
116: --
117: IF Which = 2 THEN
118: IF G_Debug THEN
119: FND_FILE.put(1, mssg);
120: FND_FILE.NEW_LINE(1, 1);
121: END IF;
122: END IF;
123: --

Line 120: FND_FILE.NEW_LINE(1, 1);

116: --
117: IF Which = 2 THEN
118: IF G_Debug THEN
119: FND_FILE.put(1, mssg);
120: FND_FILE.NEW_LINE(1, 1);
121: END IF;
122: END IF;
123: --
124: END Write_Log;