Comma and space as seperators in background report ??

Hello Experts,
Hope I am posting in a correct group. I am having an issue when I run a report in the background. When I download the report from spool in SM37 into Excel file, the number appears for example:
value 19,999.00$ would show 19 999,00.
This makes it difficult to manipulate/ analysis data further.. I appreciate if anyone would share solutions on this.
Monica

Hello,
Download and manipulate the same in excel,
If you want you can put $ otherwise you can remove.
Check for excel "Options"
Regards,
Ravi

Similar Messages

  • Removing Commas and Spaces from Field

    I have a table called TableD1 in a database with a field called "Range".
    The ranges are like 1-1000; 1001-2000; etc. up to like 1000000-200000.
    That is how they are supposed to look, they are not numeric fields, just general, containing a low, a dash and a high all in the same field.
    I just discovered that quite a few of the entries have included commas and spaces, like 1-1,000 or 100000 - 200000.
    I need to write a Query that will remove all of the commas from the data in TableD1's "Range" field, then all of the spaces.
    I imagine they are some kind of Update statements but because of the potential to blow up the whole thing, I'm reluctant to experiment.
    Does anyone know what code I should use?
    Thank you in advance for any help.
    Gee

    Making sure you've taken a backup. Pull the data into temp table and do the testing. once you satisfied with the output then do the update on the main table.
    create table #temp
    Range varchar(100)
    insert into #temp values('1-1,000'),('100000 - 200000')
    select replace(replace(Range,',',''),' ','') from #temp
    --update #temp set Range=replace(replace(Range,',',''),' ','')
    Validate the the output of the select statement.
    --Prashanth

  • Trying to concatenate 3 fields wiht commas and spaces

    I have some simple code below but my results are not what i would expect.    i tried using separated by spaces but then it put a space between my 1st field and the comma
    CONCATENATE TRAN_STRUCTURE-NACHN ','  '  ' TRAN_STRUCTURE-VORNA ' '
    TRAN_STRUCTURE-MIDNM
    INTO RESULT.
    I want to see this.
    Allen, Joe M
    but i am getting this
    Allen,JoeM

    Hi Immich,
    <b>Allen, Joe M</b>
    1. For this we have to <b>write two concatenate</b> statements.
    2. like this.
    REPORT ABC.
    DATA : F1(15) TYPE C.
    DATA : F2(15) TYPE C.
    DATA : F3(15) TYPE C.
    DATA : STR(25) TYPE C.
    F1 = 'Allen'.
    F2 = 'Joe'.
    F3 = 'M'.
    CONCATENATE F1 ',' INTO STR.
    CONCATENATE STR F2 F3 INTO STR
    SEPARATED BY SPACE.
    WRITE STR.
    regards,
    amit m.

  • Multiple selection list and passing that value to oracle reports

    Hi
    I need to create a multiple selection list and then based on use selection, I need to pass that value to oracle reports. Can any one help with steps on how I can do this. Thanks

    Hi
    Concatenate the multiple values into a string separated by comma and then pass that string to report as a parameter.
    In report query, you have to use the lexical parameter using ' & '
    regards
    SD

  • Background and Spaces

    I keep changing my background (wallpaper) but every time I move to a different space it resets the background to the default. I've tried everything I can think of but can't fix it.

    this would indicate that your dock restarts whenever you change spaces. delete the file homedirectory/library/preferences/com.apple.dock.plist and log out/in. your dock, spaces and exposé will be reset to the defaults. set up spaces again and see if this stops happening.

  • How to retain carriage return and spaces in a report..

    Hi everyone,
    I have a TEXT AREA where users enter comments in that like
    First record
    Hi           Carriage returns          spaces
    Second  record
    Hi
    carriage returns
    spaces
    Third record
    Hi
         carriage returns
                                 spaces
    Is it possible to retain the carriage returns and spaces when i am displaying the records in a report.
    For carriage returns i replaced  chr(10) with '
    (without the single quotes). I works fine. But how i can i retain the spacesplease give me some suggestions
    Thanks
    phani

    Hi dimitri,
    Thanks for the reply
    For carriage returns i am doing like this replace(column_name,chr(10),'<"br">') (Ignore the double quotes)
    For spaces is there any ASCII code like chr(10) for carriage returns..
    I mean how to identify Number of spaces in database..
    Thanks
    phani
    Message was edited by:
    phani marella

  • Comma seperated checkboxes - add comma AND a space

    Comma seperated checkboxes has worked great for me, except for one thing. I want the values to be seperated by a comma AND a space, like so:
    This is what I get now.
    location1,location2,location3
    What I'd like to get is:
    location1, location2, location3
    Is what I want possible? If so what's the easiest way to change it?
    -Kevin

    I'm running into another problem. Your solution for displaying the locations with spaces works great when querying a single record.
    However, when I use in a repeat region, all records show the location of the first record. This problem is only present in a repeat region.
    For the repeat region, I choose a recordset called feeds to repeat. Repeating elements inside are displayed as .
    Now, $locations is in that recordet but $locations_with_spaces is not.
    Is there a way to get $locations_with_spaces to repeat properly?
    Thanks
    -Kevin

  • Formatting a number element with commas and decimals.

    I have a dataset with numbers.  I already set the column type to "number".
    I want to format the number data with commas and decimals.  I found a way to add decimals, but I'm still very confused how to do commas and to combine that with the decimal formatting.
    Also, how do I apply that to a repeat region in my spry region?
    Any help would be appreciated.  Thank you very much.

    I found this on one of the forum questions.
    Excel dont preserve the trailing zeros.
    try opening the xcel and type 5.0000 and tab out, it wont preserve the trailing zeros after decimal.
    try finding out how to disable the option in excel. if you do that, you will see what you send out from the report.
    But you can try to convert the number into a text by trying to append a space at the beginning. See if that would work.
    Thanks
    Swarna

  • Replacing comma with space

    Hi,
    Note : I am using SAP 4.6
    Task      : Replace Comma with space
    Problem : Not able to replace comma with space
    I have task where I have to write result file to application server, when I am writing string to application server it is separating by comma, for example if you take below statement it is dividing by space that means in first column PO and then ITEM etcu2026.
    MOVE  'PO ITEM is not there in table EKPO' TO W_RECORD_OUT-ERROR_MSG.
    so to resolve this situation I have used below code for now, I know I can use
    REPLACE ... ALL ENTRIES but this statement is not working in SAP 4.6
    REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
      REPLACE ',' WITH ' ' INTO W_RECORD_OUT-ERROR_MSG.
      CONDENSE W_RECORD_OUT-ERROR_MSG.
    appreciate if somebody can help me.
    Thanks
    sarath

    Hi,
    Please check the below code.
    REPORT  YSAT_TEST.
    Data: Var1(40) type c value 'Test1,Test2,Test3,Test4'.
    break-point.
    REPLACE ',' WITH space INTO Var1.                   " It will replace only first occurrence
    replace all occurrences of ',' in var1 with '   '.
    CONDENSE Var1 no-gaps.
    write: var1.

  • BACKGROUND Report option

    We're running 10gAS. We use web.show_document to run our reports from Forms. We have some reports that need to be ran asynchronously. We set the background=yes parameter in the URL when we run the report, but we get an error message stating that the "background" parameter has been deprecated.
    The documentation for 9iAS states that the "BACKGROUND" command-line parameter has been deprecated, but it doesn't mention the new preferred method of running reports asynchronously. Also, the Reports Statement of Direction document for 10g lists "yes" and "no" as valid values for the "background" parameter using rwservlet.
    So is "background" deprecated or not? If so, what is the new method of running reports asynchronously?
    Thanks.

    Hi,
    The BACKGROUND command line keyword is NOT deprecated. It is fully supported. Here is what Publishing Reports says about the keyword:
    Description BACKGROUND specifies whether a report on the server should be run synchronously (NO) or asynchronously (YES).
    Syntax BACKGROUND=YES
    Note: The BACKGROUND system parameter is deprecated in Oracle Reports. BACKGROUND is used only on the command line.
    So only the system parameter is deprecated. What this is means is: if you open the report in the Report Builder, and in the Object Navigator, click Data model > System parameters, you will see the BACKGROUND parameter.
    If you specify the parameter=yes here, it is ignored (deprecated since Oracle Reports9i).
    It is still very much supported on the "command line" as written in Publishing Reports.
    Similarly, the Reports Statement of Direction document says that the BACKGROUND keyword can be used on the command line with rwservlet, rwcgi and rwclient. It is deprecated only for rwrun.
    Here is the reason for deprecating it: in 6i, if you specify BACKGROUND=yes with rwrun, it would not launch a UI, and thus run in the background. However, since 9i, there is no UI associated with rwrun, so there is no use for this parameter.
    Navneet.

  • How to add Comma and Tabs in Calc Script Header

    Hi,
    I need to add in the begging of the report script the following lines:
    PNL
    OPENB
    1/31/2020
    12
    R,N,Y
    5     6     7     2     3     1     I     C     8     9     A     D     V     V     V     V     V     V     V     V     V     V     V     V
    The last line is tab delimited.
    The problem is that the TEXT formula ignores commas and tab, so I can't create the last 2 lines.
    Please help,
    Rami

    Hi,
    R,N,Y
    5     6     7     2     3     1     I     C     8     9     A     D     V     V     V     V     V     V     V     V     V     V     V     V
    The last line is tab delimited.Whether these are the members? Please can you let us know what you are trying.
    Thanks

  • Row and column heading in cross tab report

    Hi Gurus,
    Is it possible to leave column headings and row headings in a crosstab report blank?
    Pooja

    Hi,
    You could either suppress the Column Headings by unchecking
    Tools-->Options-->Column Heading or Making the background color and the font color of the cell to be same ( gray ), thereby making it invisible, though it is actually there.

  • Report and user statistics display in Obiee report

    I have a requirement in OBIEE like i need to generate a report and that report has to display some valuable information dynamically.
    The report consist following column info...
    Report Name|Report Folder|Report Path|Description|Description ID|Owner|Subject Area
    Header 1
    Header 2
    Header 3
    Header 4
    Header 5
    Header 6
    Header 7
    Header 8
    Header 9
    Report Name
    Report Folder
    Report Path
    Table
    user
    Unused ColumnIDs
    Column Created
    Report Creator (user)
    Report last modified
    like etc..........
    SO, the above said fields has to be update and provide dynamic data in the report. (Also those  field info is not available in Usage tracking table so we need get those information from Catalog manager also...........)
    For this I have one alternate idea like to get the solution by planning to get this solution by CSV file.If you would provide any solution like CSV get updated dynamically from Catalog manager it would be a great thing to me....Your help is highly appreciated.
    How to implement this requirement ............could you provide a right path to achieve this solution.
    I hope yours alternative solution.

    Thanks for the reply Yannick.
    We have install/configure WebCenter analytics and activity graph.
    Wehave added Login Metrics in our Group Space and we are getting default login count for specific time frame but when we define a filter under User Property of any property like city, department name, phone title etc after refreshing data it is giving error like
    WCS#2011.03.31.12.47.31 : Irresolvable error(s) occurred. You may want to contact Administrator with the error reference.
    Please help how to solve this.

  • Special Characters and spaces in Tablenames and Column Names are allowed ?

    Hi
    I have created two tables in Oracle10g
    as follows
    SQL> create table test(columna number,columnb varchar2(20),primary key(columna));
    Table created.
    SQL> insert into test values(1,'test');
    1 row created.
    SQL> commit;
    COMMIT är utfört.
    SQL> create table "test quote"("#" number,abc number,primary key("#"));
    Table created.
    SQL> insert into "test quote" values(1,2);
    1 row created.
    SQL> commit;
    COMMIT är utfört.
    SQL> select * from "test quote";
    # ABC
    1 2
    SQL> select * from test;
    COLUMNA COLUMNB
    1 test
    Now I want to cache the tables and their data into TimesTen
    The cache group for table test which is not having any spaces and special characters in table name and column names is created perfectly.
    But when I create the cache group for table "test quote" which is having special characters and spaces it gives error :
    Command>create readonly cache group w2 from testuser.test(columna number,columnb varchar2(20),primary key(columna));
    Command>select * from test;
    <1,test>
    1 row found.
    Command>create readonly cache group w3 from testuser."test quote"("#" number,abc number,primary key("#"));
    5140: Could not find TESTUSER.TEST QUOTE in Oracle. May not have privileges.
    Command Failed.
    Now there is contradiction that why cache group for table test is created successfully and why it is not being created for table "test quote".
    What I think is if special characters and spaces in column names and table names are possible in Oracle then it sould be possible in TimesTen.
    Any possible solution.
    Looking forward for your reply.
    Please help I am stuck badly.
    /Ahmad

    Hi
    Problem Solved ....... Remeber only Capital letters work with special characters ......
    /Ahmad

  • PI error meessage background report

    Hi all,
    I have a requirement that i need to fetch all the error message failures from PI monitor transaction(SXMB_MONI) and this will be a background and send the details for the configured EMAIL address .I need few information on this
    1)where this error message will be stored , is there any data base table in which this details are stored .I need to retrive this messages for my report.
    2)The program must send mail to configurable Email IDs.how can i configure that e-mail is send to the paticular E-mail ID.
    3)This is a background program must able to take parameter for filtering the error message based on the service names.
    4) How can i mkae the program to extract the error details for a configurable durations.
    This is the requirement , please kindly help me out in this . I dont have any functional consultant to help out this .
    Regards,
    Sriram

    Hello Sriram
    Do you need to configure alerting or do you have a requirement for functionality outside that already provided by SAP?
    See the link below for details on how to configure alerting (also there are many SDN blogs and threads about this, have you searched for these before opening this thread?).
    Configuring Message-Based Alerting 
    http://help.sap.com/saphelp_nw70/helpdata/en/5b/5d1741b393f26fe10000000a1550b0/content.htm
    Regards
    Mark

Maybe you are looking for

  • Diff b/w Nexus 5548P and 5548UP

    What is the Diff b/w Nexus 5548P and 5548UP regards.

  • Issue with running Java applets on Safari 6.1

    I conducted a system capability check on the course site I access (Defense Acquisition University) and one of the results indicated that I do not have the capability to run applets (requirements to run all courses).  I verified my setings and I do ha

  • How to clean ipod screen

    Hi guys. I recently bought a used iPod on the internet and it works great, but my only concern are germs. It doesn't have any visible grit but I want to be sure because I don't know where it's been. Any suggestions that don't require buying an expens

  • Universal Dock + Mee 3G

    Hey Everyone... I've read a bunch of threads saying the universal dock doesn't charge the 3G, but others that say it does, but gives you that "not supported" jargon. Anyway, im about to order a universal dock from amazon but if you guys know the diff

  • Pls. let me know how to get rid off this ribbon?

    Hello I am developing an VISITOR Adobe Interactive Form, i have Designer 8.1 and Reader 9.0 in my Windows 7 Laptop. When i checked the menu EDIT-->form properties --> Compatability, its Adobe XML form File (XDP) When i opened this VISITOR interactive