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

Similar Messages

  • How can i add STORAGE LOCATION field which is not...............

    hi,
    sap gurus,
    good morning to all,
    how can i add STORAGE LOCATION field which is not in the standard tables namely
    KOMP, KOMK, and KOMG.
    how to include it in our FIELDS FROM FIELD CATALOGUE.
    if we include this field is there any impact on the standard tables.
    plz let me know this.
    bcz
    we are selling our products in two ways
    (1). one is straight from factory ie direct sales from factory
    if customer asks for excise invoice then we will sell thru factory and keeping freight in mind we will
    deliver him which ever is economical either rail or road.
    before coming to second case of selling the goods
    we will do STOCK TRANSPORT ORDER from plant to different storage locations.
    if we did STO thru road we have to sell the goods thru road only.
    if we did STO thru rail we have to sell the goods thru rail route only.
    (2). if the customer is not asking any excise invoice then we will send the goods thru depo/storage
    location which is not registered under excise.
    if the goods came by road then it will be delivered by road only.
    if the goods came by rail then it will be delivered by rail only.
    my logic here is
    basing on the
    storage location, transportation types, and distance i want to create condition record
    that captures exact frieght at the sales order level.
    confirm whether i am right or wrong.
    regards,
    balaji.t
    09990019711.

    Hi,
    It is not recommended to add new fields to any SAP standard tables. It disturbs the whole SAP functionality.
    But if you have no choice expcept to change the standard tables to meet your requirement -  then you need an access key to modify the object, which is available from the market place.
    Nevertheless, the better option is to create a 'Z' table with the required fields and use that accordingly.
    Changing standard tables will have serious impact when you apply patches or do an upgrade on the existing functionality.
    REWARD POINTS IF HELPFUL
    Regards
    Sai

  • 'Storage bin field in material master

    Can we increase character length of 'Storage Bin' field in material master so that bin details can be accomodated ?

    No you cant!
    Takehelp of some other field.(text field)
    Edited by: uttkarsh agrawal on Jan 30, 2009 3:11 PM

  • Storage type & storage bin field in mb1b

    Dear all,
    I want to put storage type & storage bin field in MB1B from where material has been transfer through 301 movement type to another plant.Our client want to put this field manually.What is configuration regarding this?
    Thanks & Regards
    Dipayan Bose

    Hi
    I assume that you are doing transfer posting between plants which have warehouse managed.
    Check in OMLR for Immediate TO Creation  ''A' for mvt type 301. Remove this
    In OMLJ - Remove both TO item confirmation & Propose confirmation check boxes under confirmation field group.
    Remove any Auto TO indicator in IMG>LE>WM>Transfers>Define Movement type.
    Now you go to MB1B and do the transfer posting with Movement Type 301.
    Next step go to LT06 to create TO from Material Document No. Give the Transfer posting doc no and press enter.
    Inside the transaction you have button called create TO online, click this it will take you to another screen where you can enter the Storage type. storage section & storage bin manually.
    LT12 - Confirm the TO to complete the transaction
    Karthik
    Karthik

  • Storage bin field in MB21

    Dear all,
    Is it possible to have field "storage bin" at the reservation screen?
    I am making the proper customising from mov. types and i make it mandatory, but it does not be seen in the reservation screen.
    I would like it to be display in the reservation screen and come directly from the material master.
    Thanx in advance for your help.
    Regards

    ok, but then why you can maintain it as required field at the movement type? Because either it reflects to the MIGO screen.
    Regards

  • Add storage location field into report COOIS

    When i check the Production order Storage Location is showing under Goods receipt Tab.When i execute the order COOIS Storage location field is empty.
    Where and what to configure to pull storage location into report COOIS?
    Thanks
    Rafi

    Hi Mohammed,
    Ideally it should come, field storage location is fetch from the GR tab from production order. May be PP guy can help you much better.
    Regards
    Mohit

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

  • Storage Bin in MM-set as mandatory field

    Hi experts,
    pls help me on how to set the storage bin field as Mandatory in MM creation.
    MARD-LGPBE
    is this possible to set by plant level or material type?
    need your expertise.
    thanks,
    Maia

    Hi,
    1. Get the field name  of storage bin which you want to make mandatory
    2.Go to T.Code: OMSR and enter that field name and get Field Selection Group(Selection Group)
    3.Go to T.code: OMS9 and select your material type and go to "overviews" .In the next screen, you can see your Field Selection Group, click that and you can make that field required mandatory & save.
    Hope helpful to you and then reward.
    Regards,
    Biju K

  • Report by Storage Bin

    Hello,
    I uses the Inventory Module not WM.   In the Material Master Record specifically at Plant Data / Storage 1 view, my client used the storage bin field to specify where the material will be storage.
    I need to know if exists a report to display the Warehouse by storage bin.
    I appreciate any help.
    Regards,
    Hector

    Dear,
    As far as I know not possible.
    We developed Z report for similar requirement.
    This storage bin is only significant if you do not use SAP warehouse management. It appears on goods receipt/issue slips.
    Regards,
    Syed Hussain.

  • Bapi to update Storage Bin

    HIya Gurus,
                     I have got a requirement where the user is gonna change the Storage bin via a report. I have created the report with the input enabled field for the new storage Bin to be entered. Now i need to overwrite this new value in the database. I am trying to use CALL TRANSACTION via MM02 but the select views are differ for materials.
                    Can any one help me out with any alternative like a BAPI or if there is a possibility to use Call transaction without the select views.
                        Your suggestions are valuable to me,
    Thanking You,
    ZIa

    Hiya Gautham,
                        Thanks for your Quick reply. I just checked BAPI_MATERIAL_SAVEDATA , it doesnt have any storage bin field in it. Can you please eloborate on your view about this BAPI.
                        Thank you very much.
    Cheers,
    ZIa

  • Is it possible to Extend the Storage Bin Length from 10 Char to 25 Char

    Dear Experts,
    We have a Requirement for Extending the Storage Bin Length from 10 Character to 25 Character.
    Question 1:
    Is it possible to Extend or Not?
    Question 2:
    Even if we extend what will be Impact on the Current Storage Bin Numbers used now.
    Thanks for your support in Advance.

    No, you can't change length for storage bin field in standard and also it is not suggestable to client. If client forcing on requirement, You can suggest like below.
    create one more field for EXT.storage bin by using enhancement  and do one customized report for show as ,  storage bin number+EXT.storage bin = actual storage bin.
    For only client reference you do this report and in standard reports it will not show like this else tell to client ---> it is not possible, because it is replicating and using at different programmes.

  • MMR -STORAGE BIN ENABLE

    deal all,
            Material master plant storage view storage bin field was disable mode. i m trying to make it enable, checked in oms9 already its in optional only. field reference, mater type, mm01 all i have checked its in optional entyr. any setting required for making enable.

    The bin field at material master storage location view becomes only accessable if you enter a storage location at the organisation pop-up when you start accessing the material master.
    if you dont specify a storage location, then the field is not visible

  • Storage bin should display in MB52

    Hi All,
        Storage bin should display in MB52  T-code warehouse stock dispaly, Please guide me how it possible...
    Regards
    Hari

    Hi Hari,
    MB52 Tcode is only for display stock in Inventory Management Level/ storage location level. If you want display stock in storage bin level, you can use t-code :
    1. LX03   - Bin Status report
    2. LS26   - Total Stock per Material (Warehouse Management)
    3. LS24   - Bin Stock per Material
    I hope it can explain your problem.
    Pls rewards point if helpfull.
    Thanks
    Gunawan

  • 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

  • Adding field to mb52 by copying it to a zprogram.

    HI Guru's,
    I am using the t code MB52 to display warehouse stocks of a material.
    This overview is needed to find out what the specific stock per storage bin is.
    For that we need to copy the standard program from MB52 to  a zprogram and add MARD - LGPBE(storage bin) in the selection screen as well as in the display.
    we need to add the field in validations,select queries etc.
    can any one help me out to proceed further and do it in a easy manner.
    Regards,
    Anil.

    Hello
    1. Copy programm RM07MLBS into Z-programm
    2. Add after select-options charg
    select-options lgpbe for mard-lgpbe.
    3. Add into select (form data_selection):
        SELECT matnr werks lgort
               labst umlme insme einme speme retme lvorm
               INTO (collector-matnr, collector-werks, collector-lgort,
                     collector-labst, collector-umlme, collector-insme,
                     collector-einme, collector-speme, collector-retme,
                     collector-lvorm)
               FROM mard
               FOR ALL ENTRIES IN t_nobatch
               WHERE matnr = t_nobatch-matnr
                 AND werks = t_nobatch-werks
                 AND lgort IN lgort
                 AND lgpbe IN lgpbe. """ add this

Maybe you are looking for

  • Oracle 11g R1 Automatic Installation shell scripts

    Hy Guys, Please can someone help me with: Oracle 11g R1 Automatic Installation shell scripts. A guide, how to or a link will be wellcome Kind Regards Easyman Edited by: Easyman on Feb 2, 2010 3:58 AM

  • Split Synchronization by Application

    Hi, We have a mobile solution with 2 applications installed on the mobile device. We have implemented a Synchronization service for each of them that triggers the SmartSync Synchronization. At the being time, when this synchronization process is trig

  • Exchange 2013 Services Will Not Start

    Server is a new setup with Server 2012 Standard. Installed Exchange 2013. Got everything up and running correctly. Installed MySQL in prep for another application that required MySQL. MySQL installed C++ 2010 and required CGI for IIS. E-mail immediat

  • Library items

    can i use library items in the same way as i can cfinclude or an html insert i realise these are server side actions but i want to know if it is possible to have links in the library which can be updated on the page4s what are the possibilities and d

  • Embedding Air.app

    Is it possible to embed a adobe air application into a website? Meaning a file with the extension ".app ". If this is not the correct forum please feel free to move it.