Kindly explain the step by step procedure for configuring sales order stock

Hi friends,
can anybody explain the step by step procedure for configuring sales order stock.
Stock that is used for a sales order. It is directly allocated to a sales order. Components can only be used to produce material ordered by the customer and the finished product can only be delivered to the customer via the sales order.
You can manage valuated or non-valuated sales order stock.
If the sales order stock is not valuated, it is managed via a cost collector. The system does not carry out invoice verification postings for goods movements, and you cannot obtain an overview of how the stock is valuated until the end of the settlement period in Controlling.
If the sales order stock is valuated, you have immediate access to its value in Financial Accounting. The assigned accounts are debited and credited as a result of the valuated goods movements.
but i am not clear of how to map it into sap.kindly explain it step by step.
regards,
willaims

Follow the link
this will explain about complete config
http://help.sap.com/bp_bblibrary/600/Documentation/V4J_BB_ConfigGuide_EN_US.doc

Similar Messages

  • Pls explain sales order stock step by step with t-codes

    Hi friends,
    can anybody explain the step by step procedure for configuring sales order stock.
    Stock that is used for a sales order. It is directly allocated to a sales order. Components can only be used to produce material ordered by the customer and the finished product can only be delivered to the customer via the sales order.
    You can manage valuated or non-valuated sales order stock.
    If the sales order stock is not valuated, it is managed via a cost collector. The system does not carry out invoice verification postings for goods movements, and you cannot obtain an overview of how the stock is valuated until the end of the settlement period in Controlling.
    If the sales order stock is valuated, you have immediate access to its value in Financial Accounting. The assigned accounts are debited and credited as a result of the valuated goods movements.
    but i am not clear of how to map it into sap.kindly explain it step by step.

    thank you

  • What's the name of FM for getting Sales Order Header / Item Status info

    Hello All:
    Do you know what's the name of Function Module for getting Sales Order Header / Item Status Overview ? Any sample code will be very much appreciated.
    Basically, I am trying to create a Webpage where user can enter the Sales Order document number and will return the Sales Order: Status Overview.
    Thanks,
    Dipankar Biswas

    Thanks everybody ! Appreciate for your prompt response. I was also looking for some sample code, and I did find some on. And here is one. I still have to try the code, but here is for all your reference:
    *& Report ZBAPI_SALESORDER_GETSTATUS *
    *& Read and Display the Sales Order Items and Status of the Order *
    REPORT zbapi_salesorder_getstatus NO STANDARD PAGE HEADING LINE-SIZE 200 LINE-COUNT 33(3).
    TABLES: vbap. "Sales Document Item Data.
    DATA: wa_bapireturn TYPE bapireturn,
    wa_bapisdstat TYPE bapisdstat,
    it_bapisdstat LIKE STANDARD TABLE OF wa_bapisdstat.
    TYPES: BEGIN OF ty_mat_name,
    matnr TYPE makt-matnr,
    maktx TYPE makt-maktx,
    END OF ty_mat_name.
    DATA: wa_mat_name TYPE ty_mat_name,
    it_mat_name LIKE TABLE OF wa_mat_name WITH KEY matnr .
    PARAMETERS: p_vbeln LIKE vbap-vbeln DEFAULT 5573.
    START-OF-SELECTION.
    SELECT matnr maktx FROM makt INTO TABLE it_mat_name.
    CALL FUNCTION 'BAPI_SALESORDER_GETSTATUS'
    EXPORTING
    salesdocument = p_vbeln
    IMPORTING
    return = wa_bapireturn
    TABLES
    statusinfo = it_bapisdstat.
    IF wa_bapireturn IS INITIAL. " Successful Execution.
    WRITE: / 'Document No: ' COLOR 1, 20 'PO Number : ', 40 'Status' , 50 'Delv.Stat',60 'Item No', 80 'Material', 90 'Material Description', 130 'Net Price' COLOR 2.
    ULINE.
    LOOP AT it_bapisdstat INTO wa_bapisdstat.
    WRITE: / wa_bapisdstat-doc_number. " Sales Document Number.
    READ TABLE it_mat_name INTO wa_mat_name WITH KEY matnr = wa_bapisdstat-material.
    WRITE: /20 wa_bapisdstat-purch_no, " Customer Purchase Order Number
    40 wa_bapisdstat-prc_stat_h, " Processing Status
    50 wa_bapisdstat-dlv_stat_h, " Delivery Status
    60 wa_bapisdstat-itm_number, " Item Number
    80 wa_bapisdstat-material, " Material
    90 wa_mat_name-maktx, " Material Description
    130(10) wa_bapisdstat-net_price. " Net Price
    CLEAR wa_bapisdstat.
    ENDLOOP.
    REFRESH it_bapisdstat[].
    ELSE.
    WRITE: wa_bapireturn-message.
    ENDIF.

  • Deleting Partners from the Customer Master that are on Open Sales Orders.

    Does SAP handle removing the Partner from Open Sales Orders when a Partner is deleted in the Customer Master.  For us, this is not happening, this there some config that must be turned on for this to happen ? 
    Or do we have place in code in a User Exit in the Customer Master to check for Open Sales Orders and if so, block the Deleting of the Partner ?  If so, what User Exit should be used ?
    Looking to see how others have handled this.
    Thanks,
    David

    Hi David,
    Try this user exit.
    RFDRRANZ  User exits: Accounts Receivable Information System
    Regards,
    Vijay

  • Smartforms SAP-delivered form template for SD Sales Order Confirmation

    All,
    I am trying to find the SAP-delivered form template for SD Sales Order Confirmation. I looked in OSS Note 430621 and I can not see it there.
    This is the sales order likeness of what LB_BIL_INVOICE is for invoice.
    Thanks in advance, Saint Paul Pete

    Hi Balaji,
    This is your old friend damo(annamali university)!. Saw your question!. I will send you the answer.
    [email protected]
    Regards,
    Damo

  • Sales order stock problem at the time of PGI

    Dear Experts
    When a sales order is being created , the delivery is done.The moment PGI is done the system gives  a error prompt as " sales order stock XXXXX not created for the item YYYY"
    I dont want this to happen.
    I wish that at the time of PGI system should simply and directly pick the qty from the storage location and do the PGI.
    Also we dont have availabilty check at the delivery item ctgy level.
    Expert suggestions are required.

    Hi
    Go to MB1B and enter movement type 412 , special stock E and enter
    then enter sales order no and item no
    enter storage location, material and quantity and save it
    other wise in sales order VA02
    go to procurement tab in the overview screen change requirement type to daily requirement
    you will need not to do the above process
    regards
    vardhan

  • Minimum mandatry fields for Creating Sales Order

    Hi All,
    I am going to create sales order using <b>BAPI_SALESORDER_CREATEFROMDAT2</b> in the web dynpro for java,
    I want to use minimum fields,  so, what are the <b>minimum</b> fields for creating sales order ?.
    if u have any documents or links realted to this please send me.
    please help me out.
    Thanks & regards,
    Iqbal Ahmad

    chk it
    EXPORTING
    SALESDOCUMENTIN =
    ORDER_HEADER_IN = l_order_header
    ORDER_HEADER_INX =
    SENDER =
    BINARY_RELATIONSHIPTYPE =
    INT_NUMBER_ASSIGNMENT =
    BEHAVE_WHEN_ERROR =
    LOGIC_SWITCH =
    TESTRUN =
    CONVERT = ' '
    IMPORTING
    SALESDOCUMENT = l_salesdocument
    TABLES
    RETURN = it_return
    ORDER_ITEMS_IN = it_order_items
    ORDER_ITEMS_INX =
    ORDER_PARTNERS = it_order_partners
    ORDER_SCHEDULES_IN = it_order_schdl
    ORDER_SCHEDULES_INX =
    ORDER_CONDITIONS_IN = it_order_conditions
    ORDER_CONDITIONS_INX =
    ORDER_CFGS_REF =
    ORDER_CFGS_INST =
    ORDER_CFGS_PART_OF =
    ORDER_CFGS_VALUE =
    ORDER_CFGS_BLOB =
    ORDER_CFGS_VK =
    ORDER_CFGS_REFINST =
    ORDER_CCARD =
    ORDER_TEXT =
    ORDER_KEYS =
    EXTENSIONIN =
    PARTNERADDRESSES
    How to create sales order using bapi( test purpose)
    Create Sales Order using BAPI
    creating sales order using bapi

  • RR Reversal for deleted sales order items

    The revenue has been recognised for a sales order. but somehow user deleted this sales order. it seems there was some problem in the deletion. i can still see the sales order in VBAP but not in VBAK.
    Is there a way to reverse the RR for this sales order? The sales order appears as open item in FBL3n.

    The revenue has been recognised for a sales order. but somehow user deleted this sales order. it seems there was some problem in the deletion. i can still see the sales order in VBAP but not in VBAK.
    Is there a way to reverse the RR for this sales order? The sales order appears as open item in FBL3n.

  • Kindly explain the exact configuration of Video Editing Suite: Adobe premiere pro CS6.1, its price in India and if it is also equipped to edit photographs

    Kindly explain the exact configuration of Video Editing Suite: Adobe premiere pro CS6.1, its price in India and if it is also equipped to edit photographs too.

    This is a user to user forum.  We are not Adobe.  For pricing information, you need to contact Adobe Sales in India.
    Premiere Pro is just for editing video.  Photoshop or Photoshop Elements is for editing photographs.

  • Kindly Explain the Process of Releasing Standard Cost

    Hello SAP Gurus....,
    Kindly Explain the Process of Releasing Standard Cost..
    Thank you very much!

    Hi,
    Once you save cost estimate without error, then you need to run ck24 .
    Check marking allowance is given for company code for current period.
    then first mark the material/s,plant/s to be mark & execute in test . it will show number of materials sucessfully marked. & remove test run & execute.
    Then release cost by clickin on release button for same selection.
    regards,
    Deepak

  • Pricing procedure for Depot Sales(CIN Version)

    HI,
    Can anyone explain me TAXINJ and
    The Pricing procedure for Depot Sales(CIN Version)
    alongwith the Condition Types like JMOD,JECS,JECX etc.
    Points will be given
    Regrds,
    Binayak

    Hi Binayak.
    JMOD is a FI Tax condition which gets the Basic Excise duty from calculation formula 352. JEX2 is a copy of JMOD and is a Sales pricing condition. The value of JEX2 gets posted for Excise account key. This ensures that the cost accounting of excise value paid is done correctly. In cases where commercial invoice is created after utilization the condition value formula 353 ensures that the actual MODVAT utilized is accounted as excise.
    Similarly JAED is a FI Tax condition which gets the Additional Excise duty from calculation formula 352. JEXA is a copy of JAED and is a Sales pricing condition. The accounting is done for the value of JEXA.
    JSED is a FI Tax condition which gets the Special Excise duty from calculation formula 352. JEXS is a copy of JSED and is a Sales pricing condition. The accounting is done for the value of JEXS.
    JCES is a FI Tax condition which gets the CESS from calculation formula 352. JCED is a copy of JCES and is a Sales pricing condition. The accounting is done for the value of JCED.
    So, Conclusion :---->
    JMOD  -- >  Basic Excise duty condition  for FI side.
    corresponding to it,
    JEX2 is the Basic Excise duty condition  for SD side.
    That's why
    account key to  JMOD is linkes in TAXINJ.
    and     
    account key to  JEX2 is linkes in JDEPOT.
    Hope this certainly helps you.
    Please reward points if found useful to you.
    Let me know if you have any other doubt.
    Regards,
    Gaurav Raghav.

  • "pricing procedure for captive sales"

    hi,
    i want to know , how to maintain pricing procedure for captive sales.
    please help .
    thanks

    Hi
    I guess you can use the standard pricing procedure, as captive sale is kind of 'forced ' sales, you have to buy from a particular vendor. Or in case, you are the vendor, a customer can only buy from you, smetimes due to a contract.
    regards,
    Sidi

  • Reserving the sales order stock for a customer

    Hello SAP gurus !!
    My client is wants to Reserve the stocks once the order is placed or confirmed by the Customers.
    For Example; -- 
    If 10 c/s are available in the plant and a customer has ordered 10 c/s...  next time .. if someone is creating order for the same Material, system should not confirme sales Order as this particular stock has already booked by the  customer.
    Can we MAP this scanario in creating DUMMY sales order??
    I have also tried to move the sales order stock to Reserved Stock by creating Reservations (Tcode MB21) using movement type 412 E.
    but i m not sure whether i m on the right way or wrong??
    Please help me on this particular issue. Points will be rewarded for Helpful answers.
    Thanks in advance.
    Regards,
    MAYANK

    Hi Ravi
    Actually we have started this particular issue with Product Allocation only.... but the problem with product allocation is : you can not reserve/block the stocks even if it has been allocated to other customers.
    If some other user is creating the sales Order for some other customer, system will confirm and you can do the delivery also.
    Basically Client want to first allocate( here allocation could be through creation of Dummy Sales Order also)  then also want to BLOCK /RESERVE for those customers... so that nobody should be allowed to use those Stocks.
    We have Already tried with:--
    1. Product Allocation
    2. OVZ9 ( checking Group 02/ Sales Order Combination)
    3. MB21 ( creating Reservation with Movement Type 412 E)
    4. Consignment Process
    & some other Options but exact requirement has not been met.
    Now we are trying to solve this Issue using some scenarios Other than Prod Alloc.
    I hope i have clearly explained the requirement still you have any doubts, please revert back.
    Thanks in advance
    Warm Regards,
    MAYANK

  • Storage Location Error duing GR of Subcontarct for The Sales Order Stock.

    HI ,
    Is there any settings  to avoid individual entry of Storage Location field for the child components during  the  Goods Receipt from Subcontractor  for the Sales Order Stock.
    As per SAP standard , I have created Separate storage location for Sales order stock components as the Stock provided to vendor  . While receiving the header component , System showing error to enter storage location for all the BOM component s .  My Requirement is , Storage location should come automatically for the child component while receiving the Header Component.
    Yogesh.K.

    Hi Jurgen,
    He's right, the posting is not a bug.
    In case of MTO scenario, if components are managed in the sales order / project stock system withdraw them from storage location.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/4d/2b90b043ad11d189410000e829fbbd/frameset.htm
    The subcontracting orders are account-assigned to a sales order or a WBS element. Thus, the components are not transferred (using a transfer posting) to the "stock of material provided to vendor" but are directly withdrawn from the sales order stock or the project stock at the time of the goods receipt.
    Since the components are not transferred to the "stock of material provided to vendor", we recommend that you use a transfer posting to transfer the provided components to a new storage location (for example, 9999). This enables you to obtain an overview of those stocks that are physically located at the subcontractor. This information is particularly important when you carry out a physical inventory of the sales order stocks and project stocks.
    Cs.
    Edited by: Csaba Szommer on Jan 5, 2010 7:17 PM

  • Account Determination for the Procurement of Sales Order Stock

    Dear All,
    I am trying to a procure stock with reference to  a sales order(with Account Assignment Cat E in PO),System is not picking/posting the stock into BSX inventory Account upon Goods Receipt.
    The requirement is to post the sales order stock procured on to the Inventory Account BSX and to be shown seperately as Sales order stock.
    Please advice.
    Regards
    Karthik

    Hi,
    Go to sales order VA03, here under "Procurement" Tab, check the "RqTy" (Requirement type for e.g. KE)
    Now go to OVZH, here check the requirement class for Requirement type KE, it will be "040" for e.g.
    Now go to SPRO > Sales and Distribution > Basic Functions > Account Assignment/Costing > Maintain Requirements Classes For Costing/Account Assignment > Here for Requirement Class "040", enter following;
    Acct assignment cat.        E
    Valuation                   M (Separate valuation with ref. to sales document/project)
    Then do the cycle again and check.

Maybe you are looking for