DBA Data[Home] [Help]

APPS.INV_USER_COST_GROUP dependencies on FND_API

Line 18: x_return_status := FND_API.G_RET_STS_SUCCESS;

14: p_transaction_action_id IN NUMBER)
15: IS
16: BEGIN
17: --Fill in the user logic here
18: x_return_status := FND_API.G_RET_STS_SUCCESS;
19: x_cost_group_id := NULL;
20:
21: EXCEPTION
22: WHEN OTHERS THEN

Line 23: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

19: x_cost_group_id := NULL;
20:
21: EXCEPTION
22: WHEN OTHERS THEN
23: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
24: x_cost_group_id := NULL;
25: IF fnd_msg_pub.check_msg_level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
26: THEN
27: FND_MSG_PUB.Add_Exc_Msg ('inv_user_cost_group','determine_costgroup');