DBA Data[Home] [Help]

APPS.GME_MAKE_TO_ORDER_PVT dependencies on FND_MSG_PUB

Line 225: FND_MSG_PUB.initialize;

221: /* Check p_init_msg_list
222: =========================================*/
223: IF FND_API.to_boolean(p_init_msg_list)
224: THEN
225: FND_MSG_PUB.initialize;
226: END IF;
227:
228: FND_FILE.Put_Line(FND_FILE.LOG, 'After Initialize ');
229: IF (g_debug <= gme_debug.g_log_statement) THEN

Line 239: FND_MSG_PUB.Add;

235: gme_debug.put_line(g_pkg_name||'.'||l_api_name||' sales order line id parameter is missing ');
236: END IF;
237: FND_MESSAGE.Set_Name('GMI','Missing');
238: FND_MESSAGE.Set_Token('MISSING', 'so_line_id');
239: FND_MSG_PUB.Add;
240: RAISE FND_API.G_EXC_ERROR;
241: END IF;
242:
243: /* Bug 13359707 - Moved code up */

Line 343: FND_MSG_PUB.Add;

339: FND_FILE.Put_Line(FND_FILE.LOG,' Failure to Get_Rule so terminate processing for line '||l_so_line_no); -- Bug 13359707
340: gme_debug.put_line(g_pkg_name||'.'||l_api_name||' Failure to Get_Rule so terminate processing for line '||p_so_line_id);
341: FND_MESSAGE.Set_Name('GMI','Missing');
342: FND_MESSAGE.Set_Token('MISSING', 'rule_id');
343: FND_MSG_PUB.Add;
344: RAISE FND_API.G_EXC_ERROR;
345: END IF;
346:
347: IF (NVL(l_mto_rules_rec.rule_id,0) = 0) THEN

Line 725: l_message := fnd_msg_pub.get(p_encoded => FND_API.G_FALSE);

721: j := to_number(NVL(l_msg_count,0));
722: FOR i in 1..j
723: LOOP
724:
725: l_message := fnd_msg_pub.get(p_encoded => FND_API.G_FALSE);
726: l_message := replace(l_message, chr(0), ' ');
727: gme_debug.put_line(l_message);
728: END LOOP;
729: RAISE fnd_api.g_exc_error;

Line 979: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name

975: x_return_status := FND_API.G_RET_STS_ERROR;
976: -- errbuf := SUBSTRB(SQLERRM, 1, 150);
977: -- retcode := x_return_status;
978:
979: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name
980: , l_api_name
981: );
982: FND_MSG_PUB.Count_AND_GET ( p_encoded => FND_API.G_FALSE
983: , p_count => x_msg_count

Line 982: FND_MSG_PUB.Count_AND_GET ( p_encoded => FND_API.G_FALSE

978:
979: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name
980: , l_api_name
981: );
982: FND_MSG_PUB.Count_AND_GET ( p_encoded => FND_API.G_FALSE
983: , p_count => x_msg_count
984: , p_data => x_msg_data
985: );
986:

Line 997: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name

993: -- errbuf := SUBSTRB(SQLERRM, 1, 150);
994: -- retcode := x_return_status;
995:
996:
997: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name
998: , l_api_name
999: );
1000: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE
1001: , p_count => x_msg_count

Line 1000: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE

996:
997: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name
998: , l_api_name
999: );
1000: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE
1001: , p_count => x_msg_count
1002: , p_data => x_msg_data
1003: );
1004: WHEN OTHERS THEN

Line 1009: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name

1005: --ROLLBACK TO SAVEPOINT create_batch_for_so_line_SP;
1006: gme_debug.put_line('sqlcode : ' ||to_char(sqlcode));
1007: gme_debug.put_line('sqlerr : '|| SUBSTRB(SQLERRM, 1, 150));
1008:
1009: FND_MSG_PUB.Add_Exc_Msg ( g_pkg_name
1010: , l_api_name
1011: );
1012:
1013: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 1018: FND_MSG_PUB.count_and_get

1014: -- errbuf := SUBSTRB(SQLERRM, 1, 150);
1015: -- retcode := x_return_status;
1016:
1017: /* Get message count and data */
1018: FND_MSG_PUB.count_and_get
1019: ( p_count => x_msg_count
1020: , p_data => x_msg_data
1021: );
1022: