DBA Data[Home] [Help]

APPS.DPP_UTILITY_PVT dependencies on DPP_LOG_MESSAGES

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

2350: END IF;
2351: END Get_Product;
2352:
2353: --To be used incase we are storing the log messages in the fnd_log_messages table
2354: --Currently all debug messages are going into the DPP_LOG_MESSAGES table
2355:
2356: /*
2357: PROCEDURE debug_message (p_log_level IN NUMBER,
2358: p_module_name IN VARCHAR2,

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

2376: IS
2377: PRAGMA AUTONOMOUS_TRANSACTION;
2378: BEGIN
2379:
2380: INSERT INTO DPP_LOG_MESSAGES(LOG_ID,LOG_MESSAGE) VALUES(DPP_DEBUG_LOG_ID_SEQ.nextval, p_message_text);
2381: COMMIT;
2382:
2383: FND_MESSAGE.set_name('DPP', 'DPP_API_DEBUG_MESSAGE');
2384: FND_MESSAGE.set_token('TEXT', REPLACE (p_message_text, FND_API.G_MISS_CHAR, 'G_MISS_CHAR'));