DBA Data[Home] [Help]

APPS.IBY_PAYMENT_FORMAT_VAL_PVT dependencies on FND_GLOBAL

Line 1975: * If FND_GLOBAL.conc_request_id is -1, it implies that

1971: * Write immediate validation messages to the common
1972: * application logs. Write deferred validation messages
1973: * to the concurrent manager log file.
1974: *
1975: * If FND_GLOBAL.conc_request_id is -1, it implies that
1976: * this method has not been invoked via the concurrent
1977: * manager (online validation case; write to apps log).
1978: */
1979:

Line 1994: IF (FND_GLOBAL.conc_request_id <> -1) THEN

1990: fnd_log.string (p_level, p_module, p_message);
1991: END IF;
1992:
1993: -- log messages only if concurrent program
1994: IF (FND_GLOBAL.conc_request_id <> -1) THEN
1995: FND_FILE.PUT_LINE(FND_FILE.LOG, p_module || ': ' || p_message);
1996: END IF;
1997:
1998: END LOG_ERROR_MESSAGES;