DBA Data[Home] [Help]

APPS.IEX_TERR_WINNERS_PUB dependencies on FND_FILE

Line 73: FND_FILE.PUT_LINE(FND_FILE.LOG,'---' || l_date_str || '--------------------------');

69: BEGIN
70: IF g_debug_flag = 'Y'
71: THEN
72: select to_char( sysdate, 'DD-Mon-YYYY HH24:MI:SS') into l_date_str from dual;
73: FND_FILE.PUT_LINE(FND_FILE.LOG,'---' || l_date_str || '--------------------------');
74:
75: -- Crop the message to length 255 chars
76: l_length := length(msg);
77: WHILE l_length > 255 LOOP

Line 79: FND_FILE.PUT_LINE(FND_FILE.LOG, l_substring);

75: -- Crop the message to length 255 chars
76: l_length := length(msg);
77: WHILE l_length > 255 LOOP
78: l_substring := substr(msg, l_start, 255);
79: FND_FILE.PUT_LINE(FND_FILE.LOG, l_substring);
80: --Bug4221324. Fix by LKKUMAR on 06-Dec-2005. Start.
81: IEX_DEBUG_PUB.logmessage(l_substring);
82: --Bug4221324. Fix by LKKUMAR on 06-Dec-2005. End.
83: -- dbms_output.put_line(l_substring);

Line 89: FND_FILE.PUT_LINE(FND_FILE.LOG,l_substring);

85: l_length := l_length - 255;
86: END LOOP;
87:
88: l_substring := substr(msg, l_start);
89: FND_FILE.PUT_LINE(FND_FILE.LOG,l_substring);
90: --Bug4221324. Fix by LKKUMAR on 06-Dec-2005. Start.
91: IEX_DEBUG_PUB.logmessage(l_substring);
92: --Bug4221324. Fix by LKKUMAR on 06-Dec-2005. End.
93: -- dbms_output.put_line(l_substring);

Line 97: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Exception: others in Print_Debug');

93: -- dbms_output.put_line(l_substring);
94: END IF;
95: EXCEPTION
96: WHEN others THEN
97: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Exception: others in Print_Debug');
98: FND_FILE.PUT_LINE(FND_FILE.LOG,
99: 'SQLCODE ' || to_char(SQLCODE) ||
100: ' SQLERRM ' || substr(SQLERRM, 1, 100));
101: END Print_Debug;

Line 98: FND_FILE.PUT_LINE(FND_FILE.LOG,

94: END IF;
95: EXCEPTION
96: WHEN others THEN
97: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Exception: others in Print_Debug');
98: FND_FILE.PUT_LINE(FND_FILE.LOG,
99: 'SQLCODE ' || to_char(SQLCODE) ||
100: ' SQLERRM ' || substr(SQLERRM, 1, 100));
101: END Print_Debug;
102: