DBA Data[Home] [Help]

APPS.WSM_SERIAL_SUPPORT_PVT dependencies on FND_LOG_MESSAGES

Line 9325: -- MESSAGE_TEXT column in FND_LOG_MESSAGES is 4000 characters long..

9321:
9322: -- This assumption is based that each individual column to be logged doesnt exceed 3900 chars... (that's the max...)
9323: type t_log_message_tbl IS table OF varchar2(3900) index by binary_integer;
9324:
9325: -- MESSAGE_TEXT column in FND_LOG_MESSAGES is 4000 characters long..
9326: -- WSM_Log_PVT adds the date information in the start,,, so leave 50 characters for that
9327: -- Effective length we would use is 3900
9328:
9329: -- Logging variables.....

Line 9339: l_log_message FND_LOG_MESSAGES.MESSAGE_TEXT%TYPE;

9335: l_param_tbl WSM_Log_PVT.param_tbl_type;
9336: -- Logging variables...
9337:
9338: l_message_tbl t_log_message_tbl;
9339: l_log_message FND_LOG_MESSAGES.MESSAGE_TEXT%TYPE;
9340: l_counter NUMBER;
9341: l_index NUMBER;
9342:
9343: BEGIN