DBA Data[Home] [Help]

APPS.OE_INC_ITEMS_FREEZE_CONC dependencies on OE_MSG_PUB

Line 217: OE_MSG_PUB.Count_And_Get (

213: result => 'COMPLETED');
214:
215: -- Write messages in to the log file
216:
217: OE_MSG_PUB.Count_And_Get (
218: p_count => l_msg_count,
219: p_data => l_msg_data);
220:
221: FOR I IN 1..l_msg_count

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

219: p_data => l_msg_data);
220:
221: FOR I IN 1..l_msg_count
222: LOOP
223: l_msg_data := OE_MSG_PUB.Get(I,'F');
224: FND_FILE.PUT_LINE(FND_FILE.LOG,l_msg_data);
225: END LOOP;
226: END LOOP;
227: