DBA Data[Home] [Help]

APPS.GMI_MOVE_ORDER_LINES_PUB dependencies on FND_MSG_PUB

Line 93: FND_MSG_PUB.Initialize;

89:
90: /* Initialize message list if p_int_msg_lst is set TRUE. */
91: IF FND_API.to_boolean(p_init_msg_lst)
92: THEN
93: FND_MSG_PUB.Initialize;
94: END IF;
95:
96: /* Initialize API return status to sucess */
97: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 168: /* FND_MSG_PUB.Add; */

164:
165: /* GMI_Move_Order_Header_Util.Insert_Row( l_mo_hdr_rec); */
166:
167: /* FND_MESSAGE.Set_Name('GMI','Entering_GMI_Create_Move_Order_Header'); */
168: /* FND_MSG_PUB.Add; */
169: /* RAISE FND_API.G_EXC_ERROR; */
170:
171: EXCEPTION
172: WHEN fnd_api.g_exc_error THEN

Line 176: FND_MSG_PUB.count_and_get

172: WHEN fnd_api.g_exc_error THEN
173: x_return_status := fnd_api.g_ret_sts_error;
174:
175: /* Get message count and data */
176: FND_MSG_PUB.count_and_get
177: ( p_count => x_msg_count
178: , p_data => x_msg_data
179: );
180:

Line 184: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

180:
181: WHEN OTHERS THEN
182: x_return_status := fnd_api.g_ret_sts_error;
183:
184: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
185: , l_api_name
186: );
187:
188:

Line 190: FND_MSG_PUB.count_and_get

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