External Inventory Feed - Wish to Exclude Customer Order Stock

We have an hourly inventory job, which writes available inventory to an external file.  Recently, we learned that the report is including material which has already been reserved for future customer orders (see for example in MD04).  We do not have an ABAP programmer on staff so I am posting our existing code below and would appreciate hugely an updated script.
I've seen references in other searches to MD04 and use of function 'MD_MPS_READ_STOCK_REQMTS' as well as 'BAPI_MATERIAL_STOCK_REQ_LIST', but do not know how to incorporate this into the hourly job.
As you can see, the report output is being pulled from MARD-LABST, unrestricted, but it needs to also exclude allocated customer order stock.
Thank you in advance for looking.
*& Report  ZMM_INVENTORY_FEED*&*&---------------------------------------------------------------------**&*&*&---------------------------------------------------------------------*
REPORT  zmm_inventory_feed NO STANDARD PAGE HEADING.
TABLES:mara,marc,mard,mvke.
*-------------Types Declaration----------------------------------------*TYPES:BEGIN OF ty_file,
      text(500),
      END OF ty_file,
      BEGIN OF ty_mard,
      matnr    TYPE mard-matnr,
      werks    TYPE mard-werks,
      lgort    TYPE mard-lgort,
      labst    TYPE mard-labst,
      mstae    TYPE mara-mstae,
      maktx    TYPE makt-maktx,
      mvgr2    TYPE mvke-mvgr2,
      END OF ty_mard,
      BEGIN OF ty_final,
      supplier TYPE lfa1-lifnr,   "Supplierid
      matnr    TYPE mard-matnr,   "Item no
      labst    TYPE char13,       "Qty
      qtyback  TYPE char13,       "Qtyback
      qtyorder TYPE char13,       "Qtyorder
      itemav   TYPE c,            "Itemavdate
      itemdis  TYPE char13,       "Discount
      desc     TYPE makt-maktx,   "Description
      END OF ty_final.
*----------Internal Table Declaration---------------------------------*DATA:it_mard   TYPE TABLE OF ty_mard,
     it_final  TYPE TABLE OF ty_final,
     it_file   TYPE TABLE OF ty_file,*----------Work Area Declaration--------------------------------------*
     wa_mard   TYPE ty_mard,
     wa_temp   TYPE ty_mard,
     wa_final  TYPE ty_final,
     wa_file   TYPE ty_file.
*----------Local variable Declaration---------------------------------*DATA: lv_labst   TYPE char13,
      lv_labst_i TYPE i,
      lv_labst1  TYPE char13,
      lv_labst2  TYPE j_1itaxvar-j_1itaxam1,
      lv_mess    TYPE string.DATA lv_filename TYPE char100.*----------Selection-Screen Declaration-------------------------------*SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS:s_mstae  FOR mara-mstae OBLIGATORY,                     "Material Status
               s_mvgr2  FOR mvke-mvgr2 OBLIGATORY,                     "Material Group
               s_matnr  FOR mara-matnr,                                "Material Number
               s_werks  for mard-werks,
               s_lgort  FOR mard-lgort.PARAMETERS:    p_per(3) TYPE n DEFAULT 20,                             "Percentage
               p_appl   TYPE rlgrap-filename DEFAULT '\\Appsrv02\Datadown\DropShip_SAP_Test\'. "File Path
SELECTION-SCREEN END OF BLOCK b1.*----------End Of Declarations----------------------------------------*
*AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_appl.*  PERFORM f4_filename.                     "F4 help for file path
START-OF-SELECTION.
  PERFORM get_data.
  PERFORM process_data.
  PERFORM file_export.*&---------------------------------------------------------------------**&      Form  GET_DATA*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM get_data .
  SELECT a~matnr
         a~werks
         a~lgort
         a~labst
         b~mstae
         c~maktx
         d~mvgr2 INTO CORRESPONDING FIELDS OF TABLE  it_mard
                       FROM mard AS a
                 INNER JOIN mara AS b
                         ON b~matnr = a~matnr
                 INNER JOIN makt AS c
                         ON c~matnr = a~matnr
                 INNER JOIN mvke AS d
                         ON d~matnr = a~matnr
                      WHERE mstae   in s_mstae              "Exclude Material Status Filteration
                        AND a~werks IN ('1100','1200')        "Plant in 1100 and 1200
                        AND mvgr2   IN s_mvgr2              "Exclude Material group
                        AND a~matnr IN s_matnr
                        and a~werks in s_werks
                        AND a~lgort in s_lgort.
  SORT it_mard BY matnr werks lgort.
  DELETE ADJACENT DUPLICATES FROM it_mard COMPARING matnr werks lgort.ENDFORM.                    " GET_DATA*&---------------------------------------------------------------------**&      Form  PROCESS_DATA*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM process_data .
*--------------File Header Information --------------------------------*
  wa_final-supplier    = 'Supplier Id'.
  wa_final-matnr       = 'Item Number'.
  wa_final-labst       = 'Total Qty'.
  wa_final-qtyback     = 'Qty Backordered'.
  wa_final-qtyorder    = 'Qty on Order'.
  wa_final-itemav      = 'Item NextAvdate'.
  wa_final-itemdis     = 'ItemDiscont'.
  wa_final-desc        = 'Description'.
  CONCATENATE  wa_final-supplier
               wa_final-matnr
               wa_final-labst
               wa_final-qtyback
               wa_final-qtyorder
               wa_final-itemav
               wa_final-itemdis
               wa_final-desc    INTO wa_file
                                SEPARATED BY ','." RESPECTING BLANKS.
  APPEND wa_file TO it_file.
  CLEAR :wa_final,
         wa_file.*------------------End File Header---------------------------------------*
*------------------File Item Data----------------------------------------*
  LOOP AT it_mard INTO wa_temp.
    wa_mard = wa_temp.
    MOVE:wa_mard-matnr TO wa_final-matnr,  "Item No
         wa_mard-maktx TO wa_final-desc.   "Description
    IF wa_mard-werks     = '1100'.
      wa_final-supplier  = '6476'.         "Supplierid
    ELSEIF wa_mard-werks = '1200'.
      wa_final-supplier  = '6477'.
    ENDIF.
    IF wa_mard-labst IS NOT INITIAL.
      lv_labst1 = lv_labst1 + wa_mard-labst.
    ENDIF.
    AT END OF werks.
      IF wa_mard-mstae = 'AE'.
        wa_final-itemdis = '0'.        "Item Discontinued
      ELSEIF wa_mard-mstae = 'CM' OR wa_mard-mstae = 'DR'.
        wa_final-itemdis = '1'.
      ENDIF.
      IF lv_labst1 IS NOT INITIAL AND p_per IS NOT INITIAL.
        lv_labst = lv_labst1 * p_per / 100. "Qty
        lv_labst = lv_labst1 - lv_labst.
        IF lv_labst LT 0.                    "If Qty less than Zero Make it as Zero
          lv_labst = 0.
        ENDIF.
      ELSE.
        lv_labst = lv_labst1.
      ENDIF.
      lv_labst2 = lv_labst.                  "Rounding to Nearest Qty
      CALL FUNCTION 'J_1I6_ROUND_TO_NEAREST_AMT'
        EXPORTING
          i_amount = lv_labst2
        IMPORTING
          e_amount = lv_labst2.
      lv_labst_i = lv_labst2.
      lv_labst = lv_labst_i.
      CONDENSE lv_labst.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input         = wa_final-matnr
       IMPORTING
         OUTPUT        = wa_final-matnr
      CONCATENATE wa_final-supplier
                  wa_final-matnr
                  lv_labst
                  wa_final-qtyback
                  wa_final-qtyorder
                  '          '"'00/00/0000' "wa_final-itemav
                  wa_final-itemdis
                  wa_final-desc INTO wa_file
                                SEPARATED BY ','." RESPECTING BLANKS.
      APPEND wa_file TO it_file.
      CLEAR:lv_labst1,
            lv_labst,
            lv_labst2,
            wa_file.
    ENDAT.
    CLEAR:wa_mard,
          wa_temp,
          wa_final.
  ENDLOOP.*---------------------------End  File Item data----------------------*ENDFORM.                    " PROCESS_DATA*&---------------------------------------------------------------------**&      Form  FILE_EXPORT*&---------------------------------------------------------------------**       text*----------------------------------------------------------------------*FORM file_export

What you said is exactly what I want! Very thankful for your help.
Yes, I have found that in EBEW table that standard price is valuated with preliminary cost estimate because I don't give a sales order cost estimate but I give an sales order stock in the customizing - requirement class. So, I have this question that how the sales order stock is determined.
In COPA customizing (COprofitability analysismaster datavaluationSet up valuation using material cost estimate), standard cost estimate or sales order cost estimate can be transferred into COPA value fields in our system.
But, I have still have a question: I found in our system, preliminary cost estimate in the linked production order is determined for valuation of sales order stock in EBEW table. As sap online help says, cost component splits can not be transferred to COPA.
So, according to SAP online help, I think what you said u201Cu2026..However , when we start thinking about the result of this cost to flow into COPA , this cannot happen as the Inventory was valued with a Preliminary csot estimate. So , the Online help says that it will not be able to transfer Result of Preliminary cost estimate into COPA for transferrring COGS details. System would always require a Standard cost estimate or a Sales order Cost estimate to flow Cost details into COPAu201D is correct.
But, in our system, cost component can be transferred into COPA!? When I create a sales billing (invoice) with tcode VF01, it can create a profitability analysis document (shown in VF03) which it had a cost component split for that material in the sales order stock valuated with the preliminary cost estimate. Or where is stored for the Make-to-Order materialu2019s cost component split in COPA?
That is the real point that confused me. Hope you can help me. Thanks very much.

Similar Messages

  • Different Method to valuate sales order stock

    Dear expert,
         I came across a problem and I need your help:
         Scenario: Make-To-Order production without sales order controlling.  Uses standard price in material master record.
         As we know, There are a predefined sequence to valuate sales order stock: First, The system uses the standard price on the basis of your customer exit COPCP002 Material valuation for valuated sales order stock. If not defined COPCP002, Then, the system uses sales order costing.  Then, the system determines the standard price using the production order cost estimate. At the end,  the system determines that If you manufacture a material both for the make-to-stock-inventory and for the valuated sales order stock, the system reads the material master record of the collective requirements material.
         In SAP online Help, there is a note that: If you calculate the standard price of sales order stock in a preliminary cost estimate for the manufacturing order or use the price in the material master record, you cannot transfer cost component splits into COPA. This is my doubt: I don't know exactly where are the differences between sales orde costing and standard price in material mater to determine sales order stock.
         So, I have a question:  What are the extract diffences between using sale order cost estimate and the standard price in the material master record to determine valuated sales order stock?
         Thanks for your help.  Best regards,

    What you said is exactly what I want! Very thankful for your help.
    Yes, I have found that in EBEW table that standard price is valuated with preliminary cost estimate because I don't give a sales order cost estimate but I give an sales order stock in the customizing - requirement class. So, I have this question that how the sales order stock is determined.
    In COPA customizing (COprofitability analysismaster datavaluationSet up valuation using material cost estimate), standard cost estimate or sales order cost estimate can be transferred into COPA value fields in our system.
    But, I have still have a question: I found in our system, preliminary cost estimate in the linked production order is determined for valuation of sales order stock in EBEW table. As sap online help says, cost component splits can not be transferred to COPA.
    So, according to SAP online help, I think what you said u201Cu2026..However , when we start thinking about the result of this cost to flow into COPA , this cannot happen as the Inventory was valued with a Preliminary csot estimate. So , the Online help says that it will not be able to transfer Result of Preliminary cost estimate into COPA for transferrring COGS details. System would always require a Standard cost estimate or a Sales order Cost estimate to flow Cost details into COPAu201D is correct.
    But, in our system, cost component can be transferred into COPA!? When I create a sales billing (invoice) with tcode VF01, it can create a profitability analysis document (shown in VF03) which it had a cost component split for that material in the sales order stock valuated with the preliminary cost estimate. Or where is stored for the Make-to-Order materialu2019s cost component split in COPA?
    That is the real point that confused me. Hope you can help me. Thanks very much.

  • Adding Inventory functionality to a custom Order Management Menu

    We have custom menus set up to limit access for users. We currently have a user that needs the 'Move Order' functionality from the Inventory module. This user does not have access to any inventory functionality. I would like to add the 'Move Order' submenu to a custom order management menu she does have access to. Would this work as anticiipated or would this introduce issues in one or both modules? Thanks.

    Hi,
    There should be no issue if you add the proper submenu. You may also need to add some functions which could be relevant to this submenu for accessing it properly from the custom responsibility.
    I would suggest you try this on test instance first, then move it to your production environment.
    Regards,
    Hussein

  • External Procurement with a Valuated Sales Order Stock

    Hi Experts,
    I read the following in SAP Help,
    For external procurement with a Valuated Sales Order Stock, system generates a purchase requisition from the sales order.
    If you are using a valuated sales order stock, the externally procured material is assigned to inventory at the time of the goods receipt. If the sales order item is flagged as carrying costs and revenues, then when the goods issue for delivery to the customer takes place, the sales order item is debited with the costs of the externally procured material.
    My question is - it says costs of external procurement is debited to sales order item when " goods issue for delivery to the customer takes place"
           - but in my case, when I made the GR for purchase order (created automatically by sales order), system directly posted the procurement cost as actual costs to the sales order item. There is no delivery for sales order done still.
    So actually, when should the external procurement cost be debited to sales order item -- when GR for purchase order is done (or) when  goods issue for delivery to the customer takes place?
    Thanks,
    GAN

    Hi Rafi,
    Thanks for your reply. I understand the problem now.
    Material which comes from prod order is posted statistically (value type 11) to sales order when GR for prod order is done.
    Here, the issue is about a GR for purchase order (assigned to sales order). This material purchased is not used in any production process. Its a material which is supplied to customer along with main material produced in house.
    In purchase order, I have given the consumption account (which is cost element 1). Entry was Consumption Dr and GR/IR Cr. So, this posted as actual cost to sales order.
    I should have given inventory account in purchase order (with cost element 90).
    Its a mistake of using consumption account in purchase order.
    Thanks.
    GAN.

  • Cannot release inventory allocated as Sales Order Stock

    Hi All,  I'm very new to SAP and am somewhat unfamiliar with the SD process.  We created a Sales Order (from a customer purchase order), everything was okay until we tried to do an ATF; a change was made to the strategy group (from 20 - MTO to 40 - MTO with final assembly).  That change allowed us to create a new sales order and successful do the ATF and ship the order.  Now, however, we find that there is one item in inventory that has been allocated to that old sales order as "Sales Order Stock", we can see this in MMBE.  We've tried to delete the sales order, but it cannot be deleted.  When we try to delete it, we're getting a message "For reasons of cost management item 000010 cannot be deleted, Message No. V1128"; we have no idea what this means or what caused the initial error with the sales order.  Is there a way to relese this inventory and return it to regular stock and delete that old sales order?  Hope I gave enough information, thanks for your help.

    Hi Xamiaca,
                           You key in the sales order number in VA02 and ,you can see the production order number  in the schedule line tab(Production- at the bottom). Take down that number and go to "CO02" and see the status of production order and the settlement status. If the settlement has happened, take a FI/CO consultants help to cancel the Financial postings and reverse the goods issue of this production order. After doing all these go to the sale order and delete the sales order ,this automatically deletes the Production order and the sales order stock. If needed the run the report "SDRQCR21" If still you see any inconsistencies after doing all the above.Kindly please let me know If you need any more information on this.
    Regards
    Ram Pedarla

  • ITunes 9.0.2 Unable to place podcasts in a playlist in custom order

    In previous versions of iTunes it was possible to arrange podcasts in a playlist in the order in which I wished to listen by dragging and dropping items into the desired order in list view. This disappeared in iTunes 9 but it was still possible using a modifier key while dragging an item. 9.0.1 worked perfectly. In 9.0.2 I have again found it impossible to arrange podcasts other than by using the column headers or by editing the titles to get them into a custom order. Has this option gone or am I missing something?

    I have a similar issue which started with iTunes 9, seemed to go away with 9.0.1 and is now back. iTunes will synchronize some previously selected podcast playlists, but it will not allow me to add new playlists to the list for synchronization. Before there were some work-arounds, but none seem to work right now. Anyone else see this? Any ideas?

  • Intercompany billing with thirdparty customer order document flow

    Hi all .
    I have recieved a problem in our Intercompanyprocess
    Heres the scenario
    1. Create customer order with at least 1 itemcategory TAS
    2. Creates an PO from the requisition
    3. recieve and register invoice from vendor via MIRO
    4. Create customer invoice via vf04
    So far so good.
    5. Create intercompany invoice
    From step 5 the documentflow is missing.  I can see the documentflow from customer order until customer invoice but Intercompanybilling is not there. When i look at documentflow on the intercompanyinvoic i can see in document flow
    that the customer invoice is named as external transaction but thats all.
    Somewhere a link has been taken away and i do not know how to fix this.  Hope for your help.

    > The customerorder is entered in companycode 4100
    > po: are entered in companykod 2000
    > Company code 2000 recieve the invoice from vendor
    > Customerorder is invoiced in company 4100
    > Companycode 2000  do intercompanybilling to companycode 4100
    Hi,
    See you are saying that Com code 2000 receives invoice from vendor
    Who is your vendor.....??? Is it com code 4100 or third party ??
    if Vendor is 4100 then why 2000 will invoice 4100.
    It will invoice the customer who has received the material.
    Doc flow would be
    PO to 4100 -material delivery to customer from 4100 -  Invoice from vendor i.e. 4100 - cust. order in 2000 com code - invoice to customer (order related)
    In this case 4100 invoices the 2000......this is nothing but intercompany billing.
    Or
    If Vendor is someone else other than 4100 then there when and why 2000 com code do interbiling to 4100
    In that case doc flow would be
    PO to vendor (third party) - material del. to customer - Invoice from Vendor (third party) - Cust. order in 2000 com code - invoice to customer (order related)
    Hope you are clear now
    Or If I am wrong in interpreting plz detail who is vendor, role of 4100 and 2000, customer
    regards,
    Sagar

  • 'Sales order stock' has to hit inventory account at GR

    I'm facing the completion of the following scenario:
    . sales order to customer
    . sales order item generates purchase requisition, which is converted into a purchase order
    . goods are received in our stock, 'sales order stock'
    . vendor invoice is posted to the purchase order
    . delivery is created, goods issue is posted
    . customer is billed.
    The guy before me configured the whole thing and left, I have to complete it. From a logistical point of view it works fine: it all goes via 'sales order stock'. However from a financial point of view there are some things incorrect:
    . the GR does not post against the regular inventory stock account (in the account assignment of the purchase order there is a GL account and the related sales order line item)
    . the PGI does have any financial posting at all
    What I have to establish is:
    . with GR, material goes into sales order stock with regular financial posting (debit inventory, credit GR/IR)
    .with PGI, material goes out of sales order stock, with financial posting: credit inventory, debit intermediate account (in the billing document the intermediate account is credited and the COGS account is debited).
    Again from a logistical point of view it all looks okay, the financial side is bothering me . . .
    Who can help me out?
    thx
    Ben

    Further to my last message. What item category are you using.
    TAS is for third party, which works as I described. The GR does not post into sales order stock, but direct to cost of sales.
    If you use TAB, then this is individual purchase order. In this case the GR should post to valuated sales order stock, as you expected. If you have other custom item category, then it depends on the configuration of that item category. You could compare it to the SAP standards TAB/TAS. You could also try to test in your test system using the SAP standard item categories. Also if you use material valuation with standard price, make sure the material has a price, or you will not get any posting.
    Rgds
    Richard

  • MD04 / customer order

    Hello,
    In the "MD04 - Stock/requirements list" transaction, for a customer order the date that appears is the required delivery date. Is it possible to display in its place the confirmed delivery date ?
    Thank you for your help.

    JP,
    Yes, it can be done.
    Standard MD04 displays the requirements date, which is the date that MRP uses for planning.  If you set the 'Fixed date & quantity' flag in the Sales order item, MRP will use the confirmed date rather than the requested date, and MD04 will also display the confirmed date.
    FixedDateQty flag can be set in the appropriate sales orders manually (VA02>select Item>Goto>item>schedule lines, checkbox is on the left).
    You can also cause sales orders to default to 'fixed-date-qty' flag as 'set' in IMG>SD>Basic Functions>Availabiltiy check & Transfer of requirements>Availability check>Availability check with ATP logic or against planning>Define default settings.
    Remember, though, that once you set this flag, and you send confirmed date to MRP, it will no longer plan to request date.
    It is generally confusing to have MD04 display one date, but have MRP plan to another.  However, if you wish to do this, then ask your ABAPer's to look at the MD04 Userexits.  Look at [MRP IMG|http://help.sap.com/saphelp_46c/helpdata/en/4c/72369adc56d11195100060b03c6b76/frameset.htm] select Evaluation>Configure MRP list.  Here you can change the dates that are displayed.
    Rgds,
    DB49

  • Oracle Retail and Siebel Customer Order Management

    Looking into a solution to handle Franchisee ordering.
    Customer currently has Oracle retail to handle supplier purchase orders and PeopleSoft to handle the accounts payable. They currently have a custom built tool to handle franchisees.
    Would Siebel Customer Order Management interface well with Oracle Retail, in terms of merchandising and supplier purchase order consolidation? Does anyone have any suggestions?
    Thanks.

    Not being able to answer all of your questions, however if I do understand ok your question re. 'standalone', there should be no need for setting up EBS if you already have Oracle Retail RMS/RPM - there is a direct, standard, feed from RPM to ORPOS. You may like to check the Oracle Retail merchandising integration guide, it does have a chapter on RMS/RPM - ORPOS/BO/CO integration.
    Best regards,
    Erik

  • Exclude sales orders based on sales order type from CTM planning run

    Dear people,
    We have sales orders in R/3 with custom sales order types, like ZE01, ZE02 etc.
    These sales orders are CIFed to APO and all sales orders have ATP category BM. We use CTM and we want to exclude sales order with sales order type ZE01, is this possible?
    Which enhancement could be used to exclude sales orders with selection on sales order type?
    Edited by: Peter237 on Jan 19, 2012 12:35 PM

    Dear,
    Check the requirement type of your sales order line item in VA02 procurement tab it should be Reqmt type of customer reqmt   KSL
    Also check the strategy assign in material master and MRP group OPPR and then check the setting of strategy 10 in OPPS there should be
    Customer Requirement planning
    Reqmt type of customer reqmt   KSL  Sale frm stck w/o ind.req.red.
    Requirements class  030  Sale from stock
    Allocation indicat.     No consumption with customer requirements
    No MRP   :-               1 Requirement not planned, but display.
    Please try and come back.
    Regards,
    R.Brahmankar

  • Customer orders are entered in the SAP Order Management System?

    How do I ensure that Customer orders that do not contain errors are automatically entered in  the SAP Order Management System?
    What tcodes do i need to run? Thanks!!!

    BY SAP order management system, are you referring to an external system or SAP CRM?

  • Customer order actual activity report

    Dear experts,
    I am using make to order strategy and I have a multilevel BOM structure. I am following some semi-finished products individually for customer order and some for make to stock. I need a report to see the actual activity confirmations for a single customer order including all the activities of semi-finished products in BOM. For your help please.

    Hi Ahmet,
    This is rather a problem of material ledger multi-level settlement than of activity pricing. Material ledger will pick up the actual activity price correctly and will use the difference against the former activvity price as multi-level price difference on the production process. The problem is, if there are multiple outputs coming out of the process, as is resulting of the order combination process, material ledger will by default search for a apportionment structure (for joint production) in the material master of the main (or original) output material. As nothing will be maintained there, all the differences will go to this material.
    You can overcome the situation by a BADI implementation of BADI cost_split. There should be an example implementation in your system (if you have the Mill Products add-on active, as is indicated because you use Mill_oc) that enables to distribute the price differences by quantity of the outputs of a process. If you don't find the example implementation I could provide it to you.
    best regards,
               Udo

  • SAP Tables  for Open Customer Orders and Sales History

    Dear Experts.
    I am looking to get SAP SD related tables for the following,
    1) SAP tables for Open Customer Orders     
    From SAP, I need to get all tables that Contain all open customer orders for products.
    2) Sales History
    From SAP, I need to get all tables that contain the previous month's sales history (shipped customer orders).
    Please Help!!

    hi
    check the following link
    http://www.erpgenie.com/abap/tables_sd.htm
    hope it will help you
    regards,
    sreelatha gullapalli

  • Cost of Inventory for Special Stock- (Sales Order Stock)

    Dear All,
    We manufactures "x" materail under Make to Stock and Make to Order Scenarios. We carried the standard cost estimate through CK11N and released through CK24N. There is a value of "X". Also we carried the sales order cost estimate that is value "Y". But we have observed the inventory value updated during confirmation of the production is at "Z" value. We have identified this Z value is the value of special stock previous periods.
    I would like to know the procedure of valuation of inventory under scenarios
    Regards
    Anilkumar

    Hi,
    thanks for your info.
    Can i say the changes will be done for those special stock.?
    Actually my problem is related to a Return Sales order process where we need to change the MAP before DO and GI, otherwise the Material document would not capture the correct MAP during GI.
    and the solution from the senior is select the variance "special stock -Sales order" and enter the sales doc# in MR21.
    The problem that we are not yet having any special stock for this return Sales order, but this MR21 works for us and after that, the material document is able to capture the correct MAP.
    Any idea what or where the MR21 is updating for the "Special Stock-Sales order" if we don't have any Sales order stock for the paticular sales document?

Maybe you are looking for

  • Page break on Interactive Report

    Hi All, I have an interactive report on EMP table with Controlbreak on Deptno column. I want to add page break after every break. In other words, I want to print each department's employees on a separate page. Any help would be highly appreciated. Th

  • How to acquire data from 2 chs of the same DAQ card at different sampling rate

    I am using single DAQ card (either 6013 or 6014) in my system i want to acquire data from 2 (or more) channels with following requirements 1. sampling rate of each channel should be independant of each other (say one is 20 Hz and other is 15 kHz) 2.

  • Premiere Pro has encountered an error message

    Hello, I keep getting this message everytime I try to open premiere pro cs5. It says Premiere Pro has encountered an error [/Scully64/shared/adobe/MediaCore/ASL/Foundation/Make/Mac/../..Src/DirectoryRegistry.cpp-2 83] Can anyone help me resolve this

  • Blank Error Occurs when trying to Open PDF in Explorer 9

    We have a WIndows 7 machine with Internet Explorer 9 and Acrobat X, whenever we try to open a PDF on a website, an error is returned with no error message just an ! in a circle then nothing after you click Ok. How do we fix this?

  • Error occured while saving the user account information

    I'm trying to install LiveCycle ES 2 with PDF Generator on a Windows 2008 server wtih SQL Server 2005.  When I run the configuration manager I get an error in the step where you add the administrator user credentials for generator.  The error I'm rec