DBA Data[Home] [Help]

APPS.WIP_OPERATION_DEFAULT dependencies on FND_API

Line 61: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

57: END LOOP;
58:
59: exception
60: when others then
61: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
62:
63: END DEFAULT_OPERATIONS;
64:
65: Procedure Default_Oper (p_group_id in number,

Line 123: x_return_status := FND_API.G_RET_STS_ERROR;

119: p_organization_id IS NULL OR p_operation_seq_num IS NULL THEN
120:
121: x_err_code := SQLCODE;
122: x_err_msg := 'Primary key cannot be NULL!';
123: x_return_status := FND_API.G_RET_STS_ERROR;
124: return;
125: END IF;
126:
127: IF p_substitution_type = WIP_JOB_DETAILS.WIP_ADD THEN

Line 174: x_return_status := FND_API.G_RET_STS_ERROR;

170: END IF;
171:
172: Exception
173: WHEN others then
174: x_return_status := FND_API.G_RET_STS_ERROR;
175: x_err_msg := 'ERROR IN WIPOPDFB: ' || SQLERRM;
176: x_err_code := SQLCODE;
177: return;
178: end;