Add no of quans to storage bin?

Hi,
Am an Abaper. I was using some seven quans to count for seven storage unit in a storage bin.
But i had some actions, which made storage unit availablle as 2.
Waht to do increase the storage unit , just like before.
Pls help me with the steps....
i had to do investigation on about seven storage units.. but i have only two.. hw to increase???
pls help..
Thanks in adv,
naveena.

Hi Naveena,
In general, whenever you do Goods Receipt the system will create a Quant in the storage bin. If you are doing GR for the second time, it will added to previous quant, if it is a different material, it will create a new quant, thats how Quant data will be updated in a storage bin.
In your case, i think, some one have created the deliveries and they may have done goods issue also, thats why no. of quants have been reduced.
If you want to increase the quants now, you need to do GR for the same material and the destination bin has to be the same.
Hope it is helpful

Similar Messages

  • 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.

  • To add storage bin field in MB52

    hi everyone,
       I have a scenario like adding the field Storage bin (LGPBE) in the list output of MB52.
       I have copied the standard program RSWOGIND as z program and added the field LGPBE in the internal table 'collector'.
       In the corresponding select statement i have mentioned the field for populating the values.
       In the field catalog i have defined it for output. But still i am not getting it in the list output and also in layout option.
    Thanks in advance!!!

    It could be fieldcatalog issue or it may be at hidden fields in output,try to look at ALV Layout one more time.
    Thanks
    Seshu

  • More than one Quant in a Storage bin section (Strategy P)

    Dear all,
    We have a Storage type with Putaway strategy P, the SUT check active but no SU Management active, Mixed storage = X and Addition to stock = X.
    For this Storage type, our Storage bin type and SUT we have set up in customizing a Bin sectioning 3 meaning the Storage bin is divided into 3 sections so a maximum of 3 Quants per Storage bin. Note that other Bin sectionings have also been set up.
    During testing I found out a Storage bin section can only contain one Quant at a time.
    Because of Addition to stock = X we can add more quantities of the same Material/Batch to a Storage bin secion that already contains stock of this particular Material/Batch.
    If I try to add a Material/Batch to a Storage bin section that already contains stock of another Material/Batch (so, a different Quant), the system gives me an error:
    Bin item X in storage bin Y already occupied
    Message no. L3063
    Now physically for the mentioned SUT our Storage bin is divided into 3 Storage bin sections/pallet places and on a pallet it should be allowed to put multiple Materials/Batches at a time, that is why we set Mixed storage = X in customizing.
    Now we can only put one Quant (so one Material/Batch) in a Storage bin section at a time;
    We want to be able to put more Quants into a Storage bin section at a time.
    How can we achieve this?
    Note we rather donu2019t want to use Storage Unit Management.
    Thanks for any clues!
    Kind regards,
    Bart

    Hi Bart,
      As a thumb rule you cannot have one quant with multiple Materials. Ofcourse you can keep on adding same material /batch is the same quant i.e. in the same Bin section where you already put the material.
    Quick win for your case is Increase the number of quants allowed say 15. In this case you can keep on storing different material / batches on the same pallet but system will keep on generating sections.
      At any point of time you can easily track how many quants (Mat + quantity)  are stored in that Bin & relevant section.
      For strategy P , SUT check must be activated you cannot skip it.
    If Business is not ready to work with more number of sections , you can always think of mapping another startegy ..you could do more test with Bulk Storage.
      To my knowledge Strategy I i.e. Addition to existing stock with Mixed storage Indicator will work very well here.
      You just need to map appropriate Capacity check as startegy I goes with active capacity.
    Thanks,
    Mahesh

  • Problem with storage Bin

    Dear All,
    My request is like
    in material master i have assigned Storage bin ( WH2 view ) but at the time of creating Transfer Order if user put different storage bin then system accept that at post the material to other storage bin .... ( not puting material in storage bin mentioned in material master)
    i want to block the TO if user mention any different storage bin at the time of creating TO
    PL. HELP
    With best regards
    Suman

    Hi
    Thanks for your reply
    I mention X to Addn to stock but system give same error message
    If you have st.pl.str. "Fixed bin", add.to ex.st. must be allowed
    MY STORAGE TYPE SETTING ARE AS FOLLOWS
    1. OUTAWAY STRATEGY: F
    2. STOCK REMOVAL STRATEGY : F
    3. TICK ON STOCK REMOVAL REQD CONFIR
    4.TICK ON FULL STK RMVL REQD. ACT
    5.TICK ON RETURM MATL TO SAME STORAGE BIN
    6. TICK ON SUT CHECK ACTIVE
    7. TICK ON STORG.SEC.CHECK ACTIVE
    please give your valuable suggestion
    wuth best regards
    Suman

  • Blocking Storage Bin

    Hi experts,
    I have question about following situation.
    I storage goods in more than one storage bin. My storage strategy find storage bin automaticly. If the first storage bin full, strategy find second storage bin. I want that, system block the first storage bin automaticly till the first storage bin will be empty. System doesnt allow add new goods that quant.
    how can i do that?
    Thank your support.

    Hi Manish,
    I explain what i need with example;
    I have 2 storage bin for my material. All this bin's capacity is 5 pcs. Now first good issue with PO about 5 pcs. this material putaway first bin. then other good issue 3 pcs. This material putaway 2nd bin. Then i remove material 3 pcs in 1st bin. As a result, i have 2 pcs material 1st bin and 3 pcs material seceond bin. My capacity is 3 pcs 1st bin and 2pcs 2nd bin.
    Now, if there is good issue same material, system doesn't allow putaway this materials to 1st bin. System block this 1st bin automaticlly. This block is automatically deleted after the last storage unit has been removed from stock (picked from the row).
    By the way, am i need batch management to implement this strategy for this material?
    Thanks for advice..

  • Change Storage Bin Number in 309 movement type

    Hi Gurus,
    I have problems with creation TO for movement type 309(material to material posting), when i want to create the TO for that movement type, i can't change the destination bin.. The destination bin field in that TO is disable, how to make that field enable?
    I try to add an user exit after creation of that TO, the user exit is MWMTO001.. so the user exit used for change the storage bin number after the TO created.. but that user exit never triggered after TO created.. How it could happen?
    Any suggestion, how to change the storage bin number when i want to create TO from 309 movement type(material to material posting)?
    Kind Regards
    Ken

    Hi Kris,
    Ya, i already create the bin number, for example i material A fixed to bin 00001 and material B fixed to bin 00002, when i do movement 309 from material A to material B, why the bin goes to 00001? why not goes to bin 00002? Because material B is fix to bin number 00002..
    For your solution, i just can change the bin during confirmation of the TO? Because, in this case, confirmation of that TO done by external system, so the external system will send idoc to SAP to confirm that TO..
    Regards
    Ken

  • Report required with Storage Bin

    Hi,
    I need a report that contains the Material Document number and the Storage Bin.  Anyone know of the transaction I can use.  I did it a yr ago and it worked so I know it exist, just can't seem to find it again.

    Hi
    Thanks for your reply
    I mention X to Addn to stock but system give same error message
    If you have st.pl.str. "Fixed bin", add.to ex.st. must be allowed
    MY STORAGE TYPE SETTING ARE AS FOLLOWS
    1. OUTAWAY STRATEGY: F
    2. STOCK REMOVAL STRATEGY : F
    3. TICK ON STOCK REMOVAL REQD CONFIR
    4.TICK ON FULL STK RMVL REQD. ACT
    5.TICK ON RETURM MATL TO SAME STORAGE BIN
    6. TICK ON SUT CHECK ACTIVE
    7. TICK ON STORG.SEC.CHECK ACTIVE
    please give your valuable suggestion
    wuth best regards
    Suman

  • Manage stock qty. in Storage bin for Inventory management

    HI all,
    We are implemented Inventory Management (display stock of material for storage location).
    I want to know is there any method in Inventory Managment to Manage stock of specific material in bin also.
    Means User exactly should know the stock of specific material is located in Storage Bin.
    Please suggest me the hole process or any customization
    Regards,
    Vraj

    Hi V raj,
    I don't know whether i understood your question well. But i will answer in the way i understood.
    To serve your requirement you need to have a Warehouse management, means to have a smooth warehouse bin wise storage.
    But some companies are not willing to implement WM and they are finding a way with batch classification. They maintain batches for material and storage bin are maintain in a batch classification. So you can view it in MMBE also by going into the batch classification of the relevant batch.
    And if you want to have a detail report you can develop a simple report or a query to retrieve batch classification data.
    For batch classification activation:
    1. Material must maintain "Batch management" tick in Purchasing and storage plant data views
    2. Create a seperate class for this using CL02
    3  Create batch characteristic using CT04 (this is to maintain Storage Bin)
    4. Add classification view to each material and the relevant batch class.
    5. When you are doing the GR use "Batch" tab and "Classification" button to maintain relevant Storage bin data. (To update mass scale you can create a "Z" report getting help of a developer in your company)
    6. Now each batch you are maintained your storage bin view it trough MMBE (But only one batch classification) or in-house developed report ("Z") program
    Thanks & BR
    sandun

  • Creation of Mass Storage bin

    Hi,
    We need to created storage bin for warehouse. we were planning to use LSMW. We cannot use auto creation of stroage bin LS10 since the numbers are not in a proper sequence.
    However we need to add value to the field 'Sort fld pick' for every storage bin which will be used latter for sorting the storage bin in pick list.
    This field is not available when u create storage bin. This field is only avaialble when u are change mode after creating the storage bin.
    Also we cannot use the customization for define sort sequence for stock removal.
    Can anybody help me how to fix the issue.
    thanks in advance
    Regards

    Hi,
    Storage Bins creations and Sort fld stck plcm/Sort fld picking are all  master data maintenance, to maintains these you need to create LSMW or BDC. There is now option on customization etc.
    let me know if you have any more questions.
    Regards,
    Madhu

  • Adding Storage Bin Number to Material Issue Slip - RIPRGI00

    Hello,
    I have a request to add the storage bin number  to the Material Issue Slip with output type zpmm. However, I need help on where in the code I need to add this field. I know a program change needs to happen in RIPRGI00, and the SAPscript  layout Z_PM_COMMON needs to be changed too. I believe the storage bin number field is RESBD-LGORT. Please correct me if I'm wrong so far. Your guidance is appreciated.
    Thank You!

    If you're talking about MM Storage Bin it is maintained in MARD-LGPBE.
    It's maintained at material master level in "Plant/stor data" view 1. (you need to enter the storage location in org. level in MM03 to be able to even see the field.

  • Storage bin ZZ1 998 AUFNAHME does not exist (check your entry)

    While in MIGO transaction, trying to post goods receipt with movement type 561, the system gives the error :
    Storage bin ZZ1 998 AUFNAHME does not exist (check your entry)
    How can I fix this error ?

    I had the exact same error yesterday, still I haven't figure it out yet.
    I can add that you must have that storage location connected with WM, and there's something wrong in this integration.
    Cherrs.

  • TO storage bin proposed u00BF?

    I have a material with stock in storage bin 1, 2 and 3 that belong to the same storage type. The material picking strategy is F (fixed) and the material has the storage bin 1 setted in the material master.
    I created a TO and it proposed to pick from storage bin 1 and 3, while storage 2 has stock ...
    Have you idea why could be this happening? I checked the storage bin and it isn´t locked, the material has stock ... what other condition is working in storage bin determination?
    thanks in advance

    Ahh, ok! but what of all the dates that are in LQUA table is considering? I have the following, and there is not the creation date, what date are you meaning?
    Last movement
    Last placement
    Last removal
    Last add to stock
    GR Date
    thanks!

  • Delete Storage Bins

    Hi,
    While configuring an SAP EWM Add-On, I had mistakenly deleted storage bins via the transaction /scwm/ls11.
    Now whenever I try to recreate the bins I get an ABAP error.
    I realized that the storag bins got deleted from the table /SCWM/LAGP , but the same were not deleted from the table /SCWM/HUHDR
    So everytime I try to recreate the storage bins, the system throws up an error saying that the entry already exists in table /SCWM/HUHDR.
    Please Help.
    I'm in a soup here.
    Regards,
    Oritra

    Hi,
    The data corruption would be causing this issue. I tried to replicate the same, but, It is not happening for me. Can you share Data Browser screen shot of a single bin. that helps me to understand bit more deeper.
    As a alternative solution, If you could able to delete the record in /SCWM/HUHDR table with the help of ABAPer, then you will be able to create the bins again.
    Before getting delete the records from here, Cross verify whether the HU exists in the system or not. If the HU Exists with zero stock, then only delete.
    you can delete the HU from Warehouse Monitor Screen.
    Regards,
    Sathish

  • Report for Material - Storage Location - Storage Bin

    All SAP Gurus,
    Is there any standard report available in which we can find out the storage bins for list of materials?
    (We have not implimented Warehouse MAnagement)
    Regards,

    HI,
    You need to have Warehouse management in place in order to view the storage bins for materials,
    MMBE of MM cannot give you the idea of storage bins.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful.

Maybe you are looking for

  • Grouping of Production orders

    In Assessment or distribution cycle, we have production orders as the receivers. Since the list of production orders can be huge for month, creating the group through menu Extras/ Create group is not practical. I also tried to make set for the prodcu

  • Update now blank screen on MacBook Pro

    I updated MacBook Pro yesterday and after restart the screen was and still is blank. Restarts do nothing. Any ideas?

  • HDV to MEPG2

    I've been working on this all day and can't seem to find a solution. I have completed an edit of an HDV project and am trying to convert it to MPEG2 for DVD. The edit was done with Final Cut Studio 2 and am trying to do the conversion through Compres

  • Execute Query with VBA

    Hi all, I want to do the following in my workbook. For a = 1 to 3    select case a       case 1:           Callback "ZMSPMSM01_5011'       case 2:           Callback "ZMSPMSM01_5012'       case 3:           Callback "ZMSPMSM01_5013'    end select   

  • Emmployee group wise travel service Category

    Dear Experts, I have a requirement. In Travel Service catogory in TP01  by defalut FlIGHT, HOTEL,RENTAL CAR, I recently added TRAIN also,  Do have the permissibility based upon "Employee Grouping for Travel Service Catogory. so that  he/she can have