DBA Data[Home] [Help]

APPS.GMI_MOVE_ORDER_HEADER_PVT dependencies on FND_MSG_PUB

Line 80: FND_MSG_PUB.Initialize;

76:
77: /* Initialize message list if p_int_msg_lst is set TRUE. */
78: IF FND_API.to_boolean(p_init_msg_lst)
79: THEN
80: FND_MSG_PUB.Initialize;
81: END IF;
82: /* Initialize API return status to sucess */
83:
84: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 152: /* FND_MSG_PUB.Add; */

148: x_mo_hdr_rec := l_mo_hdr_rec;
149: WSH_Util_Core.PrintLn('Seq Header id => '||x_mo_hdr_rec.header_id);
150:
151: /* FND_MESSAGE.Set_Name('GMI','Entering_GMI_Create_Move_Order_Header'); */
152: /* FND_MSG_PUB.Add; */
153: /* RAISE FND_API.G_EXC_ERROR; */
154:
155: EXCEPTION
156: WHEN fnd_api.g_exc_error THEN

Line 160: FND_MSG_PUB.count_and_get

156: WHEN fnd_api.g_exc_error THEN
157: x_return_status := fnd_api.g_ret_sts_error;
158:
159: /* Get message count and data */
160: FND_MSG_PUB.count_and_get
161: ( p_count => x_msg_count
162: , p_data => x_msg_data
163: );
164:

Line 168: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

164:
165: WHEN OTHERS THEN
166: x_return_status := fnd_api.g_ret_sts_error;
167:
168: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
169: , l_api_name
170: );
171:
172:

Line 174: FND_MSG_PUB.count_and_get

170: );
171:
172:
173: /* Get message count and data */
174: FND_MSG_PUB.count_and_get
175: ( p_count => x_msg_count
176: , p_data => x_msg_data
177: );
178: