How to remove "," in display

hi,
i have a requirement to display the weight field without comma ie, if weight is 12000 i am getting 12,000 IN OUT PUT.
i dont want to disply ",".
note : i can't change the system default settings.
pradeep
Edited by: pradeep kandgal on Aug 18, 2008 5:23 PM

Build a small logic, it will solve you problem.
DO.
REPLACE ',' WITH ' ' IN QTY.
IF sy-subrc NE 0.
CONDENSE QTY NO-GAPS.
Exit.
Endif.
ENDDO.
This logic will remove all ','.
Close thread once your question is answered.
Regards,
Sairam

Similar Messages

  • How to remove second display on settings

    I have a Macbook Pro 13inch and a Samsung LED TV. Last time i used to view my work on the large screen using HDMI cable, with same resolution on MBP and the TV. Now, when i connect the HDMI, the MBP screen resolution distorts and widens and the TV resolution compress a bit. What could be the problem? And i want to get rid of the second display on my settings. Some rubbish app automatically installed the second display. Please help me.

    The settings lockout would be controlled through the EWS (embedded web server) of the printer.  The lockout is really designed for the Officejet printers to prevent others from making printer changes that could affect how the printer behaves.  For example, to keep the date and time set to that faxes show an accurate receive time.
    Get the printer's IP address by pressing the network icon at the top of the screen.
    Enter this IP address into the address bar of a web browser on a computer.  The printer's status page should load.  If you receive any certificate warnings, choose the option that lets you continue anyway.
    Click on Settings and then go to Administrator Settings on the left.  Many of the features of the front panel are controlled here.  Make sure everything is checked except for Control Panel Lock.  Once this is set, click apply.
    Power off the printer for at least 1 minute and then power it back on to force the new setting to take effect.
    You could also try setting the date and time under preferences on the left of the settings page, but it sounds like the lockout issue is more widespread than just date and time.
    The Admin settings page should look similar to this screenshot when it is set the way it should be.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • How to remove the display of DECIMALS in ALV? Any Falg?

    Hi Experts,
    One simle dount that, I am getting some values in some fields as 12.34; 11.22 etc - 2 decimals, but, am looking to hv as 12; 11 - NO DECIMALS.
    So, I looked any flag in Fileds catalog, Lay out in SLIS, but, did not find any flag?
    now, am getting it by moving to a P type field.
    But, pls.  let me know that How to get it done in ALV w/ SLIS? wht is the flag?
    thanq

    Check the field catalog, there is a field called  decimals_out,  set this to 0(zero).
    Regards,
    Rich Heilman

  • How to remove display in iMac 2012?

    I would like to know how to remove the display in Mac 2012. It is very important for me to change RAM memory or hard drive by myself without taking the whole machine to the repairment service.  I wish that Apple´s wise designers have considered this matter too.

    If you are talking about the Newest models, the 21.5" model, there really isn't any way to Upgrade the RAM. The screen is glued to the case.
    Take a browse over to iFixIt.com and see the review of the newest model. Very bad repair rating.

  • How to remove the Personalize link from the table layout displayed on Page.

    While i create a new page and a table layout is created on this page it displays a link called Personalize this table. For every table i create the same is displayed.
    If 10 such table layouts are there i get personalize options on all such 10 layouts on same page.
    If anyone of u knows @ this please help me out how to remove that link from the page.

    You can set the value for the profile FND: Personalization Region Link Enabled / FND_PERSONALIZATION_REGION_LINK_ENABLED to No.
    For additional information, please check the Personalization topic of the Oracle Application Framework Profile Options chapter in the OA Framework developer's guide.

  • Blank page getting displayed how to remove it from smartform?

    I am using COMMAND line in smartform to display the second page on particular condition only. But because of it in display I am getting one blank page(extra page) at the end. Which should not appear. How to remove it?

    I guess there you must be using window/table/template there. If so try to decrease height of it and check .
    just drag up the window/template or table what u r using at last of the form. Only because of it extra space is generated and its taking you to next blank page.
    Edited by: Swetha on Jul 18, 2008 12:11 PM

  • How do I remove the display glass on an imac7.1 to replace the optical drive?

    I have a 2007 iMac 24inch which has a bad optical drive.  How do I remove the display glass to get to the optical drive?

    Replacing anything in the newer designed iMacs is not a job for someone inexperienced or a novice.
    If you don't like the idea of having to use an extrernal optical drive, It might be best to take your iMac to an Apple store or authorized Apple repair center for repair/replacement.
    If you damage anything else while trying to do this replacement yourself, it will cost you even more cash to repair at a repair center later.

  • HT5858 In control centre some how facebook app is getting displayed I dont want any app to be clickable from control centre how to remove it from control centre panel

    In control centre some how facebook app is getting displayed I dont want any app to be clickable from control centre how to remove it from control centre panel

    .

  • ALV .  How to remove the sort buttons on toolbar in ALV report?

    Hi,experts
      As you know, in default case , the alv report will display two sort buttons(ascending ,descending) on its toolbar , So How to remove the sort buttons on toolbar in ALV report?
      Thanks for your help .

    Hi guixin,
    1. Before calling REUSE_ALV_LIST_DISPLAY
    2. Write this code :
    data : excl type SLIS_T_EXTAB.
    data : exclwa type SLIS_EXTAB.
    exclwa = '&OUP'.
    append exclwa to excl.
    exclwa = '&ODN'.
    append exclwa to excl.
    3. Then while calling the FM,
       pass this parameter also .
    IT_EXCLUDING     = excl
    It will work fantastic.
    regards,
    amit m.

  • How to remove % sign from List of Values

    Hi ,
    I have shared list of values thats is based on SQL query. At runtime the select list default value is showing as "%". Can someone suggest how to remove % and replace with null (blank)
    Thanks
    Aali

    In ist of Values region, if you select display null as 'Yes', in 'null display value' area use space tab or type something like ' - Select-' to replace %. Or, choose Display null as 'No.

  • Urgent help: How to remove the accumaltion when show movies step by step with buttons

    I want to show the movie step by step by clicking the next
    button. Inside each frame, many movie clips are generated
    dynamically at runtime, and they can be played interactively.
    I achieves the step-by-step display of those frames by adding
    another layer with the action stop(). But I got one trouble: all
    the movie clips from previous frames are accumalted. How to remove
    the accumulation from previous frames?
    For the continuous display of the movie, I tried to use
    onEnterFrame() and change the _visible property of all the movie
    clips to false in this function. But it doesn't work for the
    step-by-step display. Once I click the next button, the movie clips
    at the current frame just show very quickly, then disappear. What
    should I do?
    I need to fix this immediately.
    Your help would be greatly appreciated.
    - zcx

    you can use the removeMovieClip() method for those movieclips
    added dynamically.

  • How to remove star in cheque amount

    hello all
    We have developed or design new form for cheque printing in sapscript
    how to remove some star in cheque amount  (*******)  ******500000  how to possible
    please help me.
    Thanks & Regards
    Richa

    Hi,
    If it is custom one check from where it is coming.Whether hard coded or not.Just change it there.I am using a custom one it is displaying with out stars.
    Regards,
    Madhu.

  • How to remove decimals in ALV

    How to remove displaying decimals in ALV report(using FM) ?

    HI Sri,
       Pass the values into a variable of type i.
    data : var type i,
             var1 type f value '2.111'.
        var = var1.
    or else
    change the field catalog this way ..
    <b>lv_cat-decimals_out = '0'.</b>
    Regards,
    Santosh

  • How to remove discoloration in WP-DC34 underwater casing?

    how to remove discoloration in WP-DC34 underwater casing?

    the inside of the underwater casing discolored.  It used to be a clear see-thru case but now, it has this white colored substance on the inside that makes it hard to see the display of the camera.  I don't know what caused it.  I wasn't able to use it for a long time and when i did used it on a swimming trip, after i've rinsed it and left it over night, the next day the discoloration appeared.  I thought that it might have been caused by salt deposit so i soaked the inside of the casing with water and left it over night.  The next day, it got worst.  So took it out, tried washing it with soap and dishwashing soap, didn't work.  I tried rubbing it with clothe, it cleared a little bit, but still there.  I'll take a picture of it and post it here so that you'll have a visual of what i'm talking about, the white substance in the casing.

Maybe you are looking for

  • I can't install, repair, or remove BootCamp drivers from my Windows installation

    I have Windows XP SP3 installed on my Macbook Pro. When I installed Windows originally it failed to completely install BootCamp drivers, so I don't have advanced trackpad and keyboard features. I've downloaded the latest BootCamp drivers v3.2 that st

  • How to compile files in package and its subpackages at one time

    I have package A , under A there are files and subpackages B,C,D, How can I complie files in A,B,C D packages with javac at one time besides using make. Thank you very much! Qi

  • Circle with slash/won't recognize DVD or external drives

    I have this model: Model Name:          MacBook Pro   Model Identifier:          MacBookPro5,5   Processor Name:          Intel Core 2 Duo   Processor Speed:          2.26 GHz   Number Of Processors:          1   Total Number Of Cores:          2   L

  • Does oracle.jdbc.pool.OracleDataSource need to be closed.

    In Oracle 10g JDBC, OracleDataSource has a method close. However, I found that many code snippets do not close OracleDataSource. For example, in an Oracle sample code [1], it is not closed. Is that a bug in that sample code? [1] http://www.oracle.com

  • Decimals Problem with GUI_UPLOAD

    Hi Experts, Can any one help me, I am using GUI_UPLOAD FM,the problem is the Decimal Format of the Data which I am uploading is changing to another format. When using WS_UPLOAD its working fine. Example: In SAP it is trying to post as 1 249 400,00 CZ