DBA Data[Home] [Help]

APPS.OE_SPLIT_UTIL dependencies on FND_FILE

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

2709: IF l_count = 0 THEN
2710: Fnd_Message.Set_Name('ONT','OE_CANCEL_SPLIT_SUCCESS');
2711: Fnd_Message.Set_Token('REQUEST_ID',FND_GLOBAL.CONC_REQUEST_ID);
2712: OE_Msg_Pub.Add;
2713: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));
2714: RETURN;
2715: END IF;
2716:
2717:

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

3071: ELSE -- l_count < 2
3072: Fnd_Message.Set_Name('ONT','OE_CANCEL_SPLIT_SUCCESS');
3073: Fnd_Message.Set_Token('REQUEST_ID',FND_GLOBAL.CONC_REQUEST_ID);
3074: OE_Msg_Pub.Add;
3075: FND_FILE.put_line(FND_FILE.output,OE_MSG_PUB.Get(OE_MSG_PUB.G_LAST,FND_API.G_FALSE));
3076: RETURN;
3077:
3078: END IF;
3079:

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

3082: ( p_count => l_msg_count
3083: , p_data => l_msg_data
3084: ); l_msg_total := l_msg_count;
3085:
3086: FND_FILE.put_line(FND_FILE.output,'Please check the debug log for errors');
3087: IF NVL(FND_PROFILE.VALUE('CONC_REQUEST_ID'), 0) <> 0 THEN
3088: -- Called from concurrent request
3089: IF l_msg_total > 0 THEN
3090: FOR I IN 1 .. l_msg_total LOOP

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

3088: -- Called from concurrent request
3089: IF l_msg_total > 0 THEN
3090: FOR I IN 1 .. l_msg_total LOOP
3091: l_msg_data := to_char(I)||'. '||OE_MSG_PUB.Get(I,FND_API.G_FALSE);
3092: FND_FILE.put_line(FND_FILE.output, l_msg_data);
3093: -- Writing messages into the concurrent request output file
3094: END LOOP;
3095: oe_debug_pub.add(' Saving the Messages');
3096: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);

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

3096: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);
3097: -- Bug 6964815
3098:
3099: ELSE
3100: FND_FILE.put_line(FND_FILE.output,' << No Errors or Warnings reported >>');
3101: END IF;
3102: END IF;
3103: COMMIT;
3104: oe_debug_pub.add('Exiting Procedure OE_Split_Util.Defer_Split', 1);

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

3111: -- Called from concurrent request */
3112: IF l_msg_total > 0 THEN
3113: FOR I IN 1 .. l_msg_total LOOP
3114: l_msg_data := to_char(I)||'. '||OE_MSG_PUB.Get(I,FND_API.G_FALSE);
3115: FND_FILE.put_line(FND_FILE.output, l_msg_data);
3116: -- Writing messages into the concurrent request output file
3117: END LOOP;
3118: oe_msg_pub.save_messages(p_request_id => FND_GLOBAL.CONC_REQUEST_ID);
3119: -- Bug 6964815