Procure item for inventory in Shopping cart as  Order as Direct Material

Hello Experts,
When i procure a an item for inventory click u201COrder as Direct Materialu201D and then the system would not ask for an account assignment,
1.) where i can do this setting
2.) the actual problem am facing is "SC is created but PO goes to status Saved and when i see PO i can see  the error and this is  "Backend error : enter account assignment category".
Please let me know on this....i hope this will also be a great learning for me towards a journey of become masters in SRM like all of you
Smriti

yes. for order as direct account assignment folder disappear.
Ordering a direct material means ordering a product that will be received into stock.
You have to press the Order as Direct Material button in the item detail view.
Selecting Order as Direct Material replaces the goods recipient with the plant you
are ordering for and removes the Account Assignment information. The plants and
storage locations are defined in the organizational structure in the extended attributes
Locations and Storage Locations. After ordering the material as a direct material, you
cannot change back to indirect; so, in case of a mistake, you have to delete this item.
If you have a valid and definite source of supply, such as a contract, this will be used.
Items without a source of supply will have to be completed by the purchaser in
sourcing transaction or in the worklist of incomplete purchase orders. The complete
purchase order will then be replicated to the back end system. Changes to the purchase
order is only possible in Enterprise Buyer, which is the leading system for this process.
Any changes made in Enterprise Buyer are transferred to the back end.

Similar Messages

  • HIDE ORDER AS DIRECT MATERIAL checkbox for material item in Shopping cart

    HI,
    We are on SRM 7.1 ECS.
    I need to hide the ORDER AS DIRECT MATERIAL checkbox under the ITEM DATA tab in the Shopping cart screen...How do I do it??Is there any config option or I need to implement a badi in SRM 7?

    Hi NIkhil,
    This BADI is not called in SRM 7!
    Experts,
    CA anyone help me as to how the ORDER AS DIRECT CHECKBOX in SC screen?

  • More than one Follow On documents for a single shopping cart

    Hi All,
    How can we determine if there will be more than one follow on document created for a single shopping cart.
    One reason could be if shopping cart items have different source of supply.
    What could be the other reasons. Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart.
    Thanking you all in advance.
    Thanks and Regards
    Manoj

    Hi  Manoj,
    <i>"Also is there any way by which we can debug and find out the number of follow on documents created for a single shoppining cart."</i>
    There's a FM to get all the follow on documents related to the SC and all the relations per item... use <b>BBP_PD_SC_GETDETAIL</b> and retrieve the <b>E_HEADER_REL</b> for the SC relations, and the <b>E_ITMLIM_REL</b> for each <b>item relations</b>.. there you will see:
    OBJECT_ID_A -> OBJECT_ID_B
    what it means is the relation between a SC and the PO, or the SC with a BID... you can identify the object types by taking a look in the 'BUS...'
    OBJTYPE_A -> OBJECTTYPE_B
    SC -> BUS2121
    PO-> BUS2201
    BID-> BUS2200
    etc...
    I hope this can help you to retrieve what you need....
    BR,
    Gerardo....
    PS: reward points please....

  • Changing line item delivery address in shopping cart need to reflect same in all line items

    Hi All,
    Need help on below,
    I have a requirement that when we change the shopping cart line item delivery address same needs to reflect all line items.
    Suppose a shopping cart having 3 line items 1, 2 and 3. if i change the delivery address of line item 1, the same needs to reflect the line item 2 and 3 as well.
    In my case  if we change the 1's delivery address, after processing its genrating the IDOC on line item wise not in the header wise. And same having the different delivery address.
    Thanks in advance.
    regards:
    Ramesh

    Hello Ramesh,
    we can do this changes in BBP_DOC_CHANGE_BADI . Create a Implementation for the above BADI and Inside that Implementation BADI method just call the function module BBP_PD_SC_GETDETAIL for SC item details by passing the Header GUID.
    Once you get the Partner table(E_PARTNER) details.. Keeping a loop on SC item(E_ITEM) and change address number(ADDR_NO) in Partner table when Partner function eq X( X is an partner function values which you define in SPRO.).
    pseudo logic:
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid    = l_guid
        TABLES
          e_item    = lt_item
          e_partner = lt_partner.
    * Check for all the line items if vendor is assigned
      LOOP AT lt_item INTO lwa_item.
        READ TABLE lt_partner INTO lwa_partner
                          WITH KEY partner_fct = '00000019'
                                   del_ind     = space
                                   p_guid      = lwa_item-guid.
        IF sy-subrc eq 0 .
       * modification of address number logic here in partner table
        ENDIF.
      ENDLOOP.
    All the best.
    Regards,
    Sankarbabu

  • "order as direct material" indicator is not coming in Shopping Cart.

    Hi Experts,
    I am trying to perform the employee self service procurement for a direct material. I have performed the below config and attribute maintenance.
    1. Defined a new transaction type and new number range for local PO in SRM Config
    2. In R/3 Back-End, for the same document type, I have ensured that number range is present
    3. For my Root Organization, I have added "DP_PROC_TY" for "Transaction Type: Create PO manually" maintained with my above transaction type defined
    4. I have selected my local P Group and added 001 Product Category with R/3 Back-end system as source system in "Responsibility" tab
    After that I have started created Shopping Cart expecting to find "Order as Direct Material" indicator in Shopping Cart details.
    But I could not be able to see that indicator in Shopping Cart. What I see is Product Category 001 but different P Group is coming.
    Is this the reason, what I am missing. Please help.
    Thanks & Regards

    Hi,
    Please check that the component configuration has not hidden the field, it is under the following configuration:
    General Information About the Application and Component
    Application: /SAPSRM/WDA_L_FPM_GAF
    Web Dynpro Component: /SAPSRM/WDC_DODC_SC_I_BD
    Window Information: IV_L_FPC_CA_DETAILS
    View Information: V_DODC_SC_I_BD
    Configuration ID: /SAPSRM/WDCC_FPM_DODC_SC_I_BD_WI
    Component Element you are looking for is ORDER_DIRECT_MAT_LABEL
    Also check if someone has hidden the field using WD customizing onscreen, right click over the screen and choose 'User Settings', here check if any fields are hidden.
    Regards,
    Jason

  • Activating Order as Direct material button on Shopping cart screen

    Hello SRM experts,
    we are in SRM 5.0. we implemented BADI: BBP_DP_PROD_CHK_BADI to suppress Order as direct material button on Shopping cart screen.in this BADI under PRODUCT_CHECK method  we have this code CLEAR ev_dp_possible.Now the requirement is to bring back that order as direct material on to shopping cart screen and we need to check there for direct material and non direct material.
    i commented the code in METHOD PRODUCT_CHECK . but still i'm unable to see that button on SC screen.After bringing that button on to screen we need to check for Direct and non direct materials, if it is a non-direct material and trying to press button Order as Direct Material it should hav to give some error.
    please help me.
    thanks in Advance....

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Source of supply doesnu2019t work for SC items ordered as direct material.

    Hi there.
    We are working in SRM 5.0 with classic scenario.
    We are doing a SC with material code.
    We create a SC with two identical items. The only difference between items is: one item is order as direct material and the other one not.
    The problem is that for our item order as direct material, the system doesnu2019t propose any ECC contract or any ECC info record. But for our item not order as direct material, the system propose us ECC contract and ECC info record.
    So for SC items orders as direct material, the system never proposes any source of supply.
    However, in transaction BBPSOCO01 (Carry of sourcing) the systems propose source of supply OK for SC items with and without direct material.
    Any suggest?
    Thanks and regards.
    Raúl.

    Hi,
    The issue might be because when you choose, 'order as direct', the scenario changes from classic to extended classic, hence only local contracts are proposed in this case. Since you don't have anything local, you will not see any source of supply. Try using bbp_sos_badi instead and call all backend contracts using fm meta_sourcedeter_getsos_multi.
    Regards,
    Sanjeev

  • Order as Direct material check is not coming for shoppingcart with material

    Hi,
    We are using portal indpendent navigation screen (NWBC) SRM 7.0 extended classic scenario. Order as direct material check box is not coming in item data of shopping cart for shopping against the material. I checked every thing but not able to get the check box for order as direct material.
    Please advise what to do.
    (N. Kiran Kumar)

    Hi,
    Please check that the component configuration has not hidden the field, it is under the following configuration:
    General Information About the Application and Component
    Application: /SAPSRM/WDA_L_FPM_GAF
    Web Dynpro Component: /SAPSRM/WDC_DODC_SC_I_BD
    Window Information: IV_L_FPC_CA_DETAILS
    View Information: V_DODC_SC_I_BD
    Configuration ID: /SAPSRM/WDCC_FPM_DODC_SC_I_BD_WI
    Component Element you are looking for is ORDER_DIRECT_MAT_LABEL
    Also check if someone has hidden the field using WD customizing onscreen, right click over the screen and choose 'User Settings', here check if any fields are hidden.
    Regards,
    Jason

  • Item level link in PO for items added from individual Shopping carts

    Hi all,
    IF i create a PO in Sourcing using multiple shopping carts,then for each of the item in the PO ,is there any link which has details about the Line item of the SC from which the PO was created?I am looking for some link in the PO(created from multiple carts) at the item level with the Items in the shopping cart.
    E.g. I create PO 100 from cart 10 and Cart 20.
    CArt 10:
    Line item A
    cart 20:
    Line item B
    PO 100:
    Line Item A(1st item)
    Line item B(2nd item)
    For the above example,is there any link in PO 100 for item A in SC 10 and for item B in SC 20?
    Thanks in advance.

    What are you trying to achieve? What other link do you need if you get the item GUID (this is not the shopping cart number!)? The item GUID is a unique number in the SRM system that is only used for that particular item. So there is no need to identify it any further or in any other way?
    So 4 ways to get it:
    1. use the correct tables (CRMD_ORDERAMD_I & BBP_PDIGP using GUID and SRC_GUID from the top of my head).
    2. Use the BBP_PD_PO_ITEMGETDETAIL Function Module (do a search for BBP_PD_PO* in transaction SE37 to find the correct name).
    3. use transaction BBP_PD (only reference)
    4. use the PO transaction in internet explorer and check the preceding shopping carts
    Regards,
    Robin

  • "Create Limit" Item not visible in Shopping Cart for Employee

    Hi Experts,
    The employee user has the following roles in SRM 701 system.
    /SAPSRM/EMPLOYEE
    /SAPSRM/EMPLOYEE_EHP1. The user is not able to see the "Create Limit Item" option in Shopping cart & hence not able to create a limit item in the shopping cart.
    The Purchase user has the following roles in SRM 701 system.
    /SAPSRM/OP_PURCHASER_ADMIN
    /SAPSRM/OP_PURCHASER
    /SAPSRM/OP_PURCHASER_EHP1. This user is able to create Limit Item in the shopping cart using the "Add Item" Menu.
    My requirement is to allow the users of type "Employee" to allow creating the limit items in the shopping cart. Could you please give some guidance on what needs to be done?
    Thank you.
    Thanks & Regards
    Kasee

    Hello Kasee,
    As per the details given by you, you are using a mix of SRM70 and SRM 701 roles for the same user and hence system behavior will not be correct and it will lead to issues.
    I suggest you to try the scenario with user having roles of one release i.e. either assign SRM 70 or SRM 701 roles.
    Also if you are using portal , there also you have to map the user roles accordingly.
    Moreover with SRM 701 we have the Easy Shopping cart delivered to customers where the user can only add items from Catalogs or Free text ones. You will not get different options like provided in the professional or normal shopping cart used in the SRM 70 releases.
    With the /SAPSRM/EMPLOYEE  role ( SRM 70 ) in the abap system and portal, you will get an option to add limit items in the SC's.
    Same applies to the OP purchaser roles. Its not recommended to use /SAPSRM/OP_PURCHASER  & /SAPSRMOP_PURCHASER_EHP1  roles together for one user.
    You can also refer to the note 1476447 SAP SRM 7.0 EHP1 : Important info on New Functionality for more references.
    Hope this will answer your query here.
    Thanks & Best Regards,
    Rahul
    Edited by: Rahul Rastogi on Jan 11, 2012 9:53 AM

  • Need to delete / clear PO value for a deleted shopping cart item.

    Hi friends
    Please help me on below mentioned issue.
    I have a shopping cart with one deleted item, That deleted item shows a PO number under table BP_PDBEI field BE_OBJECT_ID in production server.
    User want that PO number to be delete or clear from that shopping cart deleted item.
    We are not authorize to delete or clear a entry from the SAP standard table itself.
    Is there any function module, I can use directly in production server which can delete / clear this PO number from table BP_PDBEI field BE_OBJECT_ID from shopping cart deleted item
    Please help urgently.
    Thanks a lot in advance.

    Hi
        check this FM
    ISM_PORDER_DELETE
    ISM_PORDERNEW_DELETE
    ISM_PORDERRET_DELETE
    Regards,
    Viquar Iqbal

  • Need to delete PO value for a deleted shopping cart item.

    Hi SRM experts
    Please help me on below mentioned issue.
    I have a shopping cart with one deleted item, That deleted item shows a PO number under table BP_PDBEI field BE_OBJECT_ID in production server.
    User want that PO number to be delete or clear from that shopping cart deleted item.
    We are not authorize to delete or clear a entry from the SAP standard table itself.
    Is there any function module, I can use directly in production server which can delete / clear this PO number from table BP_PDBEI field BE_OBJECT_ID from shopping cart deleted item
    Please help urgently.

    Hi Sharma,
    normally if this PO doesn't have further follow-on documents, should be able to be deleted. Once the PO is deleted, the SC will be updated and in the follow-on document history of the SC you will see an additional remark "follow-on document deleted".
    But I guess, this is not what you would like to do.
    Without manual database changes you won't be able to delete the connection between the SC and PO.
    If you somehow will get authority to the database changes, please don't forget to delete also the relations between PO and SC. You will find it in the tables SRRELROLES and BBP_PDBINREL.
    Regards,
    Peter

  • Addition of a inputfield as column to item level table in shopping cart

    Dear Experts
    i added a new inputfield to item level table as columen of Shopping cart and binded a variable from context. that column is displayed in the table but it is displayed in Disabled mode im not able to give input to the column(as it is a inputfield).
    I checked the table column property it is enabled and i aslo configure on the SPRO, nothing is woring for me.
    Please giude me to make the table column enabled so that i can give input..
    Regards
    Arun.K.P

    Hi  Arun ,
    you need to maintain the Meta data entries ,
    Navigate path
    spro->sap implementation guide->Supplier Relationship Management->SRM server->cross application basic settings-> extension and field control->create table extension and supply with data->control table extension and there field action-> configure control of fields of table extension .
    Thanks & Regards
    Pradeep Kumar Dondeti

  • How to show purchasing group members in the item data of the shopping cart?

    Dear Experts,
    for s shopping cart in SRM 7.0 CS, i have the following business requirement:
    In the item data tab of the line item details, the drop down field for Purchasing group is there. Right to this field, there is also a link called "Show members".
    If i go on this link, than a small table opens that obviously is there to contain such additional information about the purchasers like name, telephone nummber or extension.
    Currently, this small table does not contain any of this additional information for any of the used purchasing groups.
    Can you please help me understand, how and where i can maintain this information in the sytem, so it shows in the shopping cart?
    Thank you very much for your help.

    Hi,
    thank you very much for the answer.
    Actually, the question is not how to create the organizational unit of purchasing group in the PPOMA. This is all done. I just would like to understand, whether there is somewhere a place where i can maintain the name and maybe also the phone number of the buyer himself.
    Thus, i would hope to see these details (i.e. the name and the phone number) in that small table that opens up if i click on the "Show members" link that is situated right to the purchasing group field in the "Item data" tab of the details of the line item.
    Thank you.

  • Contract item not appearing in Shopping cart sourcing

    Hi Team,
    I created a contract from External Catalog that has  Description and Product Category, but no product ID for the item selected.
    Now, I created a Shopping cart from the same catalog. I need this Contract to appear in the Sourcing area of the shopping cart, but since there is no product Id, the contract is not appearing.
    How can I resolve this. This works perfect if I create a Contract for item with Product ID.
    Please help.

    Hi,
    In your case, Vendor Product Number (Supplier Parts Number) is required.
    Please make sure that Vendor Product Number is in catalog and contract.
    Regards,
    Masa

Maybe you are looking for

  • Declaring a variable in the Script?.

    Hi, Will it be possible to define the variable in the form?.. I have used the DEFINE statement, will the define statement behave as a constant?...Please see the below code: Defined the variable - 'l_barcode_flag' with the SPACE. In the perform am cha

  • How do i install and boot mac os 10.4 on a usb flash drive?

    i want to make a bootable flash drive for my powerbook g4 and i have a mac os 10.4 on a install disk.. i want to be able to boot from the flash drive.

  • Selection of BOM and Routing in Cost estimate

    Hi I have an issue with the cost estimate run. We are using CK40n for cost estimate. The selection method in MRP 4 is defined as 3 (only by prod version) and the version indicator is maintained in the costing views also. When we run the cost estimate

  • Changing content repository for external archiving:

    Recently my company is in the process of transitioning from one document archiving server to another.  We configured a new content repository in our system, and then I used transaction OACT to change the content repository for the category of documen

  • Java OutputStream help

    Hello all, I am relatively new to using Java's Output and Input streams. I know the basics and I know how to use them but what is driving me crazy is I am not entirely sure how it works. For example I know the following code writes a file from an Inp