MMBE-i want display (1 box = 10 pc) in unit of measure

Dear All,
In MMBE t-code if we execute it,stock overview we can c as a report output.Displays Base unit of measure as(PC,EA....) here i want display (1 box = 10 pc) Which we ll give it while creating a material in mm01-purchasing.
There is no exits for this t-code so is there any options that functional people can enable to view it in output or any developments to do here.
Or in any other T-code we can display it.
<removed_by_moderator>
Edited by: Julius Bussche on Jul 28, 2008 10:29 AM

hi,
ask your mm consultant.....he needs to configure...

Similar Messages

  • Base unit of measure Box is missing in SAP 4.7

    Dear Group members
    Base Unit of Measure "Box " is not in my SAP System 4.7
    Dear Group Member
    I am not finding "Box " Base Unit of Measure in my system
    My system is SAP 4.7
    You suggestions will be appreciated

    Go to CUNI Tcode
    and select the existing any UOM which is proximate to Your BOX unit of measure.
    and Copy it as and Name it BOX
    OR
    Creation New Unit of Measure
    Use transaction CUNI t create UOM
    Here click UOM & then in the next screen click create icon in the top.
    Steps,
    1: use CUNI tode create Dimension give Dimension text and unit
    2: create a IS code
    3. in unit of measure option give commercial and technical information
    I hope that this will help u for create unit measure

  • Stock display with Alternate unit of measure

    Hi All,
    is there any report in SAP, which displays the warehouse stock with Alternate Unit of measure. I did try in MB52. It was showing only in BUM. Please help ASAP.
    Ayesha

    Hello Ayesha,
    We had the same requirement. So we copied MB52 to ZMB52 and added a new selection for the AUM. Additional coding was also done for the UoM conversion.
    Cheers !
    Rajesh

  • Display of unit of measure...

    Hi Gurus,
    When I generated a report, all the unit keyfigures got the unit of measure displayed along with the value except for two unit keyfigures wherein the unit of measure got displayed just below the description of the keyfigure and not along with the values. That is, in a particular keyfigure column, the keyfigure description got displayed on the top and the unit of measure just beneath the description and the values below that.
    Could you please help me with this issue.  I need to get the unit of measure displayed along with the values.  <<text removed>>
    Thanks,
    Edited by: sachitp on Oct 22, 2010 12:19 PM
    Edited by: Matt on Oct 23, 2010 1:36 PM

    Hi Sachtip, Assuming you are using Web based Analyzer; You need to do a change for your Web template 0ANALYSIS_PATTERN. Goto the Web Application Designer. Open Default template > Analysis Grid > Properties on Left Side > Web Item Params > Scaling Factors Visible [X]. Un-check this. Now, your Key Figure UoM factor description will be displayed along with the value. Now run your query; as this query by default uses parameters from default template; changes effected in the main query will be visible on your query output. Thanks!

  • Display popup box to enter the name for batch input

    Hi Experts,
    I am working on the ALV display.'
    I am giving two push buttons on the ALV Screen in the application toolbar.(Ex: 1.Online 2.Batch Job).
    If the user will select the ONLINE the process is going good.
    If the user will select the BATCH JOB it has to display popup box to enter the BATCH name and with that batch name i have to create the batch for the program in SM35.
    Can any one please help me in doing so.
    (to display popup box to enter the BATCH name and with that batch name i have to create the batch for the program in SM35).
    Thanks in Advance,
    Kruthik

    Hi,
    You can display a popup box by creating the screen and screen elements in the screen painter and use
    CALL SCREEN scr STARTING AT x1 y1 ENDING AT x2 y2.
    X and Y are the coordinates of the screen you want to display as a pop up.(used to manipulate the size of the pop up screen/window)
    Hope it helps.

  • Data View properties doesn't contain a Miscellaneous - Display Search Box option

    When I create a List View via the web  and edit the web part I have a Miscellaneous - Display Search Box option.
    When I insert a Data View via SharePoint Designer 2013 I don't see that option.  Is there a work around?
    Thanks,
    Dwight

    Hi,
    I can reproduce the issue and there are seems no OOTB way to display the search box at this moment.
    A workaround is using JavaScript and query string to filter a list view and retrieve the values you want.
    http://audministrator.wordpress.com/2013/12/08/sharepoint-2010-filter-a-list-using-an-input-box/
    http://techtrainingnotes.blogspot.com/2012/03/sharepoint-search-filter-or-sort-lists.html
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Display Filter box automatically for Interactive Reports

    Hi,
    I have a page which uses an Interactive Report and I would like to automacially display the filter box on the screen when the page is loaded. Does anyone know how to do that?
    Regards
    Paul

    Hi,
    The IR Search bar is displayed and the user then can click the down arrow next to the green cog which displays opitions such as Filter, Sort, Save Report etc. If they click Filter the Filter box is displayed where the user can then select the column, operator and expression they would like to filter on.
    I want to display this Filter box automatically when the page is loaded. The javascript being called to display that box is 'gReport.controls.filter();'. I must be able to add that on my page somewhere when it is loading. If I do it ONLOAD or in the header or footer i get 'gReport is undefined'. If I create a button and call that javascript it works.
    Regards
    Paul

  • How to display check box in atable control

    hi
    here is my requirement
    how can i display check box in table control and also when i check that check box it has to dispaly one pop up screen with the records of table control row
    points will be rewarded
    Thanks&Regards
    Nagesh.Paruchuri

    Hi,
    See this code for how to display check box in atable control
    *---- Table declaration.
    TABLES: KNA1.
    CONTROLS TC1 TYPE TABLEVIEW USING SCREEN 200.
    CONTROLS TC2 TYPE TABLEVIEW USING SCREEN 300.
    *---- Data declaration.
    DATA:OKCODE LIKE SY-UCOMM.
    DATA:V_KNA1 LIKE KNA1.
    *DATA:ERROR TYPE C.
    *---- Internal Table declaration.
    DATA:BEGIN OF IT_TAB OCCURS 0,
          CHK,
          VBELN TYPE VBELN_VA,
          KUNNR TYPE KUNAG,
          ERDAT TYPE ERDAT,
          AUDAT TYPE AUDAT,
          VBTYP TYPE VBTYP,
         END OF IT_TAB.
    DATA:BEGIN OF IT_TAB1 OCCURS 0,
          VBELN TYPE VBELN_VA,
          POSNR TYPE POSNR_VA,
          MATNR TYPE MATNR,
          MATWA TYPE MATWA,
          PMATN TYPE PMATN,
         END OF IT_TAB1.
    *&      Module  USER_COMMAND_0100  INPUT
    MODULE USER_COMMAND_0100 INPUT.
      OKCODE = SY-UCOMM.
      CASE OKCODE.
        WHEN 'DISP' OR SPACE.
          SELECT *
             FROM VBAK
             INTO  CORRESPONDING FIELDS OF TABLE IT_TAB
             WHERE KUNNR = KNA1-KUNNR.
          IF SY-SUBRC <> 0.
            MESSAGE 'No sales document exists'(001) TYPE 'I'.
          ENDIF.
          LEAVE TO SCREEN 200.
          CLEAR OKCODE.
    *--- To leave Transaction
        WHEN 'BACK' .
          LEAVE PROGRAM.
          CLEAR OKCODE.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Module  validate_kunnr  INPUT
    MODULE VALIDATE_KUNNR INPUT.
      V_KNA1 = KNA1.
      SELECT SINGLE *
        FROM KNA1
       WHERE KUNNR = KNA1-KUNNR.
    *-----Process error condition
      IF SY-SUBRC <> 0.
        CLEAR KNA1.
        KNA1-KUNNR = V_KNA1-KUNNR.
        CASE OKCODE..
          WHEN 'BACK' OR 'EXIT' .
            LEAVE PROGRAM.
        ENDCASE.
        MESSAGE 'Customer Does Not Exist'(002) TYPE 'I'.
        LEAVE TO SCREEN 100.
      ENDIF.
    ENDMODULE.                 " validate_kunnr  INPUT
    *&      Module  STATUS_0100  OUTPUT
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'PF'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0200  INPUT
    MODULE USER_COMMAND_0200 INPUT.
      CASE OKCODE.
        WHEN 'BACK' OR 'EXIT' OR 'CANCEL'.
          LEAVE TO SCREEN 100.
          CLEAR OKCODE.
          CLEAR IT_TAB1.
        WHEN 'DISP' .
          CLEAR OKCODE.
          READ TABLE IT_TAB WITH KEY CHK = 'X'.  
       IF SY-SUBRC = 0.
            SELECT  VBELN   POSNR  MATNR MATWA PMATN
         FROM VBAP
         INTO  TABLE IT_TAB1
         WHERE VBELN = IT_TAB-VBELN.
            IF SY-SUBRC = 0.
              SORT IT_TAB.
              DESCRIBE TABLE IT_TAB LINES TC1-LINES.
              LEAVE TO SCREEN 300.
            ELSE.
              MESSAGE E016(YBHV).
            ENDIF.
          ELSE.
            MESSAGE 'Please select one record' TYPE 'I'.
          ENDIF.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0200  INPUT
    *&      Module  STATUS_0200  OUTPUT
    MODULE STATUS_0200 OUTPUT.
      SET PF-STATUS 'PF3'.
    ENDMODULE.                 " STATUS_0200  OUTPUT
    *&      Module  USER_C.OMMAND_0300  INPUT
          text
    MODULE USER_COMMAND_0300 INPUT.
      SET PF-STATUS 'PF3'.
      CASE OKCODE.
        WHEN 'BACK' OR 'EXIT' OR 'CANCEL'.
          CLEAR OKCODE.
          LEAVE TO SCREEN 200.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0300  INPUT
    *&      Module  modify  INPUT
    MODULE MODIFY INPUT.
      MODIFY IT_TAB INDEX TC1-CURRENT_LINE.
    ENDMODULE.                 " modify  INPUT
    *&      Module  okcode  OUTPUT
          text
    MODULE OKCODE OUTPUT.
      CLEAR OKCODE.
    ENDMODULE.                 " okcode  OUTPUT
    Reward Pointsa If usefull
    Regards
    Fareedas

  • English letters are displaying as boxes when telugu language is selected

    Hi All,
    I am working on an application for which we are providing the support for around 40 languages. I am having one issue when the application language is changed to telugu. When the user changes the application language to telugu, then the english letters in the application which are not localized (Left intentionally to be not localized) are displaying as boxes.
    In my application i set the file type description for the JFileChooser as "ఫ్లాష్ (*.swf)". The telugu letters are displaying correctly but english characters such as "swf" are displaying as boxes. I tested this application on Mac, Ubuntu, Windows XP, Windows 7 operating systems. In Windows 7 and Mac operating system the above issue is not reproducible but it is reproducible in Ubuntu and Windows XP operating systems.
    Please provide your valuable suggestions towards the solution for this problem.
    Thanks in advance.
    Udaya Shankara Gandhi.

    Hi All,
    Thank you for all your support in achieving the solution.
    Finally i got the solution for this problem with CODE2000.ttf font file. After i installed this font file in my fonts directory, english letters are displaying correclty. The reason for displaying english characters as boxes is the ttf files what i have used upto now (Gautami, Vemana2000, Pothana2000, Akshar) are not having support for English characters. But CODE2000.ttf file having the support to displying both english and telugu characters. After installing this font all the english letters are displaying correctly when language is changed to telugu.
    Fonts directories:
    c:/Windows/Fonts for Windows
    usr/share/fonts for ubuntu
    serach "font book" in Finder on Mac

  • Quotation Marks display as boxes

    I need to figure out why in some instance quotation marks
    display as boxes.
    This may also be a ColdFusion question but I'll start here:
    I have a site that displays articles from a coldfusion
    database. The articles display fine. There is no css or font tag
    applied to the text (so basically displaying default fonts).
    Now, I gave the page a new name and surrounded the code with
    formatting css. All quotation marks display as square box. I
    thought it may depend on the font that I chose (Ariel). So I
    removed the css style sheet for a moment but the quotation marks
    still show as box. Since I have the same code to pull the data,
    same browser, same computer, this is puzzling.
    Any idea what is causing this?
    Thanks.

    Are the quotes 'straight' quotes, or 'curly' quotes? Although
    both straight
    and curly quotes are special characters (&quot; and
    &#8220; respectively) a
    ' " ' (i.e. straight quote) will usually appear as a straight
    quote when put
    directly in the code, but I have never had curly quotes
    appear correctly. I
    guess this is because quotes are used within attributes and
    so on in regular
    HTML.
    If this isn't your problem then someone else will answer
    better than I
    have...
    Regards,
    Bruce
    "weblinkstudio" <[email protected]> wrote in
    message
    news:gnv4mg$82f$[email protected]..
    >I need to figure out why in some instance quotation marks
    display as boxes.
    > This may also be a ColdFusion question but I'll start
    here:
    >
    > I have a site that displays articles from a coldfusion
    database. The
    > articles
    > display fine. There is no css or font tag applied to the
    text (so
    > basically
    > displaying default fonts).
    >
    > Now, I gave the page a new name and surrounded the code
    with formatting
    > css.
    > All quotation marks display as square box. I thought it
    may depend on the
    > font
    > that I chose (Ariel). So I removed the css style sheet
    for a moment but
    > the
    > quotation marks still show as box. Since I have the same
    code to pull the
    > data,
    > same browser, same computer, this is puzzling.
    > Any idea what is causing this?
    > Thanks.
    >

  • Adobe Bridge 1.0.3 displays white boxs after 10.4.6 update

    After the update Bridge displays white boxes in the window. I have done all the standard stuff like delete prefs, rebuild caches, I even reinstalled it. I also ran the Adobe security update that was mentioned on another thread no luck. I have posted this problem at Adobe also. Anyone know of a fix?
    Patrick

    Turns out it was bad ram causing some of the trouble and trying to fix it only caused more of a mess.

  • Displaying trim box size with Acrobat Reader

    I am looking for a way to have Acrobat Reader display Trim Box size. We have many Customer Service Reps and Sales people who receive PDFs from clients and cannot tell what the Trim Box size is except for asking me. I have Acrobat Pro and can easily find the information, but I am tired of being constantly asked. It does not make sense for all them to have Acrobat Pro.  Any help is appreciated.

    You need to Reader-enable the document, which allows Reader to do things it normally cannot. In Acrobat 9, you'd select: Advanced > Extend Features in Adobe Reader
    In Acrobat 8 it's something different but very similar. Note that some people have reported problems when trying to use an enabled document in a different version of Reader than the version of Acrobat that was used to enable the document.

  • I have a picture library with images in sharePoint, now i want display that images in sharepoint webpage as a webpart.

    Hi All,
    I have a picture library with images in sharePoint, now i want display that images in sharepoint webpage as a webpart.
    i have displayed the all the images as a webpart.
    Now i want to enable thumbnail on that images and when i click the thumbnail of the image, it will be dilplayed as large image.
    How can i do this, any help!

    Hi,
    Please do the following to complete this task.
    1) Insert the picture library as list view webpart in your page.
    2)Specify the column titled  Thumbnail Preview in the list view.
    3) Edit the webpart and set the Toolbar Type to Summary Toolbar.
    Regards,
    Anurag

  • Itunes 10: East Asian languages displayed as boxes in certain areas

    I just got a new computer, and moved all my music to my new computer, and installed Itunes 10. But for some reason, if I try to edit my song's info (Right click on song, 'Get Info') the titles and everything that's in another language displays as boxes. The song title itself when in Itunes displays properly, but only in the 'Get Info' box does all my Chinese, Japanese, and Korean song information turn into little boxes. It's not my computer's problem, as it displays all these languages properly. The problem lies with Itunes, but none of the help topics really do anything. Can anyone help me out please?
    If you didn't really understand my explanation, here are some pictures:
    [IMG]http://i53.tinypic.com/35n0i02.jpg[/IMG]
    [IMG]http://i55.tinypic.com/ojo1i0.jpg[/IMG]
    As you can see, boxes in the info editing areas, but everywhere else, it displays properly.
    Thank you for your help!

    In case anyone else comes across this problem -
    It turns out that the fontconfig.properties approach is a bit of a red herring (at least in this example).
    I've resolved the issue by adding a method to my bean to specify a different font for english and chinese language users. For chinese language users I specify Font = "Simsun-18030" and for each AWT component explicitly setFont( new Font( "Simsun-18030", Font.PLAIN, 14 ) ) Now AWT components displaying chinese characters are rendered correctly with no need to modify any config files on the client PC.
    - NB font appears smaller for pointsize than english fonts.
    - Using "SimSun" as the font also works but text in english is not displayed very clearly
    - On windows you must install east asian language support for this to work (Start -Run - intl.cpl - languages tab)

  • Simplified Chinese displayed as boxes with numbers

    Firefox used to be able to display Simplified and Traditional Chinese character pages perfectly when it's set at "Auto detect- Chinese". However, ever since I updated to 4.0b7, Simplified Chinese characters have all started to be displayed as boxes with little numbers in them.
    Despite trying different encodings, such as GBK and GB18030, nothing is able to properly display Chinese simplified characters. I have IE as well, and it is able to display both S and T Chinese pages without a problem like Firefox before 4.0b7. I'm using English version of FF with 64bit Windows 7.

    The boxes with little numbers mean that Firefox is now unable to find a font which supports the characters in question. (It's nothing to do with the character set detection.) This could either be because the fonts have been removed from your computer (unlikely, if IE can find them), or perhaps because the website has changed to ask for fonts you don't actually have, or perhaps it's serving different pages to different versions of Firefox. Were you on 4.0b6 before, or 3.6.x?
    Gerv

Maybe you are looking for