DBA Data[Home] [Help]

APPS.GMI_ALLOCATION_RULES_PVT dependencies on FND_MSG_PUB

Line 99: FND_MSG_PUB.Add;

95: THEN
96: CLOSE op_cust_mst_c1;
97: FND_MESSAGE.SET_NAME('GML','OP_API_INVALID_CUSTOMER');
98: FND_MESSAGE.SET_TOKEN('CUST_NO',p_cust_no);
99: FND_MSG_PUB.Add;
100: RAISE FND_API.G_EXC_ERROR;
101: ELSE
102: CLOSE op_cust_mst_c1;
103: END IF;

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

142:
143: EXCEPTION
144: WHEN FND_API.G_EXC_ERROR THEN
145: x_return_status := FND_API.G_RET_STS_ERROR;
146: FND_MSG_PUB.Count_AND_GET ( p_encoded => FND_API.G_FALSE
147: , p_count => x_msg_count
148: , p_data => x_msg_data
149: );
150:

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

149: );
150:
151: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
152: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
153: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE
154: , p_count => x_msg_count
155: , p_data => x_msg_data
156: );
157: WHEN OTHERS THEN

Line 160: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

156: );
157: WHEN OTHERS THEN
158: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
159:
160: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
161: , l_api_name
162: );
163:
164: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE

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

160: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
161: , l_api_name
162: );
163:
164: FND_MSG_PUB.Count_AND_GET ( p_encoded=> FND_API.G_FALSE
165: , p_count => x_msg_count
166: , p_data => x_msg_data
167: );
168: