DBA Data[Home] [Help]

APPS.IBY_PAYMENT_FORMAT_VAL_PVT dependencies on FND_GLOBAL

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

1958: * Write immediate validation messages to the common
1959: * application logs. Write deferred validation messages
1960: * to the concurrent manager log file.
1961: *
1962: * If FND_GLOBAL.conc_request_id is -1, it implies that
1963: * this method has not been invoked via the concurrent
1964: * manager (online validation case; write to apps log).
1965: */
1966:

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

1977: fnd_log.string (p_level, p_module, p_message);
1978: END IF;
1979:
1980: -- log messages only if concurrent program
1981: IF (FND_GLOBAL.conc_request_id <> -1) THEN
1982: FND_FILE.PUT_LINE(FND_FILE.LOG, p_module || ': ' || p_message);
1983: END IF;
1984:
1985: END LOG_ERROR_MESSAGES;