Individual qm order for each insp lot

Hi, i want system to generate individual qm order for each insp lot generated. please advise what are the steps involved here. thank you.

Dear Raju
Please follow the steps
1) Maintain tick for individual QM order in Material master in QM view
2) SPRO > QM > Quality inspection > Inspection lot creation >  Maintain inspection type >  order type as QL02
when the inspection lot is created QM order will be created and you can post the cost
But make sure that the inspection lot has an account assignment  (cost center specified in the purchase order )
Regards
Gajesh

Similar Messages

  • Usage Decision for an insp. lot

    dear all
    i want to make UD for an insp. lot of insp. type 06(return delivery).when i made ud it did not ask me for posting of that material.there is no insp. lot stock tab.can anybody help me to resolve this issue.

    hi
    inspection type 06 is non stock relevant ,hence you cannot able to post the material .
    Processing materials as non-stock-relevant goods
    If a material is not stock relevant, the system does not valuate and track the quantity of goods in an inspection lot. All inspection lots with the following inspection lot origins are not stock relevant:
    ·        02 - Goods issue
    ·        03 - Production
    ·        06 - Return from customer
    ·        07 - Audit
    ·        10 - Delivery to customer with sales order
    ·        11 - Delivery to customer without sales order
    ·        12 - Delivery (general)
    ·        13 - Production inspection on basis of run schedule header
    ·        14 - Plant maintenance
    ·        17 – Externally triggered inspection
    Posting stock-relevant materials to inspection stock
    In inspection stock, QM has exclusive control over the material stock. This means that the material can only be posted in and out of inspection stock via the inspection lot. Materials can be posted to inspection stock for the following inspection lot origins:
    ·        01 - Goods receipt
    ·        04 - Goods receipt from production
    ·        05 - Miscellaneous goods receipt
    ·        08 - Stock transfer
    ·        09 - Recurring inspection
    regards
    thyagarajan

  • Can I set individual alerts (tones) for each calendar events/ reminders

    Can I set individual alerts (tones) for each calendar events/ reminders

    Thanks On my phone, these are the options under Menu>Settings & Tools>Sound Settings>Alert Sounds: 1. TXT Message 2. Multimedia Message 3. Voicemail 4. Emergency Tone  5. Missed Call . And under Service Alerts: 1. ERI 2. Minute Beep 3. Call Connect 4. Charge Complete 5. Software Update. So nothing there for the calendar. And options from the calendar that I can see are Add (here you can change the tone for one event or recurring event, but not set a default tone for the event alarm), View (gives you the options of viewing an existing event in more detail, adding a new one, and the same choices from the Options list on the first screen where you are viewing the entire month), and Options (1. lets you view weekly/monthly,  2. Go To Today  3. Go To Date   4. Search   5. Erase All   6. Erase All Old   7. Send.  So as far as I can see, there's no way to do it. I have been through all the Settings and Tools menus... and the Events menu. But...I have just discovered that if I delete ALL my alarms and change the Ringtone for the first alarm I set, that ringtone becomes the default ringtone. I will try deleting ALL my events and starting fresh with a new tone and see if that works!

  • Production Order and Internal Order for each item of the sales order

    Hi
       I am developing Make To Order Report where I have to display the MTO Line Items and non MTO Line Items. For non MTO Line Items I have to display Internal order with Planned and Actual Costs and also Production Order with Planned and Actual Costs. Could anybody tell how to get the Internal order no and production order with Planned and Actual costs for each line item for a sales order.
    Thanks
    Naga

    Hi,
    You can get the Production orders, Planned orders, Internal orders generated for Sales order item from AFPO table (use fields KDAUF-Sales order number & KDPOS-Sales order item). Then to identify the order type use order category (AUTYP) from table AUFK.
    Once you have the Production/internal order, you can ge the cost from COSS and COSP table. Use the object number from AUFK to get the cost entries from COSS & COSP.
    You can use the following sample code as reference.
    Hope this is helps.. (Don't forget to mark it... )
    Form GET_COSTS                                                       *
    Get the material cost, labour hours and the labour cost for the      *
    sales order material.                                                *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_COSTS.
      DATA V_OBJNR LIKE AUFK-OBJNR.
    DATA v_menge LIKE vbap-kwmeng.
      SELECT SINGLE OBJNR
        INTO V_OBJNR
        FROM AUFK
       WHERE AUFNR EQ AFPO-AUFNR.
      SELECT * FROM COSS
       WHERE OBJNR EQ V_OBJNR
         AND WRTTP IN ('01', '04'). " p_wrttp. "Labour Cost ( Plan, Actual)
        PERFORM GET_VALUES_FROM_COSS.
      ENDSELECT.
      SELECT * FROM COSP
       WHERE OBJNR EQ V_OBJNR
         AND WRTTP IN ('01', '04')         " p_wrttp
         AND KSTAR NE '0000510033'. " EQ p_kstar2.      "Material Cost
        PERFORM GET_VALUE_FROM_COSP.
      ENDSELECT.
    Get the unit cost of the production order by dividing the production
    cost by the order quantity. The result will be multiplied by the
    GL posting qunatity (Delivery quantity) to get the production cost
    for the quantity being deluivered.
      IF NOT AFPO-PSMNG IS INITIAL.
        OUT_REC-LABOUR_HOURS_ACT = OUT_REC-LABOUR_HOURS_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_HOURS_ACT =
                          OUT_REC-ADDNL_LABOUR_HOURS_ACT / AFPO-PSMNG.
        OUT_REC-LABOUR_HOURS_PLN = OUT_REC-LABOUR_HOURS_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_HOURS_PLN =
                         OUT_REC-ADDNL_LABOUR_HOURS_PLN / AFPO-PSMNG.
        OUT_REC-LABOUR_COST_ACT = OUT_REC-LABOUR_COST_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_COST_ACT =
                         OUT_REC-ADDNL_LABOUR_COST_ACT / AFPO-PSMNG.
        OUT_REC-LABOUR_COST_PLN = OUT_REC-LABOUR_COST_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_LABOUR_COST_PLN =
                         OUT_REC-ADDNL_LABOUR_COST_PLN / AFPO-PSMNG.
        OUT_REC-MATERIAL_COST_ACT = OUT_REC-MATERIAL_COST_ACT / AFPO-PSMNG.
        OUT_REC-ADDNL_MATERIAL_COST_ACT =
                         OUT_REC-ADDNL_MATERIAL_COST_ACT / AFPO-PSMNG.
        OUT_REC-MATERIAL_COST_PLN = OUT_REC-MATERIAL_COST_PLN / AFPO-PSMNG.
        OUT_REC-ADDNL_MATERIAL_COST_PLN =
                         OUT_REC-ADDNL_MATERIAL_COST_PLN / AFPO-PSMNG.
      ENDIF.
    Multiply the calculated Unit Production costs with the GL quantity to
    get the actual production cost of the quantity delivered.
    Calculation for Labour Hours
      OUT_REC-LABOUR_HOURS_ACT = OUT_REC-LABOUR_HOURS_ACT *
                                 OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_HOURS_ACT = OUT_REC-ADDNL_LABOUR_HOURS_ACT *
                                 OUT_REC-QUANTITY.
      OUT_REC-LABOUR_HOURS_PLN = OUT_REC-LABOUR_HOURS_PLN *
                                 OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_HOURS_PLN = OUT_REC-ADDNL_LABOUR_HOURS_PLN *
                                 OUT_REC-QUANTITY.
    Calculation for Material Cost
      OUT_REC-MATERIAL_COST_ACT = OUT_REC-MATERIAL_COST_ACT *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_MATERIAL_COST_ACT =
          OUT_REC-ADDNL_MATERIAL_COST_ACT * OUT_REC-QUANTITY.
      OUT_REC-MATERIAL_COST_PLN = OUT_REC-MATERIAL_COST_PLN *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_MATERIAL_COST_PLN =
          OUT_REC-ADDNL_MATERIAL_COST_PLN * OUT_REC-QUANTITY.
    Calculation for Labour cost
      OUT_REC-LABOUR_COST_ACT   = OUT_REC-LABOUR_COST_ACT *
                                   OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_COST_ACT = OUT_REC-ADDNL_LABOUR_COST_ACT *
                                  OUT_REC-QUANTITY.
      OUT_REC-LABOUR_COST_PLN   = OUT_REC-LABOUR_COST_PLN *
                                  OUT_REC-QUANTITY.
      OUT_REC-ADDNL_LABOUR_COST_PLN = OUT_REC-ADDNL_LABOUR_COST_PLN *
                                  OUT_REC-QUANTITY.
    Get the planned material cost from the total of the planned cost of
    the component materials in the production order confirmations.
      SELECT BWART MENGE MATNR SHKZG FROM AUFM
        INTO (AUFM-BWART, AUFM-MENGE, AUFM-MATNR, AUFM-SHKZG)
       WHERE AUFNR EQ AFPO-AUFNR.
        CHECK AUFM-BWART NE '101'.
        READ TABLE I_MBEW WITH KEY MATNR = AUFM-MATNR
                                   BWKEY = AFPO-DWERK.
        IF SY-SUBRC NE 0.
          SELECT MATNR BWKEY ZPLPR LPLPR PEINH
            FROM MBEW
            INTO I_MBEW
           WHERE MATNR EQ AUFM-MATNR
             AND BWKEY EQ AFPO-DWERK.
            APPEND I_MBEW.
          ENDSELECT.
        ENDIF.
        IF SY-SUBRC EQ 0.
          IF I_MBEW-ZPLPR NE 0.
            IF AUFM-SHKZG EQ 'H'.
              OUT_REC-PLANNED_MATERIAL_COST =
              OUT_REC-PLANNED_MATERIAL_COST +
                           ( I_MBEW-ZPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ELSE.
              OUT_REC-PLANNED_MATERIAL_COST =
              OUT_REC-PLANNED_MATERIAL_COST -
                           ( I_MBEW-ZPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ENDIF.
          ELSEIF I_MBEW-LPLPR NE 0.
            IF AUFM-SHKZG EQ 'H'.
              OUT_REC-CURRENT_MATERIAL_COST =
              OUT_REC-CURRENT_MATERIAL_COST +
                           ( I_MBEW-LPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ELSE.
              OUT_REC-CURRENT_MATERIAL_COST =
              OUT_REC-CURRENT_MATERIAL_COST -
                           ( I_MBEW-LPLPR * AUFM-MENGE / I_MBEW-PEINH ).
            ENDIF.
          ENDIF.
        ENDIF.
      ENDSELECT.
    Get the Future material cost per Unit by deviding the calculated
    Future material cost above with the goods reciept quantity to, then
    multiply the unit cost with the GL quantity to get the Future material
    Cost for the Quantity delivered. (Quantity in the entery from GLPCA
    Table).
      IF NOT AFPO-WEMNG IS INITIAL.
        OUT_REC-PLANNED_MATERIAL_COST =
           OUT_REC-PLANNED_MATERIAL_COST / AFPO-WEMNG * OUT_REC-QUANTITY.
        OUT_REC-CURRENT_MATERIAL_COST =
           OUT_REC-CURRENT_MATERIAL_COST / AFPO-WEMNG * OUT_REC-QUANTITY.
      ENDIF.
    ENDFORM.                               " GET_COSTS
    Form GET_VALUE_FROM_COSP                                             *
    Get the Material cost from COSP table.                               *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_VALUE_FROM_COSP.
      FIELD-SYMBOLS: <FS> TYPE ANY.
      DATA: V_COMPONENT TYPE I.
    Cummulate the posting values of all the 16 period buckets as to get
    total production order cost. This is to handle the aprtial posting of
    prodction order values in diffrent periods.
      V_COMPONENT = 15.
      DO 16 TIMES.
        ADD 1 TO V_COMPONENT.
        ASSIGN COMPONENT V_COMPONENT OF STRUCTURE COSP TO <FS>.
        IF COSP-WRTTP EQ '04' AND COSP-KSTAR EQ P_KSTAR2.
          ADD <FS> TO OUT_REC-MATERIAL_COST_ACT.
        ELSEIF COSP-WRTTP EQ '04'.
          ADD <FS> TO OUT_REC-ADDNL_MATERIAL_COST_ACT.
        ELSEIF COSP-WRTTP EQ '01' AND COSP-KSTAR EQ P_KSTAR2.
          ADD <FS> TO OUT_REC-MATERIAL_COST_PLN.
        ELSEIF COSP-WRTTP EQ '01'.
          ADD <FS> TO OUT_REC-ADDNL_MATERIAL_COST_PLN.
        ENDIF.
      ENDDO.
    ENDFORM.                               " GET_VALUE_FROM_COSP
    Form GET_VALUES_FROM_COSS                                            *
    Get the Labour cost and Labour hours from the COSS table.            *
    There are no interface parameters to be passed to this subroutine.   *
    FORM GET_VALUES_FROM_COSS.
      FIELD-SYMBOLS: <FS1> TYPE ANY,
                     <FS2> TYPE ANY.
      DATA: V_COMPONENT1 TYPE I,
            V_COMPONENT2 TYPE I.
    Cummulate the posting values of all the 16 period buckets as to get
    total production order cost. This is to handle the aprtial posting of
    prodction order values in diffrent periods.
      V_COMPONENT1 = 15.
      V_COMPONENT2 = 111.
      DO 16 TIMES.
        ADD 1 TO: V_COMPONENT1, V_COMPONENT2.
        ASSIGN COMPONENT V_COMPONENT1 OF STRUCTURE COSS TO <FS1>.
        ASSIGN COMPONENT V_COMPONENT2 OF STRUCTURE COSS TO <FS2>.
        IF COSS-WRTTP EQ '04' AND COSS-KSTAR EQ P_KSTAR1.
          ADD <FS1> TO OUT_REC-LABOUR_COST_ACT.
          ADD <FS2> TO OUT_REC-LABOUR_HOURS_ACT.
        ELSEIF COSS-WRTTP EQ '04'.
          ADD <FS1> TO OUT_REC-ADDNL_LABOUR_COST_ACT.
          ADD <FS2> TO OUT_REC-ADDNL_LABOUR_HOURS_ACT.
        ELSEIF COSS-WRTTP EQ '01' AND COSS-KSTAR EQ P_KSTAR1.
          ADD <FS1> TO OUT_REC-LABOUR_COST_PLN.
          ADD <FS2> TO OUT_REC-LABOUR_HOURS_PLN.
        ELSEIF COSS-WRTTP EQ '01'.
          ADD <FS1> TO OUT_REC-ADDNL_LABOUR_COST_PLN.
          ADD <FS2> TO OUT_REC-ADDNL_LABOUR_HOURS_PLN.
        ENDIF.
      ENDDO.
    ENDFORM.                               " GET_VALUES_FROM_COSS

  • REPORT TO CHECK DIFFERENCE G.R DATE AND U.D DATE FOR A INSP LOT

    Hi
    I want to track how many dates it has been taken to clear a insp lot for a G.R. So I am looking for a report which shows these days or a report which have G.R date and U.D for inspection lot.
    Please guide if there are any reports for this.
    Thanks
    Dhananjay

    Dear Dhananjay
    This is available in MCXA, MCXC report as lead time. Lead time is nothing but time taken for clearing the lot after GR
    Regards
    Gajesh

  • How can I Create an individual MD5 file for each folder in a main directory?

    The specs for a file delivery I'm making require an individual MD5 file per folder, with the contents of that folder being inside the MD5 file. Such as:
    DAY_01 (MAIN FOLDER)
    A01
    -(files 1-1000)
    -md5 for files 1-1000
    A02
    -files 1001-2000
    -md5 for files 1001-2000
    And so on. Is there a script or program that can make those MD5 files automatically or do I hace to go and do each one individually? Thanks

    I don't know of any pre-existing solution to your question, but it isn't hard to write one:
    set theFolder to (choose folder)
    tell application "System Events"
              set subfolders to every folder of theFolder
              repeat with eachFolder in subfolders
                        set fPath to (POSIX path of eachFolder)
                        set fName to name of eachFolder
                        set md5Filename to quoted form of (fName & ".md5")
                        do shell script "cd " & quoted form of fPath & "; /sbin/md5 * > " & md5Filename
              end repeat
    end tell
    The idea here is that it asks for a folder to process. It then grabs a list of all the folders inside that folder (subfolders), then for each subfolder it extracts its POSIX path and the folder name, then it builds a shell command that actually goes to each folder, runs the md5 command (passing in all files), writing the output to a .md5 file named according to the folder.

  • Default internal order for each vendor

    Hi
    I am creating employee as a vendor in FK01. Each vendor is created as internal order for doing employeewise budget check. So when i book any expenses for vendor, i want that internal order should automatically flow on the basis of vendor.
    So is there any way from where i can default internal order on the basis of vendor.
    Edited by: Deepak Agrawal on Jun 9, 2011 5:05 PM

    Hi
    The only way to do the same is through Substitution rule by using an user exit. You need to create a Z table and maintain the mapping of vendor to IO. There after in GGB1, write a substitution rule for the node, complete document
    Check if Vendor Account =X
    Substitute using user exit
    In the user exit call up the z table.
    Regards
    Sanil Bhandari

  • Separate planned order for each sales order

    Hello experts,
    Here, on a given day when more than one sales order are created, only one planned order is generated by the system. My lot sizing procedure is ex. How can I create different planned orders for different sales order? My planning strategy for the header material is 40.
    Thanks in advance!
    Snigdho

    Dear,
    In lot size EX if requirement comes on single day system will create combine procurement proposal in MTS.
    Separate procurement proposals can only be achieved if you work with make-to-order production. Here, the requirements are managed in separate planning segments of the stock/requirements list.
    Please refer the OSS note 550568 question no 6 for details.
    Regards,
    R.Brahmankar

  • What do I need to set in order for each instance of the step type in the sequence to act individually?

    I'm not able to change parameters on one step without it changing the parameters on another instance of the step within the same sequence.  Is there something in the step type properties that I need to set to change this?
    For instance, I have created a custom step called "Battery PWR" that the user can insert into a sequence, hit the "edit" button, set a control in a GUI to 12V and hit an "Okay" button so that the post-step condition causes the power supply voltage to change.  Then, later in the sequence I want the user to be able to insert the same custom step, hit the edit button, set the control to 0V and hit an "Okay" button so that the post-step conditition causes the power supply to go to 0V.  The problem is, when the user edits one of the steps, it causes the other step to change to the same value.
    I know that this has a simple fix, just can't seem to find it.

    I answered my own question.  I was reading and writing to a file global instead of the step parameters, so I was basically overwriting my variables each time I edited the step.  I'm obviously a novice TestStand user.

  • Should we use only one process order for each CO-product?

    Dear All,
    We have process orders.  One process order opens per day.
    Now we need to use CO-products and calculate actual cost of goods manufactured for them.
    Suppose we have 30 process orders. We have specified  Apportionment Structure in Material Master.
    Then when we create process order we  define actual Apportionment Structure in setllement rule as well.
    After we have setlled all process orders would Material Ledger/ Actual costing run consider this Apportionment Structures from all 30 process orders?
    I heard opinion from Consultant from SAP that it will not work.
    Has anyone heard anything?
    Best regards,
    Kamila.

    Hi Evgeniy,
    Thanks for response
    But we use process orders, not CO-production orders.
    We open process order each day because management wants to have information about KPI of each schift.
    We have defined in material master apportionment structure, When we create process order we define apportionment structure in settlement rule as well.
    When we settle process orders our cost distributes to finished good and CO-product according with this apportionment structure.
    But when we run ckmlcp ML/actual costing doesn't distribute raw material's price differences and Semifinished good's price differences according with this apportionment structure.
    What can we do here?
    Best regards,
    Kamila.

  • Creating individual mail folders for each mailbox

    I have switched to mac from pc and cant figure out how to make individual folders within my 2 email accounts. With Outlook I had 2 email accounts and lots of individual folders within those accounts to help seperate my different emails. With mac I cant figure out how. I tried smart mailboxes but it wont let me put emails from 2 different senders into 1 smart mailbox. Also, how can I transfer my old emails from my pc to my mac.
    Thanks for the help!

    In Apple Mail, accounts are sometimes referred to as Locations. Folders are called Mailboxes. If you have multiple accounts configured and you create a mailbox it will ask you which location it belongs to. That's how you create a folder within an account.
    Smart mailboxes are not real mailboxes, but are automatic searches. They don't belong to any one account.
    Transferring mail depends on the other application you were using. Mail's Import Mailboxes feature will help you through the process. It does not support importing from Outlook though.

  • Is there a way to use an individual Incorrect Message for each quiz page

    The normal message
    INCORRECT Click anywhere or press 'y' to continue
    Could there be a way to use this for a different message on each quiz so that you could write "Your answer was wrong it should have been ...."
    This would avoid branching or using Review Quiz.
    The problem with Review quiz is that you have to have the Forward  Navigation button showing all the way through the Presentation and Quiz (although deactivated) and tell users this is only for use in the Review Quiz mode.
    It would be better if in Review quiz it was possible to review and move on with a Next button, has that been done?
    Ashley

    Hi
    Thanks for your guidance
    This has opened up my mind , I now I find I am totally distracted from
    the CP project I should be working on.
    So I find I have two further problems or maybe they are questions
    I could not find a Tutorial on Scripting is it in Further tutorials ,
    because for some reason my computer although connected to the internet
    will not open anything just a message to say I need an internet
    conection; this will be an internal IT issue.
    Secondly exploring the help I tried the
    Create static widgets
    Select File > New > Widget in Flash.
    In the Create New Widget dialog box, do the following:
    In the Widget menu, select Static.
    In the ActionScript Version menu, select the ActionScript version that
    you plan to use when writing the widget code in Flash.
    Click OK.
    In Flash, right-click the Actions layer in the Timeline, and select
    Actions.
    The Actions panel appears with the template code for the static widget.
    Customize this code to create your widget.
    New project startup
    You can see the option is greyed out for me!
    Inside a Project - Same thing
    What have I not understood
    Totally unrelated issue
    The company has bought 2 copies of ADOBE ELEARNING SUITE would you
    believe after 3 weeks I still do not have an activation code ADOBE say
    they are having problems with their system
    Kind regards
    Ashley Galloway
    International Training & eLearning Manager
    Message was edited by: Captiv8r - Removed personal information and company disclaimer that had apparently been automatically added during an E-Mail reply.

  • Planned order generation for each demand

    hi all,
    Is it possible to Create planned order for each demand within a day in LTP.
    for ex.,
    Ms04
    Planned order-  19.09.2014  4500
    demand   19.09.2014  --  500
    demand   19.09.2014  --  1500
    demand   19.09.2014  --  2500
    Its creating like above is it possible to create planned order as follows
    We required as follows
    Planned order-  19.09.2014  500
    Planned order-  19.09.2014  1500
    Planned order-  19.09.2014  2500
    demand   19.09.2014  --  500
    demand   19.09.2014  --  1500
    demand   19.09.2014  --  2500
    Which setting controls it. we are using individual/collective requirement as 1 for these materials
    How the on different dates separate planned orders are generated. please include your valuable inputs
    Regards
    Muthu Kumar

    Hi Kumar,
    as mentioned before.
    If you do not have a MTO scenario you need to use BAdI MD_ADD_ELEMENTS to simulate individual requrirements within the same date.
    Make sure you check for the right scenario, so the coding is not executed during regular MRP
    This coding could be a starting point.
    could not test it.,  but you can give it a try.
    data: lf_temp_date type DAT00, ls_MDPS type mdps, lf_planr type PLANR.
    if IM_PLSC is not initial.
      CH_CHANGED = 'X'.
      loop at CH_COPY_MDPSX into ls_MDPS where delkz = 'SM'. "for simulated dependent requirements
    if ls_MDPS-dat00 = lf_temp_date.
      ls_mdps-planr = lf_planr + 1.
      lf_planr = ls_mdps-planr.
    else.
      lf_planr = ls_mdps-planr.
    endif.
    lf_temp_date = ls_mdps-dat00.
      endloop.
    endif.
    If you need to have separate planned order depending on header material you can also check for this in addition to requirement date
    Uli

  • Auto allocation for a move order with an expired lot doesn't work

    Hello everyone,
    We are facing a major problem regarding the use of move orders for issuing expired lots.
    Scenario:
    1. Create a move order. Fill in: Item, Qty, Source Subinv and Lot. Lot is expired.
    2. Approve move order.
    3. Run "Move Order Pick Slip" with "Autoallocate Unallocated lines".
    4. Open Transact Move Order Form. Try to transact.
    Result:
    No allocations were created.
    If we check row and push "allocate" button result is still "None".
    Only way to finish the process is to open "View/Update Allocations" and pick a locator manually.
    We work with a lot of expired lots, and doing that manually is a lousy workaround.
    Does anyone know if that is standard functionality? Because documentation does not refer this issue.
    Thanks,
    Aaron

    See also:  http://forums.adobe.com/message/4662367#4662367
    -Noel

  • Material Document (Post goods receipt) for each Tranfer order in Inbound De

    Hello All,
    We have following the below process for goods receipt.
    1. Create Purchase order.
    2. Create Inbound Delivery.
    3.Create Transfer order for each line item in  Inbound Delivery
    4. Confirm tranfers orders.
    5. Post goods receipt will automatically takes place after last Transfer order confirmation for that delivery.
    So, in the above scenario the Inventory is not available in the IM till last transfer order is confirmed.
    So, is it  possible to create a Material Document at each transfer order confirmation and post IM inventory , instead of waiting till last transfer order is confirmed.
    please advice.
    Thank you
    T Reddy .

    Hello Aktar,
    Yes With standard SAP we can post  goods receipt either before using MIGO and after using VL32N.
    In our scenario we are using Inbound Delivery.
    So , with using Inbound delivery we are posting goods receipt after  last TO confirmation.
    But In our client they may take 2 days to puyawat all the items of an Inbound Delivery.So they do not want to wait till 2 days for the IM posting.
    ie in SAP WM as soon as Inbound delivery is created it creates negative stock in 902 and once all the transfer order are confirmed and then post goods receipt takes place and 902 is cleared.
    So, we are slitting the TO at delivery line item level and creating separate TO for each line item in a delivery.
    So, I am wondering whether is there a way so as soon as first TO is confirmed WM stock updates and IM stock also should also update with same amount with a material docuement.
    ie TO by TO IM posting should take place and at Last TO post goods receipt should happen at delivery level.
    Please advice.
    Thank you
    T Reddy.

Maybe you are looking for

  • Down Payment Invoice

    Scenario : The company is collecting Advance from the customer  for a sale. The sale includes freight. The Customer gives 50 % of the sales order which includes freight. In SBO : 1.  'AR Down Payment Invoice' is raised for advance. Issue 1. The AR Do

  • ITunes 11.3.1 iPhone backup, where are iMessages, etc?

    I have followed protocol for backing up iPhone in iTunes 11.3.1. I am now trying to retrieve texts (iMessages) and other items from this backup on my laptop. This page: iTunes: About iOS backups says that the iTunes backup/saves *everything* on the i

  • Mac mini 2004 stopped working

    Hi all, I have just bought a second hand Mac mini 2004 and was working have taken a copy of the internal hard drive through disk utility, but it went to blue screen and couldn't restart it back up so switched it off and now it doesn't start just stay

  • Want to Dsiable the Existing Records

    hi All, i am Using Database 9i and Oracle Forms 6i i have a tabular bock of 10 records to Display and it has 4 four Records in the table i want to do is when i fetch my Records , the Existing Records(4 Records) will Disable and the Record where my Cu

  • Deployment should deploy additional available stock to one particular locn

    Hi, In case of Supply more than demand (Push scenario), there's a requirement to deploy additional availlable stock quantity to a one priority location, after requirement for other locations have been met. Any idea how we can do that. I looked at dif