DBA Data[Home] [Help]

APPS.WIP_RES_USAGE_SUBSTITUTIONS dependencies on FND_API

Line 83: x_return_status := FND_API.G_RET_STS_ERROR;

79: IF p_group_id IS NULL OR p_organization_id IS NULL OR p_wip_entity_id IS NULL
80: OR p_operation_seq_num IS NULL OR p_resource_seq_num IS NULL THEN
81: x_err_code := SQLCODE;
82: x_err_msg := 'Error in wiprustb.pls: Primary key cannot be null!';
83: x_return_status := FND_API.G_RET_STS_ERROR;
84: return;
85: END IF;
86:
87: /************************************************************************

Line 149: x_return_status := FND_API.G_RET_STS_ERROR;

145: exception
146: When others then
147: x_err_code := SQLCODE;
148: x_err_msg := 'Error in wiprudfb: '|| SQLERRM;
149: x_return_status := FND_API.G_RET_STS_ERROR;
150: return;
151: end;
152:
153: END Sub_Usage;