DBA Data[Home] [Help]

APPS.GMI_MOVE_ORDER_HEADER_PUB dependencies on FND_MSG_PUB

Line 81: FND_MSG_PUB.Initialize;

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

Line 133: FND_MSG_PUB.Add;

129:
130: /* GMI_Move_Order_Header_Util.Insert_Row( l_mo_hdr_rec); */
131:
132: /* FND_MESSAGE.Set_Name('GMI','Entering_GMI_Create_Move_Order_Header');
133: FND_MSG_PUB.Add;
134: RAISE FND_API.G_EXC_ERROR;
135: */
136:
137:

Line 143: FND_MSG_PUB.count_and_get

139: WHEN fnd_api.g_exc_error THEN
140: x_return_status := fnd_api.g_ret_sts_error;
141:
142: /* Get message count and data */
143: FND_MSG_PUB.count_and_get
144: ( p_count => x_msg_count
145: , p_data => x_msg_data
146: );
147:

Line 151: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

147:
148: WHEN OTHERS THEN
149: x_return_status := fnd_api.g_ret_sts_error;
150:
151: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
152: , l_api_name
153: );
154:
155:

Line 157: FND_MSG_PUB.count_and_get

153: );
154:
155:
156: /* Get message count and data */
157: FND_MSG_PUB.count_and_get
158: ( p_count => x_msg_count
159: , p_data => x_msg_data
160: );
161: