DBA Data[Home] [Help]

APPS.OE_PUR_CONC_REQUESTS dependencies on OE_MSG_PUB

Line 290: OE_MSG_PUB.Count_And_Get

286: END IF;
287:
288: /* Write Messages in the log file */
289:
290: OE_MSG_PUB.Count_And_Get
291: ( p_count => l_msg_count
292: , p_data => l_msg_data
293: );
294:

Line 299: l_msg_data := OE_MSG_PUB.Get(I,'F');

295: --bug#5081428:- printing only those mesgs which belongs to line_id
296: --under iteration. Earlier all the mesgs from 1st till last were
297: -- printed and causing log file to increase exponentially in size.
298: for I in l_count..l_msg_count loop
299: l_msg_data := OE_MSG_PUB.Get(I,'F');
300: fnd_file.put_line(FND_FILE.LOG, l_msg_data);
301: -- Write the message to the database?
302: end loop;
303: l_count := l_msg_count + 1;