DBA Data[Home] [Help]

APPS.PER_EMPDIR_SS dependencies on FND_FILE

Line 28: FND_FILE.put(p_fpt, p_msg);

24: l_debug BOOLEAN := FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
25:
26: BEGIN
27: -- p_fpt (1,2)?(log : output)
28: FND_FILE.put(p_fpt, p_msg);
29: FND_FILE.NEW_LINE(p_fpt, 1);
30: -- If p_fpt == 2 and debug flag then also write to log file
31: IF p_fpt = 2 AND l_debug THEN
32: FND_FILE.put(1, p_msg);

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

25:
26: BEGIN
27: -- p_fpt (1,2)?(log : output)
28: FND_FILE.put(p_fpt, p_msg);
29: FND_FILE.NEW_LINE(p_fpt, 1);
30: -- If p_fpt == 2 and debug flag then also write to log file
31: IF p_fpt = 2 AND l_debug THEN
32: FND_FILE.put(1, p_msg);
33: FND_FILE.NEW_LINE(1, 1);

Line 32: FND_FILE.put(1, p_msg);

28: FND_FILE.put(p_fpt, p_msg);
29: FND_FILE.NEW_LINE(p_fpt, 1);
30: -- If p_fpt == 2 and debug flag then also write to log file
31: IF p_fpt = 2 AND l_debug THEN
32: FND_FILE.put(1, p_msg);
33: FND_FILE.NEW_LINE(1, 1);
34: END IF;
35: --dbms_output.put_line(p_msg);
36: EXCEPTION

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

29: FND_FILE.NEW_LINE(p_fpt, 1);
30: -- If p_fpt == 2 and debug flag then also write to log file
31: IF p_fpt = 2 AND l_debug THEN
32: FND_FILE.put(1, p_msg);
33: FND_FILE.NEW_LINE(1, 1);
34: END IF;
35: --dbms_output.put_line(p_msg);
36: EXCEPTION
37: WHEN OTHERS THEN