Default settings for  source storage type and storage bin ..

Hi,
While doing Transfer Order ,I want to make the source stage type and bin as default values.Where can I make these settings?
i am using normal WM and not Lean WM
Edited by: Roopak India on Sep 4, 2009 7:22 AM

Please check settings as mentioned
1. SPROEnterprise StructureAssignmentLogistic Exe check all the assignment here
2. then SproLogistic ExeWM--master data , check whether storage types are properly defined or not
3. then you have to Activate the search strategy at SproLogistic ExeWM--strategy --> Activate Storage type search
Thanks,
Raja

Similar Messages

  • How to distribute HU items in to diffrent storage types and diffrent BINS

    Hi
    I have one handling unit and I have done empty all 4 items in it  HU02
    As a result one material document created
    But How can I distribute all items in to diffrent storage types and diffrent BINS
    No TR and Posting change created at material doc
    What is the config settings to cretae TR ot Posting change notice and Movement types
    Kindly Help

    yes LT10

  • LT04 - User exit to add storage type and storage bin

    Hi!
    I am looking for a user exit to populate the destination storage type and storage bin (Fields-LTAP-nltyp and LTAP-NLPLA). The user uses tcode LT04 to createt transfer orders from transfer requirements.
    The program name is SAPML03T.
    Please let me know if anyone has any clue.
    Thanks in advance,
    Manasa
    Message was edited by:
            manasa

    I don't the exact User-Exit...And there are like 104 of them...So why don't you use this report (Not mine) and find out yourself -:)
    REPORT zdummy_atg_2.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
      IF NOT P_TCODE IS INITIAL.
        SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
      ELSEIF NOT P_PGMNA IS INITIAL.
        TSTC-PGMNA = P_PGMNA.
      ENDIF.
      IF SY-SUBRC EQ 0.
        SELECT SINGLE * FROM TADIR
        WHERE PGMID = 'R3TR'
        AND OBJECT = 'PROG'
        AND OBJ_NAME = TSTC-PGMNA.
        MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
        IF SY-SUBRC NE 0.
          SELECT SINGLE * FROM TRDIR
          WHERE NAME = TSTC-PGMNA.
          IF TRDIR-SUBC EQ 'F'.
            SELECT SINGLE * FROM TFDIR
            WHERE PNAME = TSTC-PGMNA.
            SELECT SINGLE * FROM ENLFDIR
            WHERE FUNCNAME = TFDIR-FUNCNAME.
            SELECT SINGLE * FROM TADIR
            WHERE PGMID = 'R3TR'
            AND OBJECT = 'FUGR'
            AND OBJ_NAME EQ ENLFDIR-AREA.
            MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
          ENDIF.
        ENDIF.
        SELECT * FROM TADIR INTO TABLE JTAB
        WHERE PGMID = 'R3TR'
        AND OBJECT IN ('SMOD', 'SXSD')
        AND DEVCLASS = V_DEVCLASS.
        SELECT SINGLE * FROM TSTCT
        WHERE SPRSL EQ SY-LANGU
        AND TCODE EQ P_TCODE.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) P_TCODE,
        45(50) TSTCT-TTEXT.
        SKIP.
        IF NOT JTAB[] IS INITIAL.
          WRITE:/(105) SY-ULINE.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
    * Sorting the internal Table
          SORT JTAB BY OBJECT.
          DATA : WF_TXT(60) TYPE C,
          WF_SMOD TYPE I ,
          WF_BADI TYPE I ,
          WF_OBJECT2(30) TYPE C.
          CLEAR : WF_SMOD, WF_BADI , WF_OBJECT2.
    * Get the total SMOD.
          LOOP AT JTAB INTO WA_TADIR.
            AT FIRST.
              FORMAT COLOR COL_HEADING INTENSIFIED ON.
              WRITE:/1 SY-VLINE,
              2 'Enhancement/ Business Add-in',
              41 SY-VLINE ,
              42 'Description',
              105 SY-VLINE.
              WRITE:/(105) SY-ULINE.
            ENDAT.
            CLEAR WF_TXT.
            AT NEW OBJECT.
              IF WA_TADIR-OBJECT = 'SMOD'.
                WF_OBJECT2 = 'Enhancement' .
              ELSEIF WA_TADIR-OBJECT = 'SXSD'.
                WF_OBJECT2 = ' Business Add-in'.
              ENDIF.
              FORMAT COLOR COL_GROUP INTENSIFIED ON.
              WRITE:/1 SY-VLINE,
              2 WF_OBJECT2,
              105 SY-VLINE.
            ENDAT.
            CASE WA_TADIR-OBJECT.
              WHEN 'SMOD'.
                WF_SMOD = WF_SMOD + 1.
                SELECT SINGLE MODTEXT INTO WF_TXT
                FROM MODSAPT
                WHERE SPRSL = SY-LANGU
                AND NAME = WA_TADIR-OBJ_NAME.
                FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
              WHEN 'SXSD'.
    * For BADis
                WF_BADI = WF_BADI + 1 .
                SELECT SINGLE TEXT INTO WF_TXT
                FROM SXS_ATTRT
                WHERE SPRSL = SY-LANGU
                AND EXIT_NAME = WA_TADIR-OBJ_NAME.
                FORMAT COLOR COL_NORMAL INTENSIFIED ON.
            ENDCASE.
            WRITE:/1 SY-VLINE,
            2 WA_TADIR-OBJ_NAME HOTSPOT ON,
            41 SY-VLINE ,
            42 WF_TXT,
            105 SY-VLINE.
            AT END OF OBJECT.
              WRITE : /(105) SY-ULINE.
            ENDAT.
          ENDLOOP.
          WRITE:/(105) SY-ULINE.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No.of Exits:' , WF_SMOD.
          WRITE:/ 'No.of BADis:' , WF_BADI.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(105) 'No userexits or BADis exist'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(105) 'Transaction does not exist'.
      ENDIF.
    AT LINE-SELECTION.
      DATA : WF_OBJECT TYPE TADIR-OBJECT.
      CLEAR WF_OBJECT.
      GET CURSOR FIELD FIELD1.
      CHECK FIELD1(8) EQ 'WA_TADIR'.
      READ TABLE JTAB WITH KEY OBJ_NAME = SY-LISEL+1(20).
      MOVE JTAB-OBJECT TO WF_OBJECT.
      CASE WF_OBJECT.
        WHEN 'SMOD'.
          SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
          CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
        WHEN 'SXSD'.
          SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
          CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
      ENDCASE.
    Greetings,
    Blag.

  • CO27 is showing blank values in Warehouse,Storage Type and Storage Bin

    Hi Gurus,
    I am using CO27 to generate pick-list for a production order. The pick-list is being used by Warehouse team to Goods Issue for the Production Order.
    However, the problem that I am facing is that in the pick-list generated from CO27 is showing blank values in Warehouse,Storage type and Storage bin.
    So, it is becoming difficult for the Warehouse to do the picking based on this pick-list.
    Could you please advice how the fields Warehouse,Storage Type and Storage bin can be populated in the Production Order pcik-list.
    Is these values are fetched from Material Master data or any other place?
    Thanks & Regards
    Subhasis

    Hello
    You should implement the following note:
    384427 - CO27/COIK: Storage bin is not displayed
    BR
    Caetano

  • Storage Type and storage bin in MB26 pick list

    Hi,
    We want to print a pick list using MB26. The pick list should contain the warehouse number , storage type and storage bin. I have found that in the layout of MB26 pick list, we can pull these fields. However, the values of these fields are not getting pulled in the list.
    Can you please help me to understand if I need to do some setting/config so that warehouse number, storage type and storage bin can be pulled in the MB26 report.
    Thanks,
    Shekhar

    if it is a standard output if you go to the output type you can see what are the standard fields included in the pick list but if it is a custom one please contact your functional consultant who designed or look at the spec to see the design/mapping of fields.
    Please let me know if thhis helps.

  • LT06 enhancement - How to update Storage type and Storage section

    Hi,
    My requirement is to update Storage bin, Storage type and Storage section, while creating Transfer order from through LT06. So I used the enhancement MWMTO003 to update Storage Bin in LT06 and it is also working.
    Similarly I need to update Storage type and Storage section using userexit or BADI.
    Is there any way to update Storage type and storage section in LT06?

    Check enhancement MWMTO007.
    regards

  • What is storage type and storage bins

    explains the terms, storage type and storage bins, stock at production storage

    Hi Ahmed
    Inventory Managemenet can be done either at Storage location ( using Lean warehouse Management)or at storage bin level ( using full warehouse Management).
    General ( EWM)
    [http://help.sap.com/saphelp_scm50/helpdata/en/5f/c69040bca2ef4ae10000000a1550b0/frameset.htm]
    Storage type
    [http://help.sap.com/saphelp_ewm2007/helpdata/en/97/d94541c47a6e24e10000000a155106/content.htm]
    Storage bin
    [http://help.sap.com/search/highlightContent.jsp]
    [http://help.sap.com/saphelp_sm32/helpdata/en/35/26c132afab52b9e10000009b38f974/content.htm]
    Cheers !!
    Ajay

  • In GR, T331 entry for warehouse number GVW and storage type 916 not found

    Hi friends,
    while doing gr, it is giving following error. we are having wm
    T331 entry for warehouse number GVW and storage type 916 not found
    regards,
    william

    Hai,
    Add the entry 0f 916 storage type to ur warehouse by copying from std i.e 001 in SPRO/Log Exe/WM/Master data/Define str type.
    Regards,
    BSK

  • MB5B Movment type and storage location is reset

    When I run the report MB5B with radio button "valuated Stock" active for a specific Plant and Movement Type, I get a Message "Movement Type is reset" and then the entered Movement Type disappears from the selection criteria.
    However the report does not give me this message when the radio button "Storage Location/ Batch Stock" is active.
    Also, When I run the report MB5B with radio button "valuated Stock" active for a specific Plant and Storage Location, I get a Message "Storage Location is reset" and then the entered Storage Location disappears from the selection criteria.
    However the report does not give me this message when the radio button "Storage Location/ Batch Stock" is active.
    Please tell me why does this happen when the radio button "valuated Stock"  is active ?

    Dear All,
    I am facing the problem as said in the thread.
    My two queries are as follows:
    Query 1:  In MB5B report When we select the valuated stock option ,We are unable to use movement type , storage location in the selection criteria nad getting the below messages.
    M7284 - Storage location is reset.
    M7298 - Movement type is reset .
    Query 2 :In MB5B report total receipts and total issues is showing incorrect values.
    Here say for example I prepared the grn, cancelled the grn and again made the grn. Here total receipts is considering in such a way that all the grn quantities are considered. and cancelled documents are considered as issues.
    ie  have received material = 100 Nos 01-12-2009
    cancelled grn:100 Nos
    Redo grn:100 Nos
    Done transfer posting 415 Q = 10 nOS = 02-12-2009
    Issued = 10 nos = 02-12-2009
    In mB5B 01-12-2009 to 02-12-2009
    We are getting Opening stock= 0 which is correct
    Total receipts = 100(GRN IST TIME)+100(GR SECOND TIME) +10(TRANSFER POSTING)=210
    Total issues = 100(CANCEL GRN)10(TRANSFER POSTING)10(GOODS ISSUE) =120
    Closing stock = 90(CORRECT)
    Here actual recipt: should be 100
             actual issue should be 10
    Here though the closing stock is correct , 415 transfer posting is considered as issue and receipt.Becoz of this total issues quantity report is going wrong.
    Please give your valuable suggestions to the above two problems seperately.
    Regards,

  • In wms continuous to the automatic storage type and bin in the  destination

    hi
    Thanking for givining the solution ,In continuous to the automatic storage type and bin in the  destination your telling that fixed bin should be enter in the wm2 view in the mm01 ,
    i am not   getting fixed bin means  which bin should i enter in the mm01  wm2 view can explain clearly.
    thanks

    First you create your WM views in MM01 with just entering the warehouse number but no storage type in the organisation pop-up.
    Once you have done this and saved the material master, you do again MM01 for the same material number and select the WM 1 and 2 view and enter the warehouse number AND the storage type number in the organisation pop-up.
    Now SAP gives you some more fields in WM2 view. AMong them the fields you are looking for.

  • Storage unit types and storage bin types  - Need

    Hi,
    i want to know what is the use of the storage unit type and storage bin type.
    thanks,
    Maxx

    Dear Maxx,
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c6/f844694afa11d182b90000e829fbfe/frameset.htm
    Storage Bin:
    A storage type generally contains several storage spaces or slots. These are called storage bins in Warehouse Management (WM). The storage bin is the smallest available unit of space in a warehouse. The storage bin therefore describes the position in the warehouse where the goods are or can be stored.
    Since the address of a storage bin is frequently derived from a coordinate system, a storage bin is often referred to as a coordinate. The coordinate 01-02-03 for example, can refer to a storage bin in row 1, stack 2, and level 3.
    You assign each storage bin to a specific warehouse number and storage type according to its location. You must also assign each storage bin to a storage section.
    You can also define the following additional characteristics of a storage bin:
    Maximum weight
    Total capacity
    Fire containment section
    Storage bin type (for example, for small or large pallets)
    With certain stock placement strategies, the storage bin type plays a significant role in optimizing the automatic search for a storage bin in connection with the pallet type. For example, you can define the WM putaway strategy to place large industrial pallets into a specific large bin type and smaller pallets into small bins.
    Storage Unit:
    In the system, a storage unit record consists of a header and at least one material data record (quant data record).
    The header contains information which is relevant for the entire storage unit and includes the:
    Storage unit number
    Storage unit type (SUT) of the storage unit
    Storage bin in which the storage unit is currently located
    Status, which provides current information about the storage unit
    Specific information about the stock contained in a storage unit is found in the material data record. The material record is already familiar to you in the existing system as a quant data record. For SU management, this information can be managed at the storage unit level.
    The following graphics illustrate how WM handles storage bins with and without the use of storage unit management. For these examples, storage bins are displayed in which 200 boxes of red pencils and 50 boxes of blue pencils are stored. The stock is distributed on two pallets.
    Hope this will help.
    Regards,
    Naveen.

  • Difference between Storage Unit type and storage type

    Hi,
    I am confused with storage unit type and storage type.
    Can anyone help me with real case examples.
    I would like to know about Storage unit types and their uses in WM.

    Hello!
    Storage type is a storage area and Storage Unit Type is strategies are used in the warehouse process for creating transfer orders.
    A storage type is a storage area, warehouse facility, or a warehouse zone that you define in Warehouse Management (WM) for a warehouse number. This is a physical or logical subdivision of a warehouse complex that is characterized by its warehouse technique, the space used, its organizational form, or its function.  A storage type generally contains several storage spaces or slots. These are called storage bins in Warehouse Management (WM).
    See also:
    https://wiki.sdn.sap.com/wiki/display/ERPSCM/WMOrganisationalStructure
    http://help.sap.com/saphelp_470/helpdata/en/c6/f838f94afa11d182b90000e829fbfe/content.htm
    Storage Unit Type is putaway strategy, the system processes different storage unit types (for example, pallets) and allocates them to the appropriate section. Often, one storage bin is divided into several smaller sections. Typically, only the same storage unit types can be placed into a storage bin at one time.
    See also:
    http://wiki.sdn.sap.com/wiki/display/ERPSCM/PutawayandRemovalStrategiesin+WM
    http://help.sap.com/saphelp_470/helpdata/en/c6/f844c44afa11d182b90000e829fbfe/content.htm
    Milca

  • I want to use my new netbook for my ipod charger and storage

    How do I use my new netbook for my ipod charger and storage?

    I gave full info for how to do this setup in this thread with screen shots..
    https://discussions.apple.com/thread/4817218?tstart=30
    Any of it you don't follow just ask.
    The TC is really a complex thing to use, when you don't do it as Apple designed it.. and in fact on your iMac an external drive will be cheaper, faster and more reliable than a TC. But I guess you already have it so may as well use it.

  • Automated storage type and bin in wms

    hi
    In continuous how can we use the fixed bin method in the mm01  without using the putqway strategy
    how to get the storage type and bin in the transfer order at the destination pop up.

    Hi
    On navigating the transaction MM01 --> Organization level , you can get a field storage type below the plant and warehouse number fields.
    After entering into the Warehouse view, you can find a section
    "storage bin stock"
    and enter the Bin against the field
    "Storage Bin"
    Gobinathan G

  • Change Defaults Settings for Safari

    Since I upgraded to the New Mountain Lion, the Default Settings for my Safari browser is Bay City. How do I change this where I live?

    HI Norm,
    Open System Preferences/Network. Select Airport in the panel in the left then click the Advanced tab then click the Proxies tab. Where you see: Select a protocol to configure Make sure there are NO boxes checked.
    Click the Airport tab in that same window. Make sure your network is listed under: Preferred Networks
    If not, cick + Type in your network name or click Show Networks and select it from there. Your network should be listed in the Preferred Networks window now. Just below that window select the box next to: Remember networks this computer has joined.
    If you still have problems, open Airport Utility (Applications/Utilities)
    Select your device on the left then click Continue. In the next window click: I want to restore this AirPort device to its factory settings and then set it up again; then click Continue.
    I'm on Comcast without using any Proxies.
    You can disconnect the Comcast cable modem from it's power source for about 5 minutes then reconnect. Sometimes you have to recycle the modem.
    AirPort troubleshooting guide
    Also, on the G5. Go to /Library/Preferences/System Configuration and move these files to the Trash.
    com.apple.airport.preferences.plist
    com.apple.nat.plist
    com.apple.network.identification.plist
    You may only see the com.apple.airport.preferences.plist file in that list since it's running 10.5.x
    Don't worry about the other .plist files if they are not available.
    Carolyn
    Message was edited by: Carolyn Samit

Maybe you are looking for