DBA Data[Home] [Help]

APPS.AS_SALES_LEAD_AGING_CONC_PUB dependencies on FND_FILE

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

17: -- chop the message to 255 long
18: l_length := length(p_msg);
19: WHILE l_length > 255 LOOP
20: l_substring := substr(p_msg, l_start, 255);
21: FND_FILE.PUT_LINE(FND_FILE.LOG, l_substring);
22: l_start := l_start + 255;
23: l_length := l_length - 255;
24: END LOOP;
25: l_substring := substr(p_msg, l_start);

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

22: l_start := l_start + 255;
23: l_length := l_length - 255;
24: END LOOP;
25: l_substring := substr(p_msg, l_start);
26: FND_FILE.PUT_LINE(FND_FILE.LOG,l_substring);
27: END IF;
28:
29: EXCEPTION
30: WHEN others THEN