DBA Data[Home] [Help]

APPS.AS_SC_DENORM dependencies on FND_FILE

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

36: --END IF;
37:
38: IF p_debug_source = G_DEBUG_CONCURRENT THEN
39: -- p_fpt (1,2)?(log : output)
40: FND_FILE.put(p_fpt, p_mssg);
41: FND_FILE.NEW_LINE(p_fpt, 1);
42: -- If p_fpt == 2 and debug flag then also write to log file
43: IF p_fpt = 2 And G_Debug THEN
44: FND_FILE.put(1, p_mssg);

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

37:
38: IF p_debug_source = G_DEBUG_CONCURRENT THEN
39: -- p_fpt (1,2)?(log : output)
40: FND_FILE.put(p_fpt, p_mssg);
41: FND_FILE.NEW_LINE(p_fpt, 1);
42: -- If p_fpt == 2 and debug flag then also write to log file
43: IF p_fpt = 2 And G_Debug THEN
44: FND_FILE.put(1, p_mssg);
45: FND_FILE.NEW_LINE(1, 1);

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

40: FND_FILE.put(p_fpt, p_mssg);
41: FND_FILE.NEW_LINE(p_fpt, 1);
42: -- If p_fpt == 2 and debug flag then also write to log file
43: IF p_fpt = 2 And G_Debug THEN
44: FND_FILE.put(1, p_mssg);
45: FND_FILE.NEW_LINE(1, 1);
46: END IF;
47: END IF;
48:

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

41: FND_FILE.NEW_LINE(p_fpt, 1);
42: -- If p_fpt == 2 and debug flag then also write to log file
43: IF p_fpt = 2 And G_Debug THEN
44: FND_FILE.put(1, p_mssg);
45: FND_FILE.NEW_LINE(1, 1);
46: END IF;
47: END IF;
48:
49: EXCEPTION