Comma is showing at the place of decimal(.)

Dear Gurus,
  In sap script at the place of decimal in netweigh and currency fields comma coming.
Please tell me how i can show the decimal.Its very urgent.
Thanks in advance.
Regards
Maqsood.

Dear Usman,
I know about the user profile. i checked all the setting.
all are correct.basis consultant also checked the setting.
this is probelm in sap script.
you always write the above comand then only you can get the decimal.
Regards
Maqsood

Similar Messages

  • In Indesign cc the preview of the selected image is not showing in the place dialog box how to enable that?

    I can't able to see the preview of the selected image in place dialog box of indesign cc but it working in indesign cs6

    Post Author: Argan
    CA Forum: .NET
    A couple things can cause this.
    Right click on the red x to find out the name of the png file.  Search the web server for that png and make sure that the asp worker has access to it.
    The other is a image handler issue.  Search the kbase for Red X NET 2005 and you will find a kbase or two that addresses this.

  • TS4079 Siri doesn't show me the places in Doha,Qatar why??!!!

    I tried to ask siri about mcdonalds or where can i get pizza? She said she can't find places in qatar  so what siri can't work in qatar or is there a specific thing i need to do ??!! Cuz i turned siri and the lication services on .

    Qatar is not supported.
    http://www.apple.com/ios/feature-availability/

  • How do I correct % complete to show whole numbers, not two decimal places

    I just installed version P6 6.2 on my laptop and restored a schedule. The percent complete is showing two decimal places for activities less than 100%. What I would like is to have whole percentages, e.i. 84%, not 83.76%. How do I correct this? I thought it would be under the user preferences, but it's not there.
    Edited by: 795589 on Sep 20, 2010 5:46 AM
    Edited by: 795589 on Sep 20, 2010 5:47 AM

    *795589,*
    What particular percent complete are you having trouble with?
    *(Found in the P6 knowledgebase) This issue is an existing Enhancement Request. It will be considered for a future release*
    Other than that, maybe try creating a global change to manually calculate your percents.
    hope this helps,
    +*** Can the number of decimal places for Percent Complete be changed? [ID 895884.1] Modified 30-OCT-2009+

  • Sap Script : getting comma in place of decimal point & viceversa

    Hi experts
    In one Sap script for 2 currency fields comma is there in place of decimal point & viceversa.(But rest of currency fields are getting displayed correctly.)
    ex: 1426.88  is printed as 1.426,88
    please provide me solution as early as possible
    Thanks & Regards
    Swathi Vuddala

    Hi Swathi,
    Check this info.
    I am providing two ways with some sample code, you modify it accordingly to your code.
    THIS PROCEDURE IS BY CHANGING SETTINGS :
    In your user profile, change the decimal format you are currently using.
    System->User Profile->Own data.
    Go to defaults tab and then change your decimal notation.
    THIS PROCEDURE IS WITHOUT CHANGING DEFAULT SETTINGS:
    Report YH642_TEST.
    TABLES:
    mard.
    DATA : W_mard_labst type p decimals 3,
    w_dt1(18).
    data:
    W_N TYPE I.
    SELECT SINGLE * FROM MARD INTO MARD WHERE LABST = '10000.00'.
    WRITE: mard-labst .
    W_mard_labst = mard-labst.
    WRITE:/ W_mard_labst .
    w_dt1 = w_mard_labst .
    write W_mard_labst to w_dt1.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. Please help

    I am facing a strange problem on new iphone 5 that I bought last week. The maps app and the places in photo gallery shows the pin and my location, however there is no information of locations. Tried to close the apps, phone restart, reset etc. I am accessing it via strong wireless connection and it works fine on other devices. Please help.

    zapgrap wrote:
    there is no information of locations.
    Then no information exists.  Use the Report a Problem button within the app to report it.

  • Can not change the number of decimal places in the normalization of result

    dear all
        i want to see the proportion of some data, for example, the income of May is 300, and the total income is 1000, i need to display it like 33.33% . so i set the
    Calculate single values as normalization of result, and then it display 33.333%, i like to display only two number of decimal places, so i set the number of decimal places as 0.00, but i doesn't work, it still display three decimal numbers.
        maybe you say i can use the percentage function like %CT %GT %RT, but i need to allow external access to my query, so the i can not use those functions.
        can somebody helps me ? your advice is appreciated.

    hi,thanks for your advice, but that doesn't suit for my problem.
    before i set the normalization of result, i can change the decimal values. After that i cann't.
    In your thread, someone proposes use the T-code OY04. but this wouldn't help. As i change to other key figure, such as user quantity, when i set normalization of result, it still display 3 decimal values.
    i think the point maybe lie in the normalization of result. please advise... thanks...

  • How can i get the correct text from a string like it show in the original source with the quotation marks in the right place ?

    The text is in hebrew so the problem is that sometimes the quotation marks not in the right place.
    For example i have this text: תווית
    על בגד: ''תן לאישה לכבס. זה תפקידה''
    This is the source original text you can see the quotations marks and they are not in the right place and all i did is copy paste.
    And this is a screenshot of how this text looks like in the website in the original:
    You can see now where the quotations marks should be.
    Now this is how i'm using the text in my program:
    First of all i'm using a webclient to download the page from the website and i'm also encoding it to windows-1255 since it's in hebrew.
    using (var webClient = new WebClient())
    webClient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    byte[] myDataBuffer = webClient.DownloadData("http://rotter.net/scoopscache.html");
    page = Encoding.GetEncoding("windows-1255").GetString(myDataBuffer);
    Then i'm extracting the places i need by reading the html file lines and parsing the right text and it's link.
    string loc;
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    List<string> lockedLinks1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    lockedThreads = new List<string>();
    lockedLinks = new List<string>();
    Regex textRegex = new Regex("ToolTip.*?(?=','<)");
    string[] fall = File.ReadAllLines(filename);
    for (int i = 0; i < fall.Length; i++)
    if (fall[i].Contains("http://rotter.net") && fall[i].Contains("locked")||
    fall[i].Contains("locked_icon_general") ||
    fall[i].Contains("locked_icon_anchor") ||
    fall[i].Contains("icon_anchor") ||
    fall[i].Contains("locked_icon_fire") ||
    fall[i].Contains("locked_icon_sport") ||
    fall[i].Contains("locked_icon_camera") ||
    fall[i].Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(fall[i + 2]))
    if (m.Value.Contains("><b"))
    loc = m.Value.Replace("\"><b", string.Empty);
    lockedLinks.Add(loc);
    string txt = fall[i - 1];
    string text = textRegex.Match(txt).Value.Replace("ToolTip','", String.Empty);
    if (text.Contains("&rsquo;"))
    text = text.Replace("&rsquo;", string.Empty);
    lockedThreads.Add(text);
    Already here on the List lockedThreads you can see the quotation marks not in the right place as in the original:
    After i'm parsing the text and links and adding them to the Lists in another class i'm doing a comparison using this Lists:
    foreach (List<string> l_branch in ListsExtractions.responsers)
    TreeNode l_node = treeView1.Nodes.Add(l_branch[l_branch.Count - 1]);
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    l_node.ImageIndex = 0;
    l_node.SelectedImageIndex = 0;
    for (int l_count = 0; l_count < l_branch.Count - 1; l_count++)
    TreeNode l_subnode = l_node.Nodes.Add(l_branch[l_count]);
    if (ListsExtractions.lockedThreads.Contains(l_subnode.Text))
    l_subnode.ImageIndex = 0;
    l_subnode.SelectedImageIndex = 0;
    The problem is in the line:
    if (ListsExtractions.lockedThreads.Contains(l_node.Text))
    When it's getting to the line with the quotation marks it's never equal.
    Now there are more quotation marks.
    In general the problem when comparing both text if it's having quotation marks it's not the same.
    So i have two options:
    1. To fix it somehow so the quotation marks will be the same in both variables when comparing and also the same like in the original as they show in the html page.
    2. To remove the quotation marks from both variables.
    What should i do ? And how ? I was prefer to use the original quotation marks like in the original since they have a meaning in the place they should be. The question is how can i do it ?
    This is example of the block from the html file where the text with the quotation marks is:
    <TD ALIGN="RIGHT" VALIGN="TOP">&nbsp;<font size=-1 color=#ff9933><b>9418</b></font>&nbsp;</TD></TR><TR BGCOLOR="#eeeeee">
    <TD ALIGN="RIGHT" VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();" onmouseout="deActivate()" href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/new_locked_icon_general.gif" border="0"></a></TD><TD ALIGN="right" VALIGN="TOP" WIDTH="55%">
    <FONT CLASS='text15bn'><FONT FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=189696&forum=scoops1"><b>
    <font color="898A8E">תווית על בגד: ''תן לאישה לכבס. זה תפקידה''</b>
    </a></font></TD>

    Ok, it is unclear on what is happening here.
    Are you saying that when the webclient gets the data that it is not honoring the quote characters? Or the processing of the data buffer is causing issues?
    This is what I see the of your example text which is trying to be parse out:
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();">";
    It appears to me that the  escapes `&rsquo;` does not have matching `&ldquo;` anywhere within the tooltip. So it appears that the page properly places left quotes in when processing the page, but the raw html has broken text.
    Hence a garbage in, garbage out situation.
    William Wegerson (www.OmegaCoder.Com)

  • How to get the number of decimal places configured for a site column

    Hi,
    I have a column 'SampleNumCol' of type Number, the number of decimal places to be displayed is configured as 2.
    The column conatins a value, but when retrieved programatically is displayed as 5.00000000  instead of 5.00.
    I am retrieving this column using listitem.Properties[field.InternalName].
    I need to trim the decimals based on  number of decimal places configured for the site column.
    How to get the number of decimal places configured for a site column?
    Thanks in advance,
    dhijit

    Get the field as SPFieldNumber and then check DisplayFormat which returns
    SPNumberFormatTypes
    SPFieldNumber numberField = list.Fields.GetFieldByInternalName("YourNumberFieldName") as SPFieldNumber;
    SPNumberFormatTypes numFormatType = numberField.DisplayFormat;

  • How to show the quantity in decimal in MIGO

    Dear expert,
    How to show the quantity in decimal in MIGO?? for example in material BOM the quantity is 12.480 but the quantity in MIGO is 13. it's automatically rounded.
    what should I do to show the decimal point in MIGO?
    Thanks
    Pauline

    Hi,
        Please check in su3 -
    defaults (Tab) -
    Decimal Notation.
        Change the decimal notation and logoff and login to apply the changes.
        I think it may help you.
    Regards
    Sreedhar Reddy

  • Alert dialog shows in the wrong place

    Hello,
    I've an extension (based on <csxs:CSXSWindowedApplication>) that opens a Window component called Info:
    public function myDoAbout():void{
         var window:Window = new Info();
         if(window){
         window.type = CSXSWindowType.MODAL_DIALOG;
         window.width = 400;
         window.height = 630;
         window.resizable = false;
         window.open();
    That's fine. Whithin this window, there's a button that launches an Alert dialog:
    Alert.show("Message in a bottle", "Extension Alert Title", Alert.OK, Sprite(mx.core.Application.application));
    The problem is that the Alert dialog shows not within that window, but inside the (parent) extension.
    What's the correct syntax for the optional but mandatory fourth parameter in the Alert.show() to make the dialog shows in the correct place?
    Thanks
    Davide

    What a stupid.
    Sorry for having asked such a stupid question, which answer is of course "this":
    Alert.show("My message", "Extension Alert Title", Alert.OK, this);

  • Icon for Desktop Shows Up as a Generic Icon in the Places Sidebar

    Noticed yesterday that the icon for the Desktop showed up as a generic icon in the Places Sidebar. I have tried resetting the PRAM, repaired the Hard Disk and Permissions using the Disk Utility and deleted the com.apple.desktop.plist pref in my user library. I also checked my Admin account I use for troubleshooting and the desktop icon was fine in that account. Not sure what else to do. Not a big deal but just wanted to make sure that it is not a sign of bigger things to come. Maybe the MBP knows I'm thinking of trading it in for a new model, LOL.
    Any thoughts?
    Thanks in advance.
    Tom

    Wow. That's stunning. I don't really know why it works, but it does. Apparently when you paste something on top of the icon in the sidebar, and remove it, it refreshes itself and somehow remembers the original icon?
         I deleted something and had several blank white icons in the sidebar, so I removed them and restored by pulling them back on from my home folder. Everything worked except the Desktop. First it was the blank white icon. Then I pulled it from my home folder and it was a plain blue icon with the generic page symbol, such as a standard Documents folder icon. Then I fiddled with it and pulled it over again and it changed to the generic blue desktop icon you see in the home folder. Last I tried your step of just pasting the generic desktop icon over it and undo-ing that paste, and viola!
         Many thanks for sharing. I could have forced myself to live with the generic, but it wouldn't have been the same, and not truly satisfactory, as it wasn't back the way I started. Insert applause.
    pete

  • I edit the location in the info pane, but it doesn't show up in Places!

    Hi everyone, I have recently started to use iPhoto '09 but having a little difficult with Places. I do not have geotagging, so I am editing the location of my photos manually (nothing too specific, just the city). When I first attempted it, I used the info pane for the event, added the city (saw a pin drop in the appropriate location on the mini-map in the info pane) and then clicked done. However when I went to the Places window...no pins were on the world map!
    I closed the computer and decided to try again the next day. Although I cannot imagine I did anything different, this time it worked! Yeah!
    But today I added new photos and again edited the locations in the info pane (clicked the little 'i' in the right bottom corner), but while the info pane shows the correct location both in words (Location) and on the mini-map...when I go to the Places window, the pins are no where to be found (only see the pins from the previous day).
    Am I missing something simple here? It's driving me nuts! hahaha...

    I'm going from memory since this is done from work, but I believe you have to use semi-complete addresses (IE., 'Chicago' by itself won't work, you need to use 'Chicago, Il.' or 'Chicago, Illinois'. IF the address is for a 'Place' iPhoto knows (and it knows hundreds if not thousands of places) it will pop up and allow you to choose that location. If nothing happens, that probably means iPhoto doesn't know that 'Place' and you need to provide a more complete or more accurate name for it. Like I say, try getting in the habit of using at least a City and State... you can also choose the 'Locate on Map' feature and it will actually show a map of the place and you can Move the Pin to exactly where you want it, choose from Satellite View, Terrain View, Map view, zoom in, out, or enlarge or reduce the area covered by the Pin (the Blue Circle around the pin. Hope this helps...

  • My MacBook running Mountain Lion does not allow me to view any videos on the Internet. The place where the video is supposed to be just shows black rectangle. Is there anything I can do to make videos on line work?

    My MacBook running Mountain Lion does not allow me to view any videos on the Internet. The place where the video is supposed to be just shows black rectangle. Is there anything I can do to make videos on line work? I discovered that Java quits immediately. Could that be the cause? If so, how do I fix it?

    My MacBook running Mountain Lion does not allow me to view any videos on the Internet. The place where the video is supposed to be just shows black rectangle. Is there anything I can do to make videos on line work? I discovered that Java quits immediately. Could that be the cause? If so, how do I fix it?

  • Is there a place that shows me the editing I have done on a picture?

    Is there a place that shows me the editing I have done on a picture?

    When you are working on a picture in PSE, you can identify the sequential steps in the Undo History palette. (Windows>Undo History).
    Ususally, this is utilized to revert to an earlier enhancement. However, for your stated purpose, you could record the work flow with a print screen which incorporates the palette.

Maybe you are looking for

  • The problem of use synonym of a remote table to create folder in BI

    1: i have a table TB1 on DBserver1. and there are foreign key constraint FK1 on TB1(id:PK)->TB2(id:FK). 2: Now I create a DB link db1.world link to DBserver1 in DBserver2. 3: Then I create synonym SY1 and SY2 in DBserver2. (synonym SY1 and SY2 link t

  • Automatic reset of Quick Poll

    Hi you all! We are going to implement the Quick Poll iView in our local Portal as a tool to decide where to go for lunch. I know, not the most exciting use for it, but it will come in handy for us since we are located in different part of our town. A

  • CSS Menu incorporated into Image.  How is it done?

    Hello everyone I hope your weekend if proving fruitful! I have a little problem with Dreamweaver.  Basically it is this: I have created a banner in Photoshop with a gorgeous artwork image (I am pleased with it to be honest!).  To add to its aethetic

  • Extract data point from dynamic data based on time index

    My goal here is to find out what the frequency of pulses from object B is given an input to object A, and not only that, but what the frequency is at a particular moment in time. While in this example, the DAQ Assistant reads the data and will show i

  • Ap won't accept backup or primary image

    Hi, Trying to predownload firmware 7.6.130.0 on APs, I've a bunch of AP on which it doesn't work (neither to the backup image nor the primary one). The status is failed. The wlc is running 7.4.130 as the active image and 7.6.130.0 when it will be reb