DBA Data[Home] [Help]

APPS.ASO_QUOTE_EBIZAD dependencies on FND_API

Line 21: -- History : In SQL_TO_PL27 ORGANIZATION_ID is set to FND_API.G_MISS_NUM if NULL to avoid error in creating quote with line items.

17: -- Object types for the parameter instead of the PL SQL Record types. This is done by defining the Functions to convert from SQL Object type to and from PL SQL Object
18: -- type and in the CREATE_QUOTE_SERVICE procedure invokes the ASO_QUOTE_PUB.CREATE_QUOTE_SERVICE after doing the required convertion from the SQL object type to
19: --PL/SQL record type. The return values from ASO_QUOTE_PUB.CREATE_QUOTE_SERVICE is converted from PL/SQL Record Type to SQL Object types.
20: --
21: -- History : In SQL_TO_PL27 ORGANIZATION_ID is set to FND_API.G_MISS_NUM if NULL to avoid error in creating quote with line items.
22: -- In CREATE_QUOTE_SERVICE call to po_moac_utils_pvt.set_org_context(P_QTE_HEADER_REC_.ORG_ID); added
23: -- NOTE :
24:
25: -- End of Comments

Line 1766: aPlsqlItem.ORGANIZATION_ID := FND_API.G_MISS_NUM ;

1762: aPlsqlItem.INVOICE_TO_PARTY_ID := aSqlItem.INVOICE_TO_PARTY_ID;
1763: aPlsqlItem.INVOICE_TO_CUST_ACCOUNT_ID := aSqlItem.INVOICE_TO_CUST_ACCOUNT_ID;
1764: aPlsqlItem.ORGANIZATION_ID := aSqlItem.ORGANIZATION_ID;
1765: IF( aPlsqlItem.ORGANIZATION_ID IS NULL)then
1766: aPlsqlItem.ORGANIZATION_ID := FND_API.G_MISS_NUM ;
1767: END IF ;
1768: aPlsqlItem.INVENTORY_ITEM_ID := aSqlItem.INVENTORY_ITEM_ID;
1769: aPlsqlItem.QUANTITY := aSqlItem.QUANTITY;
1770: aPlsqlItem.UOM_CODE := aSqlItem.UOM_CODE;