DBA Data[Home] [Help]

APPS.BSC_MESSAGE dependencies on BSC_MESSAGE_LOGS

Line 150: Insert Into BSC_MESSAGE_LOGS(

146: end if;
147:
148: if (x_mode = 'I') then
149:
150: Insert Into BSC_MESSAGE_LOGS(
151: Source,
152: Type,
153: Message,
154: Creation_Date, Created_By,

Line 174: Insert Into BSC_MESSAGE_LOGS(

170:
171: For i In 1 .. G_Msg_Count
172: Loop
173:
174: Insert Into BSC_MESSAGE_LOGS(
175: Source,
176: Type,
177: Message,
178: Creation_Date, Created_By,

Line 199: -- Desc: Delete message from BSC_MESSAGE_LOGS if debug_flag is 'NO'

195: End Flush;
196:
197: --
198: -- Name: Clean
199: -- Desc: Delete message from BSC_MESSAGE_LOGS if debug_flag is 'NO'
200: --
201: Procedure Clean Is
202: Begin
203:

Line 207: from BSC_MESSAGE_LOGS

203:
204: if (G_debug_flag = 'NO') then
205:
206: delete
207: from BSC_MESSAGE_LOGS
208: where
209: last_update_login = G_session_id;
210: end if;
211: