DBA Data[Home] [Help]

APPS.BSC_UTILITY dependencies on BSC_MESSAGE_LOGS

Line 335: -- Insert error messages into bsc_message_logs table.

331:
332: -- Rollback uncommitted transactions.
333: rollback;
334:
335: -- Insert error messages into bsc_message_logs table.
336: bsc_message.flush;
337:
338: -- commit rows in bsc_message_logs table.
339: -- commit work;

Line 338: -- commit rows in bsc_message_logs table.

334:
335: -- Insert error messages into bsc_message_logs table.
336: bsc_message.flush;
337:
338: -- commit rows in bsc_message_logs table.
339: -- commit work;
340:
341: End Do_Rollback;
342:

Line 1028: from BSC_MESSAGE_LOGS

1024: from dual;
1025:
1026: select count(message)
1027: into l_count
1028: from BSC_MESSAGE_LOGS
1029: where type = 0
1030: and upper(source) = 'BSC_SECURITY.CHECK_SYSTEM_LOCK'
1031: and last_update_login = l_session_id;
1032:

Line 1038: from BSC_MESSAGE_LOGS

1034: return 'N';
1035: else
1036: select message
1037: into l_message
1038: from BSC_MESSAGE_LOGS
1039: where type = 0
1040: and upper(source) = 'BSC_SECURITY.CHECK_SYSTEM_LOCK'
1041: and last_update_login = l_session_id;
1042: