DBA Data[Home] [Help]

APPS.AS_LLOG_SUMMARY_PKG dependencies on FND_FILE

Line 23: FND_FILE.put(p_fpt, p_mssg);

19:
20:
21: IF p_debug_source = G_DEBUG_CONCURRENT THEN
22: -- p_fpt (1,2)?(log : output)
23: FND_FILE.put(p_fpt, p_mssg);
24: FND_FILE.NEW_LINE(p_fpt, 1);
25: -- If p_fpt == 2 and debug flag then also write to log file
26: IF p_fpt = 2 And G_Debug THEN
27: FND_FILE.put(1, p_mssg);

Line 24: FND_FILE.NEW_LINE(p_fpt, 1);

20:
21: IF p_debug_source = G_DEBUG_CONCURRENT THEN
22: -- p_fpt (1,2)?(log : output)
23: FND_FILE.put(p_fpt, p_mssg);
24: FND_FILE.NEW_LINE(p_fpt, 1);
25: -- If p_fpt == 2 and debug flag then also write to log file
26: IF p_fpt = 2 And G_Debug THEN
27: FND_FILE.put(1, p_mssg);
28: FND_FILE.NEW_LINE(1, 1);

Line 27: FND_FILE.put(1, p_mssg);

23: FND_FILE.put(p_fpt, p_mssg);
24: FND_FILE.NEW_LINE(p_fpt, 1);
25: -- If p_fpt == 2 and debug flag then also write to log file
26: IF p_fpt = 2 And G_Debug THEN
27: FND_FILE.put(1, p_mssg);
28: FND_FILE.NEW_LINE(1, 1);
29: END IF;
30: END IF;
31:

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

24: FND_FILE.NEW_LINE(p_fpt, 1);
25: -- If p_fpt == 2 and debug flag then also write to log file
26: IF p_fpt = 2 And G_Debug THEN
27: FND_FILE.put(1, p_mssg);
28: FND_FILE.NEW_LINE(1, 1);
29: END IF;
30: END IF;
31:
32: EXCEPTION