DBA Data[Home] [Help]

APPS.AS_AUTOCREATE_OPP dependencies on FND_FILE

Line 20: FND_FILE.put(p_which, p_mssg);

16: -- p_which = 2, write to output
17: --
18: PROCEDURE Write_Log(p_which number, p_mssg varchar2) IS
19: BEGIN
20: FND_FILE.put(p_which, p_mssg);
21: FND_FILE.NEW_LINE(p_which, 1);
22: END Write_Log;
23:
24:

Line 21: FND_FILE.NEW_LINE(p_which, 1);

17: --
18: PROCEDURE Write_Log(p_which number, p_mssg varchar2) IS
19: BEGIN
20: FND_FILE.put(p_which, p_mssg);
21: FND_FILE.NEW_LINE(p_which, 1);
22: END Write_Log;
23:
24:
25: