DBA Data[Home] [Help]

APPS.WIP_RES_USAGE_DEFAULT dependencies on FND_API

Line 84: x_return_status := FND_API.G_RET_STS_ERROR;

80: p_organization_id IS NULL OR p_operation_seq_num IS NULL OR
81: p_resource_seq_num IS NULL OR p_substitution_type IS NULL THEN
82: x_err_code := SQLCODE;
83: x_err_msg := 'Error in wiprudfb.pls: Primary key cannot be NULL!';
84: x_return_status := FND_API.G_RET_STS_ERROR;
85: return;
86: END IF;
87:
88: IF p_substitution_type = WIP_JOB_DETAILS.WIP_ADD THEN

Line 166: x_return_status := FND_API.G_RET_STS_ERROR;

162: exception
163: When others then
164: x_err_code := SQLCODE;
165: x_err_msg := 'Error in wiprudfb: '|| SQLERRM;
166: x_return_status := FND_API.G_RET_STS_ERROR;
167: return;
168:
169: end;
170: