DBA Data[Home] [Help]

APPS.OE_DEFAULT_SOURCE_TYPE_PVT dependencies on FND_API

Line 47: IF Not FND_API.Compatible_API_Call (L_API_Version,

43: which means source_type has to be INTERNAL or EXTERNAL
44:
45: */
46:
47: IF Not FND_API.Compatible_API_Call (L_API_Version,
48: P_API_Version,
49: L_API_Name,
50: G_PKG_Name) Then
51: Raise FND_API.G_EXC_UNEXPECTED_ERROR;

Line 51: Raise FND_API.G_EXC_UNEXPECTED_ERROR;

47: IF Not FND_API.Compatible_API_Call (L_API_Version,
48: P_API_Version,
49: L_API_Name,
50: G_PKG_Name) Then
51: Raise FND_API.G_EXC_UNEXPECTED_ERROR;
52: End If;
53:
54:
55: if ((p_item is null) or (p_cycle_id is null) or (p_linetype is null) or (p_option_flag is null) or (p_item_type is null))

Line 58: P_Return_Status := FND_API.G_RET_STS_ERROR;

54:
55: if ((p_item is null) or (p_cycle_id is null) or (p_linetype is null) or (p_option_flag is null) or (p_item_type is null))
56:
57: then
58: P_Return_Status := FND_API.G_RET_STS_ERROR;
59: Return;
60: end if;
61:
62: l_warehouse := p_warehouse;

Line 90: when no_data_found then P_Return_Status := FND_API.G_RET_STS_ERROR;

86: from mtl_system_items msi
87: where msi.inventory_item_id = p_item
88: and msi.organization_id = FND_PROFILE.VALUE_SPECIFIC('SO_ORGANIZATION_ID');
89: exception
90: when no_data_found then P_Return_Status := FND_API.G_RET_STS_ERROR;
91: Return;
92: end;
93:
94:

Line 150: P_Return_Status := FND_API.G_RET_STS_SUCCESS;

146: else
147: p_source_type := ''; /* needs discussion */
148: p_msg_data := 'itemcycle';
149: p_msg_count := msgcount + 1;
150: P_Return_Status := FND_API.G_RET_STS_SUCCESS;
151: Return;
152:
153: end if;
154:

Line 186: P_Return_Status := FND_API.G_RET_STS_SUCCESS;

182: p_msg_count := msgcount + 1;
183:
184: end if; /* standard item ; not an option or service line */
185:
186: P_Return_Status := FND_API.G_RET_STS_SUCCESS;
187:
188: end GET_DEFAULT_SOURCE_TYPE;
189:
190: end OE_DEFAULT_SOURCE_TYPE_PVT;