DBA Data[Home] [Help]

APPS.MSC_X_USER_EXCEP_GEN dependencies on FND_FILE

Line 213: FND_FILE.PUT_LINE( FND_FILE.LOG, pBUFF);

209: Procedure LOG_MESSAGE( pBUFF IN VARCHAR2)
210: IS
211: BEGIN
212: IF v_request_id > 0 THEN
213: FND_FILE.PUT_LINE( FND_FILE.LOG, pBUFF);
214: ELSE
215: -- dbms_output.put_line(pBUFF);
216: null;
217: END IF;

Line 4078: FND_FILE.PUT_LINE(FND_FILE.LOG,'Launched custom exception '||lName);

4074: FALSE, -- sub request,
4075: lExceptionId,
4076: NULL);
4077: if lRequestId > 0 then
4078: FND_FILE.PUT_LINE(FND_FILE.LOG,'Launched custom exception '||lName);
4079: update msc_user_exceptions
4080: set request_id= lRequestId
4081: where exception_id = lExceptionId;
4082: else

Line 4083: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Error in launching custom exceptions ');

4079: update msc_user_exceptions
4080: set request_id= lRequestId
4081: where exception_id = lExceptionId;
4082: else
4083: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Error in launching custom exceptions ');
4084: end if;
4085: end loop;
4086: commit;
4087: close getExceptions;