DBA Data[Home] [Help]

APPS.OE_SPLIT_UTIL dependencies on FND_FILE

Line 2326: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));

2322: IF l_count = 0 THEN
2323: Fnd_Message.Set_Name('ONT','OE_CANCEL_SPLIT_SUCCESS');
2324: Fnd_Message.Set_Token('REQUEST_ID',FND_GLOBAL.CONC_REQUEST_ID);
2325: OE_Msg_Pub.Add;
2326: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));
2327: RETURN;
2328: END IF;
2329:
2330:

Line 2635: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));

2631: ELSE -- l_count < 2
2632: Fnd_Message.Set_Name('ONT','OE_CANCEL_SPLIT_SUCCESS');
2633: Fnd_Message.Set_Token('REQUEST_ID',FND_GLOBAL.CONC_REQUEST_ID);
2634: OE_Msg_Pub.Add;
2635: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));
2636: RETURN;
2637:
2638: END IF;
2639:

Line 2646: FND_FILE.put_line(FND_FILE.output,'Please check the debug log for errors');

2642: ( p_count => l_msg_count
2643: , p_data => l_msg_data
2644: ); l_msg_total := l_msg_count;
2645:
2646: FND_FILE.put_line(FND_FILE.output,'Please check the debug log for errors');
2647: IF NVL(FND_PROFILE.VALUE('CONC_REQUEST_ID'), 0) <> 0 THEN
2648: -- Called from concurrent request
2649: IF l_msg_total > 0 THEN
2650: FOR I IN 1 .. l_msg_total LOOP

Line 2652: FND_FILE.put_line(FND_FILE.output, l_msg_data);

2648: -- Called from concurrent request
2649: IF l_msg_total > 0 THEN
2650: FOR I IN 1 .. l_msg_total LOOP
2651: l_msg_data := to_char(I)||'. '||OE_MSG_PUB.Get(I,FND_API.G_FALSE);
2652: FND_FILE.put_line(FND_FILE.output, l_msg_data);
2653: -- Writing messages into the concurrent request output file
2654: END LOOP;
2655: oe_debug_pub.add(' Saving the Messages');
2656: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);

Line 2660: FND_FILE.put_line(FND_FILE.output,' << No Errors or Warnings reported >>');

2656: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);
2657: -- Bug 6964815
2658:
2659: ELSE
2660: FND_FILE.put_line(FND_FILE.output,' << No Errors or Warnings reported >>');
2661: END IF;
2662: END IF;
2663: COMMIT;
2664: oe_debug_pub.add('Exiting Procedure OE_Split_Util.Defer_Split', 1);

Line 2675: FND_FILE.put_line(FND_FILE.output, l_msg_data);

2671: -- Called from concurrent request */
2672: IF l_msg_total > 0 THEN
2673: FOR I IN 1 .. l_msg_total LOOP
2674: l_msg_data := to_char(I)||'. '||OE_MSG_PUB.Get(I,FND_API.G_FALSE);
2675: FND_FILE.put_line(FND_FILE.output, l_msg_data);
2676: -- Writing messages into the concurrent request output file
2677: END LOOP;
2678: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);
2679: -- Bug 6964815