DBA Data[Home] [Help]

APPS.EAM_OP_NETWORK_UTILITY_PVT dependencies on FND_API

Line 48: l_return_status VARCHAR2(1):= FND_API.G_RET_STS_SUCCESS;

44: , x_Return_status OUT NOCOPY VARCHAR2
45: )
46: IS
47: l_eam_op_network_rec EAM_PROCESS_WO_PUB.eam_op_network_rec_type;
48: l_return_status VARCHAR2(1):= FND_API.G_RET_STS_SUCCESS;
49: l_dummy varchar2(10);
50: BEGIN
51:
52: SELECT

Line 109: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

105: x_return_status := EAM_PROCESS_WO_PVT.G_RECORD_NOT_FOUND;
106: x_eam_op_network_rec := l_eam_op_network_rec;
107:
108: WHEN OTHERS THEN
109: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
110: x_eam_op_network_rec := l_eam_op_network_rec;
111:
112: END Query_Row;
113:

Line 192: x_return_status := FND_API.G_RET_STS_SUCCESS;

188:
189:
190: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug ('Creating new Operation Networks') ; END IF;
191:
192: x_return_status := FND_API.G_RET_STS_SUCCESS;
193:
194: EXCEPTION
195: WHEN OTHERS THEN
196: EAM_ERROR_MESSAGE_PVT.Add_Error_Token

Line 202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

198: , p_message_text => G_PKG_NAME ||' :Inserting Record ' || SQLERRM
199: , x_mesg_token_Tbl => x_mesg_token_tbl
200: );
201:
202: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
203:
204: END Insert_Row;
205:
206: /********************************************************************

Line 251: x_return_status := FND_API.G_RET_STS_SUCCESS;

247: WHERE organization_id = p_eam_op_network_rec.organization_id
248: AND wip_entity_id = p_eam_op_network_rec.wip_entity_id
249: AND prior_operation = p_eam_op_network_rec.prior_operation;
250:
251: x_return_status := FND_API.G_RET_STS_SUCCESS;
252:
253: END Update_Row;
254:
255:

Line 281: x_return_status := FND_API.G_RET_STS_SUCCESS;

277: WHERE organization_id = p_eam_op_network_rec.organization_id
278: AND wip_entity_id = p_eam_op_network_rec.wip_entity_id
279: AND prior_operation = p_eam_op_network_rec.prior_operation
280: AND next_operation = p_eam_op_network_rec.next_operation;
281: x_return_status := FND_API.G_RET_STS_SUCCESS;
282:
283: END Delete_Row;
284:
285:

Line 304: l_return_status VARCHAR2(1):= FND_API.G_RET_STS_SUCCESS;

300: , x_return_status OUT NOCOPY VARCHAR2
301: )
302: IS
303: l_Mesg_Token_tbl EAM_ERROR_MESSAGE_PVT.Mesg_Token_Tbl_Type;
304: l_return_status VARCHAR2(1):= FND_API.G_RET_STS_SUCCESS;
305: BEGIN
306:
307: IF p_eam_op_network_rec.transaction_type = EAM_PROCESS_WO_PVT.G_OPR_CREATE
308: THEN