DBA Data[Home] [Help]

APPS.EAM_REQUEST_DEFAULT_PVT dependencies on FND_API

Line 35: x_return_status := FND_API.G_RET_STS_SUCCESS;

31:
32: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Work Request/Service Request processing Attribute Defaulting'); END IF;
33:
34: x_eam_request_rec := p_eam_request_rec;
35: x_return_status := FND_API.G_RET_STS_SUCCESS;
36:
37: IF p_eam_request_rec.organization_code IS NOT NULL AND
38: (p_eam_request_rec.organization_id IS NULL OR p_eam_request_rec.organization_id = FND_API.G_MISS_NUM) THEN
39:

Line 38: (p_eam_request_rec.organization_id IS NULL OR p_eam_request_rec.organization_id = FND_API.G_MISS_NUM) THEN

34: x_eam_request_rec := p_eam_request_rec;
35: x_return_status := FND_API.G_RET_STS_SUCCESS;
36:
37: IF p_eam_request_rec.organization_code IS NOT NULL AND
38: (p_eam_request_rec.organization_id IS NULL OR p_eam_request_rec.organization_id = FND_API.G_MISS_NUM) THEN
39:
40: SELECT organization_id
41: INTO x_eam_request_rec.organization_id
42: FROM MTL_PARAMETERS mp

Line 48: (p_eam_request_rec.wip_entity_id IS NULL OR p_eam_request_rec.wip_entity_id = FND_API.G_MISS_NUM) THEN

44:
45: END IF;
46:
47: IF p_eam_request_rec.wip_entity_name IS NOT NULL AND
48: (p_eam_request_rec.wip_entity_id IS NULL OR p_eam_request_rec.wip_entity_id = FND_API.G_MISS_NUM) THEN
49:
50: SELECT wip_entity_id into x_eam_request_rec.wip_entity_id
51: FROM WIP_ENTITIES we
52: WHERE we.organization_id = x_eam_request_rec.organization_id

Line 57: (p_eam_request_rec.request_id IS NULL OR p_eam_request_rec.request_id = FND_API.G_MISS_NUM) THEN

53: AND we.wip_entity_name = p_eam_request_rec.wip_entity_name;
54: END IF;
55:
56: IF p_eam_request_rec.request_number IS NOT NULL AND
57: (p_eam_request_rec.request_id IS NULL OR p_eam_request_rec.request_id = FND_API.G_MISS_NUM) THEN
58:
59: IF p_eam_request_rec.request_type = 1 THEN
60: x_eam_request_rec.request_id := p_eam_request_rec.request_number;
61: ELSE