DBA Data[Home] [Help]

APPS.GMI_PICK_WAVE_CONFIRM_PUB dependencies on FND_MSG_PUB

Line 86: FND_MSG_PUB.Initialize;

82: GMI_Reservation_Util.PrintLn('After Check Version');
83: /* Initialize message list if p_int_msg_lst is set TRUE. */
84: IF FND_API.to_boolean(p_init_msg_lst)
85: THEN
86: FND_MSG_PUB.Initialize;
87: END IF;
88:
89: GMI_Reservation_Util.PrintLn('After Init Messages');
90:

Line 100: FND_MSG_PUB.add;

96: GMI_Reservation_Util.PrintLn('mo_line_tbl.COUNT='||p_mo_line_tbl.count);
97:
98: IF ( p_mo_line_tbl.count = 0 ) THEN
99: FND_MESSAGE.SET_NAME('INV', 'INV_NO_LINES_TO_PICK_CONFIRM');
100: FND_MSG_PUB.add;
101: raise FND_API.G_EXC_ERROR;
102: END IF;
103:
104: /* Convert Missing To NULL; */

Line 153: FND_MSG_PUB.Add;

149: FND_MESSAGE.SET_NAME('GMI','GMI_ERROR');
150: FND_MESSAGE.SET_TOKEN('BY_PROC','GMI_PICK_WAVE_CONFIRM_PVT.PICK_CONFIRM');
151: FND_MESSAGE.SET_TOKEN('WHERE',G_PKG_NAME||'.'||l_api_name);
152:
153: FND_MSG_PUB.Add;
154: RAISE FND_API.G_EXC_ERROR;
155: END IF;
156: END IF;
157:

Line 170: FND_MSG_PUB.count_and_get

166: WHEN FND_API.G_EXC_ERROR THEN
167: x_return_status := FND_API.G_RET_STS_ERROR;
168:
169: /* Get message count and data */
170: FND_MSG_PUB.count_and_get
171: ( p_count => x_msg_count
172: , p_data => x_msg_data
173: );
174: -- HW BUG#:2296620 added a new exception

Line 181: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

177:
178: WHEN OTHERS THEN
179: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
180:
181: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
182: , l_api_name
183: );
184:
185:

Line 187: FND_MSG_PUB.count_and_get

183: );
184:
185:
186: /* Get message count and data */
187: FND_MSG_PUB.count_and_get
188: ( p_count => x_msg_count
189: , p_data => x_msg_data
190: );
191: