Commerce item vs configurable commerce item

Hi
we are adding some item to cart as configurable commerce items
what is difference between commerceItem and configurable commerce item in atg
please give me clear picture on it

refer -
http://docs.oracle.com/cd/E26180_01/Platform.94/ATGCommProgGuide/html/s0903creatingcommerceitemsshippinggro01.html

Similar Messages

  • Configurable commerce items in atg

    Hi
    i want to make all items are configurable commerce items while adding items to an order
    how can i make all items are configurable commerce items
    please give me clear picture on it

    from documentation -
    Creating a Configurable Commerce Item
    Configurable commerce items are items with other items as optional components, and are described in the Using and Extending the Standard Catalog chapter of this manual.
    Follow these steps to create a new ConfigurableCommerceItem and associate it with an Order:
    Call CommerceItemManager.createCommerceItem() to create the base commerce item.
    Call CommerceItemManager.addSubItemToConfigurableItem() or addAsSeparateSubItemToConfigurableItem() to add options to the base item.
    The example below illustrates how to programmatically create a ConfigurableCommerceItem with subSKU items and then add it to an Order.
    ConfigurableCommerceItem configurableItem = (ConfigurableCommerceItem)
    getCommerceItemManager().createCommerceItem("configurableCommerceItem",
    "sku10001", null, "prod10001", null, 1, null, null, new ItemPriceInfo());
    SubSkuCommerceItem subskuItem = (SubSkuCommerceItem)
    getCommerceItemManager().createCommerceItem("subSkuCommerceItem",
    "sku20001", null, "prod20001", null, 1, null, null, new ItemPriceInfo());
    getCommerceItemManager().addSubItemToConfigurableItem(configurableItem,
    subskuItem);
    subskuItem = (SubSkuCommerceItem)
    getCommerceItemManager().createCommerceItem("subSkuCommerceItem",
    "sku20002", null, "prod20002", null, 1, null, null, new ItemPriceInfo());
    getCommerceItemManager().addSubItemToConfigurableItem(configurableItem,
    subskuItem);
    getCommerceItemManager().addItemToOrder(order, configurableItem);

  • Adding Configurable SKUs and Commerce Items to Application

    The amount of information related to implementing configurable commerce items seems to be a bit lite in the documentation. I don't suppose anyone has any previous experience?
    Case in point, most companies will extend CommerceItemImpl to create their own customized version. ConfigurableCommerceItem extends CommerceItemImpl as well, which creates the scenario of either having to go through an very laborious interface setup to allow both CommerceItems and ConfigurableCommerceItems to have a common interface ancestory or you have to take your original extension class and have it extend the ConfigurableCommerceItem instead. Both of these scenarios create some very interesting problems.
    Any shred of information beyond the references in the documentation that talks about using the ACC would be greatly appreciated.
    Thanks,
    Chad
    Edited by: user10469965 on Feb 26, 2013 1:11 PM

    Any shred of information beyond the references in the documentation that talks about using the ACC would be greatly appreciated.Below active threads may give you some details:
    About Configurable sku's.
    Adding Configurable Sku in CSC...
    -RMishra

  • Missing relationshiops between commerce item and shipping group

    Hi,
    We are experiencing an issue on our site where intermittently the relationships between the commerce items added to the cart and the default shipping group created with the order are not being formed, this is causing us issues during the check out flow for example when validateForCheckOut pipeline chain is invoked it has a processor which will verify if all the commerce items in the order are assigned to shipping groups (precisely validateShippingGroupsForCheckout).
    At this point of time we are not sure what is causing it as when we add items to the order we are totally relying upon ATG's OOB handle method in the CartModifierFormHandler, there's no customization around it, though we do have an overridden version of pre and post methods which performs some business validations and adds to form exceptions if there are any. Please let me know if anyone has faced similar issues and how can we overcome this, for now I have a custom build droplet which I invoke on the shopping cart page hence passing the entire order and this droplet will create any missing relationships but that's more like a patch, we do not know the root cause yet.
    Thanks!
    Edited by: 930816 on Oct 30, 2012 9:51 AM

    Probably you can enable debug in OrderRepository and monitor any SQL Exception related to dcspp_shipitem_rel table. Are you facing this issue only in Production? - If yes, you might want to verify the caching configuration of OrderRepository
    Joshua

  • Commerce item in the order got deleted

    Hi,
    We have a production issue like customer placed an order and our fullfillment system which is a atg scheduler which invokes the order object and create flat file and send it to external system and while order loading we are missing the product information.
    We use the getOrderManager().loadOrder() to load the order during the load we got pipeline errors like failed in setCatalogRefId and orders lost the commerce item information from DB for some of the order.
    Did anybody faced this issue before if yes how you fixed this issue.
    Thanks,
    Tijomon Mathew

    ATG OOTB checks for user catalog and only allows you to order products in user's catalog. If you are calling OrderManager.loadOrder() from a scheduled service most likely it's finding the product out side user's catalog and hence removing it from order. If you want to load order from scheduler service use repository query (OrderRepository.getItem(pOrderId)) instead of OrderManager.loadOrder()

  • Dynamic proposal/ Item proposal in ERP E-commerce

    Hi Gurus,
    I have a requirement where the ECC (6.0) functionality - Dynamic Proposal and Item Proposal list displayed while entering an order (va01) - should also be displayed in E-commerce (5.0) while the customer enters an order.
    I don't think this is a standard fuctionality in E-commerce. Any suggestion on how we can achive this.
    Did any one come accross such are req ....Please let me know.
    Thank You
    Ram

    I have not seen this feature in E-Commerce with ERP.

  • Cannot set item's price in new sales order using E-Commerce for ByDesign.

    Hello,
    I'm working on a program to create zero value sales orders in my companies SAP system to help track warranties.  Every portion of this program is straight forward except for setting an item's list price to zero.  I'm using C# .NET.  Below is my code to create the SalesOrderMaintainRequestItem. Any advice would be greatly appreciated.
    private SalesOrderMaintainRequestItem[] GetItems(Warranty warranty) // Custom Warranty Object
        int count = warranty.LineItems.Count; // Warranty object has an array of line items
        SalesOrderMaintainRequestItem[] item = new SalesOrderMaintainRequestItem[count];
        for (int i = 0; i < count; i++) // for each line item in the warranty object
            item[i] = new SalesOrderMaintainRequestItem();
            item[i].BuyerID = _ID;
            item[i].ItemProduct = new SalesOrderMaintainRequestItemProduct();
            item[i].ItemProduct.ProductID = new NOCONVERSION_ProductID();
            item[i].ItemProduct.ProductID.Value = warranty.LineItems[i].ReplaceWith;               
            item[i].PriceAndTaxCalculationItem = new SalesOrderMaintainRequestPriceAndTaxCalculationItem();
            item[i].PriceAndTaxCalculationItem.ItemMainDiscount = new SalesOrderMaintainRequestPriceAndTaxCalculationItemItemMainDiscount();
            item[i].PriceAndTaxCalculationItem.ItemMainDiscount.Rate = new Rate();
            item[i].PriceAndTaxCalculationItem.ItemMainPrice = new SalesOrderMaintainRequestPriceAndTaxCalculationItemItemMainPrice();
            item[i].PriceAndTaxCalculationItem.ItemMainPrice.Rate = new Rate();
            item[i].PriceAndTaxCalculationItem.ItemMainPrice.actionCode = ActionCode.Item01; // tried all the options for this one
            item[i].PriceAndTaxCalculationItem.ItemMainPrice.Rate.DecimalValue = 1.0M; // trying to set it as $1  just for testing, will be 0 when live
               // past tests that didn't work
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent = new SalesOrderMaintainRequestPriceAndTaxCalculationItemItemPriceComponent[1];
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent[0] = new SalesOrderMaintainRequestPriceAndTaxCalculationItemItemPriceComponent();
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent[0].Rate = new Rate();
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent[0].Rate.BaseDecimalValue = 1.0M;
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent[0].Rate.DecimalValue = 1.0M;
            //item[i].PriceAndTaxCalculationItem.ItemPriceComponent[0].Rate.CurrencyCode = "USD";
            //item[i].PriceAndTaxCalculationItem.itemPriceComponentListCompleteTransmissionIndicator = true;
            item[i].ItemScheduleLine = new SalesOrderMaintainRequestItemScheduleLine[1];
            item[i].ItemScheduleLine[0] = new SalesOrderMaintainRequestItemScheduleLine();
            item[i].ItemScheduleLine[0].Quantity = new Quantity();
            item[i].ItemScheduleLine[0].Quantity.Value = warranty.LineItems[i].ReplaceQty;
        return item;

    Hi Joshua,
    it's a long time ago and I hope you were able to solve your issue. For others who want to change prices in sales orders the following might be helpful:
    It is not possible to set the price of a sales order in the create webservice call. You need to create the sales order first and then call the webservice a second time with actionCode="02" (Update).
    The following is an extract from the sales order webservice documentation:
    Node – PriceAndTaxCalculation
    A price and tax calculation is the summary of the determined price and tax components for a business case. A specification of the general procedure for price and tax determination and valuation using attributes those are characteristic or relevant for the whole object.
    Note: PriceAndTaxCalculation cannot be created but can only be modified. So this means that if the customer wishes to change the Discount or Freight charge, then the customer has to create the order first and then make a second web-service request to the update this sales order with the pricing information that is to be changed.
    For the update you only need to send the ID of the sales order, the IDs of the items and the PriceAndTaxCalculation node.
    The following would be an easy XML example for the update call:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:glob="http://sap.com/xi/SAPGlobal20/Global">
       <soapenv:Header/>
       <soapenv:Body>
          <glob:SalesOrderBundleMaintainRequest_sync>
             <SalesOrder>
              <ID>1234</ID>
                <Item actionCode="02">
                   <ID>10</ID>
                   <PriceAndTaxCalculationItem actionCode="02">
                      <ItemMainPrice>
                         <Rate>
                            <DecimalValue>5.00</DecimalValue>
                            <CurrencyCode>USD</CurrencyCode>
                         </Rate>
                      </ItemMainPrice>
                   </PriceAndTaxCalculationItem>
                </Item>
             </SalesOrder>
          </glob:SalesOrderBundleMaintainRequest_sync>
       </soapenv:Body>
    </soapenv:Envelope>
    If you need further help with webservices or C#, let me know.
    Best regards,
    Felix

  • How to get commerce item level taxAmount,shipTo details and etc?

    Hi ,
    How to get the commereceItem level taxAmount ,shipTo address details,price includes vat or not and discounts.
    Regards,
    Satya.

    Hi SatyaVenkat,
    You can call commerceItem.getShippingGroupRelationships(). It will return a list of commerceItem shippingGroupsRelationships.
    So, with it you will be able to get all commerceItem information, about shippingGroups (that contains shippingAddress), priceInfo (that contais tax and discounts) and so on.
    Hope it helps

  • Not able to get the Repository Item for Configurable SKU

    I created a configurable sku and when i am trying to get the property of it I am getting an exception.
    I am using the following code:
    RepositoryItem repItem = productRepository.getItem("sku550018", "configurableSku");
    ChangeAwareList ancestorCat = (ChangeAwareList) repItem.getPropertyValue(ANCESTOR_CATEGORY);
    I am getting exception at the getPropertyValue line. Does anybody know how to resolved this?
    Exception trace from log:
    /atg/commerce/catalog/ProductCatalog     getPropertyValue(configurableSku:sku550018.type) -> "configurableSku" (cached with no transaction)
    /atg/commerce/catalog/ProductCatalog     dp# original query: type = "configurableSku" AND id = ?
    /atg/commerce/catalog/ProductCatalog     dp# generic query: ((type == configurableSku) AND (id EQUALS sku550018))
    /atg/commerce/catalog/ProductCatalog     dp# dispatch AndQuery: ((type == configurableSku) AND (id EQUALS sku550018))
    /atg/commerce/catalog/ProductCatalog     dp# dispatch ComparisonQuery: (type == configurableSku)
    /atg/commerce/catalog/ProductCatalog     dp# ComparisonQuery(type,configurableSku,4)atg.repository.dp.TranslationContext@18da42d
    /atg/commerce/catalog/ProductCatalog     dp# dispatch PatternMatchQuery: (id EQUALS sku550018)
    /atg/commerce/catalog/ProductCatalog     dp# returning original query
    Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Unknown reason
         at weblogic.jdbc.jta.DataSource.enlist(DataSource.java:1419)
         at weblogic.jdbc.jta.DataSource.refreshXAConnAndEnlist(DataSource.java:1331)
         at weblogic.jdbc.jta.DataSource.getConnection(DataSource.java:426)
         at weblogic.jdbc.jta.DataSource.connect(DataSource.java:383)
         at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:339)
         at atg.service.jdbc.SwitchingDataSource.getConnection(SwitchingDataSource.java:761)
         at atg.adapter.gsa.GSATransaction.getConnection(GSATransaction.java:725)
         at atg.adapter.gsa.GSAItemDescriptor.getConnection(GSAItemDescriptor.java:2364)
         at atg.adapter.gsa.GSAItemDescriptor.loadProperties(GSAItemDescriptor.java:5330)
         at atg.adapter.gsa.GSAItemDescriptor.loadProperty(GSAItemDescriptor.java:5456)
         at atg.adapter.gsa.GSAItem.getPersistentPropertyValue(GSAItem.java:1078)
         at atg.adapter.gsa.GSAItem.getPropertyValue(GSAItem.java:971)
         at atg.adapter.gsa.GSAItem.getPropertyValue(GSAItem.java:1249)
         at atg.repository.RepositoryItemImpl.getPropertyValue(RepositoryItemImpl.java:128)
         at vodafone.droplet.AnonymousPurchaseProdDroplet.service(AnonymousPurchaseProdDroplet.java:87)
         at atg.servlet.DynamoServlet.service(DynamoServlet.java:123)
         at atg.taglib.dspjsp.DropletTag.invokeServlet(DropletTag.java:349)

    Hi,
    This error:
    Unexpected exception while enlisting XAConnection java.sql.SQLException: Transaction rolled back: Unknown reason
    means the transaction has previously been marked for rollback.
    I suspect a call prior to:
    vodafone.droplet.AnonymousPurchaseProdDroplet.service(AnonymousPurchaseProdDroplet.java:87)
    has failed and marked the transaction for rollback (typically an exception from ATG GSA code would do this). To clarify:
    RepositoryItem repItem = productRepository.getItem("sku550018", "configurableSku");
    may not use a transaction if the item is already in cache, so the failure is likely before that.
    You should look at prior errors from this code and make sure you are logging all exceptions in this droplet, so the root cause is not "hidden". Also, it could be something earlier on the page or request as well if the code you gave is the first GSA code in the droplet.
    Thanks.
    Nick Glover
    Oracle Support for ATG Products

  • E-Commerce Catalog error and log configurator probelm?

    Hello,
    I am trying to browse a B2B shop (http://server:port/b2b/b2b/init.do) in CRM 5.0 and getting following error message:
    The catalog that you have selected is currently unavailable; try again later
    I am using CRM 5.0 System (IDES Client) and basically trying to setup a E-Commerce development environment.
    Following are the steps i have done so far for E-Commerce configuration:
    1. Configured ISADMIN (http://server:port/isauseradm/admin/xcm/init.do).
    1.1 Changed following params for Start->General Application Settings->Customer->isauseradm->isauseradmconfig:
    >> SSLEnabled: false
    >> appinfo: true
    >> show start.jsp: true
    >> AddUserToPartner: true
    >> AcceptExistingUser: true
    1.2 Created a new JCo connection under Start->Components->Customer->jco and entered my back end CRM System details and saved it as CRM_800_JCO. I also did Run Test which was successful.
    1.3 Created a new JCo connection under Start->Application Configurations->Customer and entered following params and saved it with name CRM_800_ISAUSERADMSTD:
    >> Base configuration: isauseradmStandard
    >> default configuration: X
    >> active configuration: X
    >> jcodata: CRM_800_JCO
    >> backendtype: crmdefault
    >> usertype: CRM_Standalone
    >> uidata: default
    2. Configured B2B (http://server:port/b2b/admin/xcm/init.do).
    2.1 Changed following params for Start->General Application Settings->Customer->b2b->b2bconfig:
    >> SSLEnabled: false
    >> appinfo: true
    >> show start.jsp: true
    2.2 Created a new JCo connection under Start->Components->Customer->jco and entered my backend CRM System details and saved it as CRM_800_JCO. I also did Run Test which was successful.
    2.3 Created a new JCo connection under Start->Application Configurations->Customer and entered following params and saved it with name CRM_800_B2BCRMSTD:
    >> Base configuration: b2bcrmstandard
    >> default configuration: X
    >> active configuration: X
    >> jcodata: CRM_800_JCO
    >> usertype: CRM_Standalone
    3. I was really not sure if ShopAdmin config is required or not but i did it. Configured SHOPADMIN (http://server:port/shopadmin/admin/xcm/init.do).
    3.1 Changed following params for Start->General Application Settings->Customer->shopadmin->shopadminconfig:
    >> SSLEnabled: false
    >> appinfo: true
    >> show start.jsp: true
    3.2 Created a new JCo connection under Start->Components->Customer->jco and entered my backend CRM System details and saved it as CRM_800_JCO. I also did Run Test which was successful.
    3.3 Created a new JCo connection under Start->Application Configurations->Customer and entered following params and saved it with name CRM_800_CRMSHOP:
    >> Base configuration: crmshop
    >> default configuration: X
    >> active configuration: X
    >> jcodata: CRM_800_JCO
    4. Restarted CRM J2EE.
    5. Setup TREX 7.0.
    5.1 From TREX Administration, created a new connection (Type A, i.e., using System Number and Application Server Host) for CRM System and also RFC Dest. (sm59) in CRM System.
    5.2 Restarted TREX and connected this connection.
    5.3 Following are the visible column values for this connection in TREX Administration:
    >> Connection Status: <connected>
    >> Configuration Satus: Green
    >> SAP System: CRM
    >> RFC Destination: TREX_DEFAULT
    >> Gateway: local
    >> RfcServer Instances: 1 (no automatic changes)
    >> TREXRfcServer Processes: 1
    >> Workprocesses: 6 (4 DIA, 2BGD)
    5.4 Did a RFC Connection test in CRM System using SM59 which was successful as well.
    5.5 Using Transaction SRMO (Retrieval : Search Server Relation Monitor) in CRM System changed the RFC Destination for Search server ID DRFUZZY (for both I and S type RFC Server destination action) to TREX_DEFAULT. Did a connection test for this and it was successful.
    6. Initiated Replication using transaction COMM_PCAT_IMS_INIT with following params:
    >> Product Catalog: PCSHOP
    >> Variant: VAR_EN
    >> Search Server Relation:  DRFUZZY
    >> Publishing Computer ID:
    >> Allows Parallel Processing:
    >> Publish Documents via HTTP:
    >> Transfer Document Content: X
    >> Package Size of Indexing: 5,000
    >> Processing Existing Indexes: Overwrite Index Only When OK
    >> Behavior when Error Messages Occur: Cancel Variant Replication
    7. Logged into ISADMIN User Config (http://server:port/isauseradm/useradmin/init.do) and created a new user using the option New User and New Contact Person with an existing company of type Sold-To Party and which belongs to the sales area that is linked with PCSHOP Product Catalog (from IDES data).
    Now, when i log into B2B Page (http://server:port/b2b/b2b/init.do) using the newly created user and click on the shop PC4BIZ_EN i get following error message:
    The catalog that you have selected is currently unavailable; try again later
    I also created a new Product Catalog and did the Initial Replication still getting the same above error message.
    Can anyone please tell me what am i missing or what mistake i have done?
    I even restarted CRM System, but the result is still the same.
    Also, how do i check the log files for B2B? I checked the E-Commerce Admin Console (http://server:port/b2b/admin/index.jsp) and clicked on the logging link, but i get the following message:
    Logging is now configured centrally in the J2EE Engine Visual Administrator (server service: Log Configurator)
    How exactly do i configure and what is the right path for B2B Logging in J2EE Visual Administrator? And where will the log files for B2B be stored on the server?
    I would really appreciate (and of course award points) for your help on this.
    thanks and regards,
    Vasu

    Thanks for the Note reference. I will go through it now and try to check the log files.
    And regarding the error message i don't think it could be because of The Catalog variant is not set right in the Shopadmin application as all the values in Shopadmin seem to be correct. Anyhow following are the current values selected for the custom Product Catalog I created:
    Shop Id: ZTEST
    General Information
    --> Usage
    > Business Scenario: Internet Sales B2B
    --> Authorizations
    > Authorization Group: <blank>
    --> User Administration
    > Partner Function Contact Person: 00000015
    > Country Group: <blank>
    --> Billing Documents
    > Display of Billing Documents: No Billing Documents
    --> Store Locator
    > Display Store Locator: <blank>
    Catalog
    --> Product Catalog
    > Catalog Search: <blank>
    > Catalog: ZTEST
    > Catalog Variant: VAR_EN
    > Catalog View: <blank>
    > Hide Internal Catalog: <blank>
    > Controlling Price Determination in the Catalog: via IPC
    > Profile group for pricing related attributes for exchange products: <blank>
    Transactions
    --> General
    > Allow transaction management for other business partners in hierarchy: <blank>
    > Large Documents: Display All Items
    > Document type can be chosen late: <blank>
    > Batch Processing Permitted: <blank>
    > Display product determination information: X
    --> Order
    > Choose Order Types: Order Type
    > Order Type: ISBB
    --> Order Template
    > Order Templates Allowed: X
    > Order Type: ISBB
    --> +Quotations
    > Creating a Quotation: No Quotation
    --> Contracts
    > Contract Determination: <blank>
    --> Contract Negotiations
    > Allow Contract Negotiations: <blank>
    Marketing
    --> Global Product Recommendation
    > Display Global Product Recommendation: <blank>
    --> Personalized Product Recommendation
    > Display Personalized Product Recommendation: <blank>
    --> +Product-Related Proposals +
    > Display Product-Related Proposals: <blank>
    --> +Campaigns +
    > Allow manual entry of campaigns: <blank>
    Auction
    --> Auction
    > Auctions allowed: <blank>
    Regarding the reason "The Catalog was not replicated properly and is hence unavailable on TREX", is there any way to verify this? When i ran Initial Replication (transaction COMM_PCAT_IMS_INIT with the values i said in my first post) everything was green.
    Also, how do i clear the Catalog Cache? Is it the same as clearing the Catalog Cache Statistics in E-Commerce Administration Console (http://server:port/b2b/admin/index.jsp)?
    Thanks and Regards,

  • Setting up NWDI for E-Commerce 5.0 and getting" No component configured"

    Hi Experts,
    Our basis consultant recently installed NWDI. I am having trouble setting up a Track for our E-commerce development.
    If i try to save my track it gives the message "No component configured". When I try to setup my Runtime sytem and give the Development system name and  Message Server port, it gives the message " Message server could not be contacted".  Because of these errors it does not let me save any Track information.
    Domain  was not defined, so I defined a domain. But Please help in determining what other steps are still needed before i can create a track.
    Thanks in advance,
    Dips

    If anyone knows how to get a user-entered custom value from the item level to a custom java class, please let me know.
    I'm still looking into how to extend the quote and allow for the re-use of it, if all the quantity on the line item has not been exhausted.
    I can easily add a custom field to the header of a .jsp and access that user entered value by coding against the requestParser.
    Example: Parameter xxx = requestParser.getParameter("customerHeaderParm");
    But, when I add a customer parameter to the item level of the .jsp, I cannot leverage the same to code and get at the user entered value. The value comes back as null.
    The two files I am working with are as follows: orderstatusdetail.jsp and Z_DocumentStatusOrderQuotAction, which is an extension of the standard class, DocumentStatusOrderQuotAction.
    I am working with the requestParser within the ActionForward isaPerform() method of Z_DocumentStatusOrderQuotAction. I need to get to those item level values BEFORE the order is created from the quotation.

  • Commerce Reference Store : Configurable SKU

    Hi,
    I'm trying to create a template that display/add configurable SKU item to the basket in Commerce Reference Store application for customer demo.
    If anyone can please give me the steps I have to do achieve this. sample code for accessing configurable SKU in product template.
    Thanks

    Have you had a look at the SubSkuCommerceItem in Creating a Configurable Commerce Item section.
    This class is also in the API
    http://docs.oracle.com/cd/E22630_01/Platform.1002/apidoc/atg/commerce/order/SubSkuCommerceItem.html
    Gareth

  • Configurable Item and Configurable SKU

    Hi All,
    What are the steps to add a configurable sku and configurable options to order.????
    Basically its a configurable bundle product. how to add it to Order??
    Regards

    You can check ATG Document: Creating Commerce Items, Shipping Groups, and Payment Groups
    Also there is method handleAddConfigurableCommerceItemToOrder IN CartModiferFormHandler. You can use it as well.
    Cheers
    Gopi

  • Configuring requirement : ordered item to absorb cost of free goods

    Hello Friends,
    I need to configure this in SAP SD.
    The main item should accumulate the cost of the free goods.
    I have  set the cumulative indicator and deactivated pring for this item.
    Do i still need to configure the stock value for the free goods as cost free item? Or is this step only applicable for
    another scenario, like,
    If I were to activate Pricing such that free goods is displayed as subitem and VPRS configured as cost and discount set to 100%
    1. Set  Item category to TANN using FREE usage   AND
    2. use condition type RL00 with requirement 55.
    3. use pricing type B.
    regards
    Ravi

    Read this SAP help at http://help.sap.com/saphelp_47x200/helpdata/en/dd/55fa4e545a11d1a7020000e829fd11/frameset.htm and the topic Free Goods in Sales and Distribution Processing for details.
    Also go through each step of the configuration of the path at SPRO->Sales and distribution->basic functions->free goods.
    Regards,

  • How to identify difference between Configure To Order (CTO) and Engineer To Order (ETO) items

    Hi All,
    We are working on Oracle Database 10g
    We have to develop a code which involves Configure To Order (CTO) and Engineer To Order (ETO) items.
    Can anyone advise is there any table and the corresponding column in the database which will help identify if an item is a CTO or ETO.
    Regards,
    Shruti

    Shruti,
    Have you checked eTRM website? -- http://etrm.oracle.com
    Please also see (How To Find the VIEW or TABLE That Populates a Form So That a 'Custom Report' Can Be Created Using Same VIEW or TABLE (Doc ID 604772.1)).
    Thanks,
    Hussein

Maybe you are looking for