DBA Data[Home] [Help]

APPS.DPP_UTILITY_PVT dependencies on DPP_LOG_MESSAGES

Line 2429: --Currently all debug messages are going into the DPP_LOG_MESSAGES table

2425: FND_MSG_PUB.ADD;
2426: END Get_Product;
2427:
2428: --To be used incase we are storing the log messages in the fnd_log_messages table
2429: --Currently all debug messages are going into the DPP_LOG_MESSAGES table
2430:
2431: PROCEDURE debug_message (p_log_level IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
2432: p_module_name IN VARCHAR2,
2433: p_text IN VARCHAR2)

Line 2454: INSERT INTO DPP_LOG_MESSAGES(LOG_ID,LOG_MESSAGE) VALUES(DPP_DEBUG_LOG_ID_SEQ.nextval, p_message_text);

2450:
2451: PRAGMA AUTONOMOUS_TRANSACTION;
2452: BEGIN
2453:
2454: INSERT INTO DPP_LOG_MESSAGES(LOG_ID,LOG_MESSAGE) VALUES(DPP_DEBUG_LOG_ID_SEQ.nextval, p_message_text);
2455: COMMIT;
2456:
2457: END debug_message;
2458: