Decimal Values getting truncated

Hi,
In my query results, the decimal values are getting truncated.  e.g.
0.30 + 0.44 = 0.70  (expected result = 0.74)
0.30 + 0.45 = 0.80  (expected result = 0.75)
0.40 + 0.48 = 0.80  (expected result = 0.78)
What am I supposed to do to make sure that the second decimal point is not truncted.
Thanks,

Hi,
I do not have any conditions.  Except that I am just using the function NODIM to get the decimal values in my report.
I did tried using the decimal places in the Key Figure properties.
Are there any other possibilities to solve this?
Thanks,

Similar Messages

  • Application server file values getting truncated

    Hi,
    I'm sending a file to Application server with minimun 1800 characters in a singlw row. The file is getting uploaded into the server but with only 255 chars in the same row. All others are getting truncated.
    Can anyone please suggest on this?
    Thanks
    Itishree.

    Hi,
    You can download your file from application server using CG3Y.
    And upload your file to application server using CG3Z.
    I think just a typo mistake by the one who answered before me.
    Regards,
    Bharati Singh

  • Value getting truncated in display while using F4IF_INT_TABLE_VALUE_REQUEST

    Hi.,
        I am using FM F4IF_INT_TABLE_VALUE_REQUEST to display F4 for a Particular field .
    But while displaying a field(ISBN) with 13 characters is displayed only with value of 8 characters only. kindly advice.
    IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'ESTNO'.
      APPEND IT_FT.
    IT_FT-TABNAME = 'ZC001_ESTMAST_HD'.
    IT_FT-FIELDNAME = 'VERSN'.
    APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'VERSN'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'SIRNO'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'TITNR'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'KUNNR'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'NAME1'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'JBDVN'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'MAKTX'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'TPWRK'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'ISBNO'.
      APPEND IT_FT.
    IT_FT-TABNAME = 'ZC002_ESTNOF4'.
    IT_FT-FIELDNAME = 'ORDDAT'.
    APPEND IT_FT.
      IT_DM-FLDNAME = 'ESTNO'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-ESTNO'.
      APPEND IT_DM.
      IT_DM-FLDNAME = 'VERSN'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-VERSN'.
      APPEND IT_DM.
      IT_DM-FLDNAME = 'SIRNO'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-SIRNO'.
      APPEND IT_DM.
    IT_DM-FLDNAME = 'SERIS'.
    IT_DM-DYFLDNAME = 'ZV001_TITLMAS_HD'.
    APPEND IT_DM.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = 'IT_VALUE'
       DDIC_STRUCTURE         = 'ZC002_ESTNOF4'
        RETFIELD               = 'ESTNO'
      PVALKEY                = ' '
        DYNPPROG               = SY-REPID
        DYNPNR                 = SY-DYNNR
        DYNPROFIELD            = 'IT_ESTMAS-ESTNO'
        VALUE_ORG   = 'S'
       STEPL                  = 0
        TABLES
           VALUE_TAB              = IT_MESTNO_F4
           FIELD_TAB              = IT_FT
          RETURN_TAB             = IT_RT
           DYNPFLD_MAPPING        = IT_DM
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards.,
    S.Sivakumar

    Hi.,
        i think i confused u all . i will paste the entire code here .
    DATA : BEGIN OF IT_MESTNO_F4 OCCURS 0,
           MANDT LIKE ZC001_ESTMAST_HD-MANDT,
            ESTNO LIKE ZC001_ESTMAST_HD-ESTNO,
            VERSN LIKE ZC001_ESTMAST_HD-VERSN,
            SIRNO LIKE ZC001_ESTMAST_HD-SIRNO,
            TITNR LIKE ZV001_TITLMAS_HD-TITNR,
            TPWRK LIKE ZV001_TITLMAS_HD-TPWRK,
            KUNNR LIKE ZC001_ESTMAST_HD-KUNNR,
            NAME1 LIKE KNA1-NAME1,
            JBDVN LIKE ZC001_ESTMAST_HD-JBDVN,
            MAKTX LIKE ZV001_TITLMAS_HD-MAKTX,
            ISBNO TYPE ZV001_TITLMAS_HD-ISBNO,
           END OF IT_MESTNO_F4.
      CLEAR: IT_MESTNO_F4[], IT_MESTNO_F4,
               IT_FT[], IT_FT,
               IT_DM[], IT_DM,
               IT_RT[], IT_RT.
    *ORDDAT
    SELECT DISTINCT  ESTNO VERSN SIRNO FROM ZC001_BUDMAS_MAT INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4.
    SELECT ESTNO VERSN SIRNO FROM ZC001_ESTMAST_HD INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4  WHERE ZSAVE EQ 'X'..
      SELECT  DISTINCT A~ESTNO A~VERSN A~SIRNO A~TITNR A~TPWRK A~KUNNR D~NAME1 JBDVN   B~MAKTX   ISBNO
       FROM ZC001_ESTMAST_HD AS A INNER JOIN  ZV001_TITLMAS_HD AS B
      ON A~TITNR = B~TITNR
        INNER JOIN  ZC001_BUDMAS_MAT AS C
      ON A~ESTNO = C~ESTNO AND A~VERSN = C~VERSN AND A~SIRNO = C~SIRNO
        INNER JOIN  KNA1 AS D
      ON A~KUNNR = D~KUNNR
       INTO CORRESPONDING FIELDS OF TABLE IT_MESTNO_F4
       WHERE ZSAVE EQ SPACE AND ZLOCK EQ SPACE.
      SORT IT_MESTNO_F4 BY ESTNO DESCENDING.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'ESTNO'.
      APPEND IT_FT.
    IT_FT-TABNAME = 'ZC001_ESTMAST_HD'.
    IT_FT-FIELDNAME = 'VERSN'.
    APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'VERSN'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'SIRNO'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'TITNR'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'KUNNR'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'NAME1'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'JBDVN'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'MAKTX'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'TPWRK'.
      APPEND IT_FT.
      IT_FT-TABNAME = 'ZC002_ESTNOF4'.
      IT_FT-FIELDNAME = 'ISBNO'.
      APPEND IT_FT.
    IT_FT-TABNAME = 'ZC002_ESTNOF4'.
    IT_FT-FIELDNAME = 'ORDDAT'.
    APPEND IT_FT.
      IT_DM-FLDNAME = 'ESTNO'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-ESTNO'.
      APPEND IT_DM.
      IT_DM-FLDNAME = 'VERSN'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-VERSN'.
      APPEND IT_DM.
      IT_DM-FLDNAME = 'SIRNO'.
      IT_DM-DYFLDNAME = 'IT_ESTMAS-SIRNO'.
      APPEND IT_DM.
    IT_DM-FLDNAME = 'SERIS'.
    IT_DM-DYFLDNAME = 'ZV001_TITLMAS_HD'.
    APPEND IT_DM.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = 'IT_VALUE'
       DDIC_STRUCTURE         = 'ZC002_ESTNOF4'
        RETFIELD               = 'ESTNO'
      PVALKEY                = ' '
        DYNPPROG               = SY-REPID
        DYNPNR                 = SY-DYNNR
        DYNPROFIELD            = 'IT_ESTMAS-ESTNO'
        VALUE_ORG   = 'S'
       STEPL                  = 0
        TABLES
           VALUE_TAB              = IT_MESTNO_F4
           FIELD_TAB              = IT_FT
          RETURN_TAB             = IT_RT
           DYNPFLD_MAPPING        = IT_DM
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards.,
    S.Sivakumar

  • Decimal values truncated from SQL Call through Oracle ODBC

    Hi
    I'm using Oracle ODBC driver v 9.02.00.06; when I make a SQL call to query data from the Oracle ERP (PO_Lines_All), my decimal values are truncated. Instead of getting 112.25, I only get 112
    Can someone help me fix this problem?
    thanks

    The problem is commonly related to a language difference between Oracle and SQL Server.
    Try setting HS_LANGUAGE=american_america.we8mswin1252 in the intialisatuion file of HSODBC.
    Then start a new SQL*Plis session and give it a try.
    If you still have problems, set it to:
    HS_LANGUAGE=german_germany.we8mswin1252 in the

  • ALV: issue in truncating decimal values (rounding up)

    Hi,
    I have been receiving a problem truncating decimal values in alv environment using this abap code.
    WRITE gwa_komv-kwert TO gv_out_tax CURRENCY rte0143sf-currency
            DECIMALS l_decimals LEFT-JUSTIFIED.
    where l_decimals = 0.
    More exactly the value is rounded up but this is not my expectation.
    Any idea?
    Thanks.
        Giovanni

    Standard behaviour with DECIMALS 0: rounding up or own.
    And when you use the addition DECIMALS, then the CURRENCY addition is ignored as well.

  • How to get the leading zeros for decimal values?

    Hi,
      How i wil get the leading zeros for decimal values.For CONVERSION_EXIT_ALPHA_INPUT it is not working.Now iam using overlay condition for getting leading zeros.But iam getting the value like 00013.500.But as per my requirement i want to display this value 0000013.5.
    my code is
                    overlay w_MetLife_detail-rdempsalary with '000000000'
                    data :rdempsalary     type char9
    Please help me on this.
    Regards,
    Sujan

    Hi
    For more info,
    The function of the statement UNPACK is based on the fact, that the BCD display of a decimal place corresponds to the second half-byte of code of a digit in the most character representations. This conversion is commonly called "unpacking".
    The statement PACK to pack is obsolete and can be replaced by MOVE.
    If destination is specified as untyped field symbol or as untyped formal parameter and is not flat and not character-type during execution of the statement, then an untreatable exception occurs in Unicode programs. In non-Unicode programs, an exception occurs only with deep types, whereas flat types are treated as character-type types.
    Example
    After the assignments,char1 and char2 contain the values "123.456" and "0000123456".
    DATA: pack  TYPE p LENGTH 8 DECIMALS 3 VALUE '123.456',
          char1 TYPE c LENGTH 10,
          char2 TYPE c LENGTH 10.
    MOVE   pack TO char1.
    UNPACK pack TO char2.
    Regards

  • Getting wrong values  for decimal value in Bex report

    Hi,
         I am getting some problem in Bexreport decimal values.
       In ODS i am able to look the values for this key figure
      (Total PO Release Val)= 140.692,00,the same value in Bex report looks like this $ 140,692.00.
         Here one calculation is going with these above values
       % Used = 'Total PO Release Val' / 'Target Value' * 100
        as per ODS value calculation  it is correct = 140.692/1000 * 100 =14.692
       as per Bex  it is coming like this = 140,692.00/1000 *100 = 142.692.
        in Bex report Percentage valus is not considering value is taking as 140,692.00 rather than 140.692.I mean to say decemal values are ignoring while calculation in Bexreport.can you any please advice me how to comeout of this problem.Appreciate your help.
    Regards
    Ramesh

    <i> "(Total PO Release Val)= 140.692,00,the same value in Bex report looks like this $ 140,692.00."
    </i>
    How do you check the ODS value? The amount will only have two decimal places after it, so you can't have a value like 140.692,00. It seems to be an issue of user's decimal notation (where decimal is represented by comma, and thousand seperator by '.'). Go to user profile, change this setting (in default tab) to correct one (ie decimal being represented by '.') and login again and check it. The value that you see in ODS is 'one hundred forty thousand six hundred ninety two, the same that you get in Bex, only the representation is different).

  • Truncating Decimal Values

    Hi! Folks,
    I would like to ask for you kind assistance in figuring out my assignment, how to truncate a decimal value depending on the number of decimal places the user has specified.
    Your immediate assistance will be much appreciated.
    Cheers!

    // utility class
    public class Fraction{
       public static double digits(double d, int places){
          return (long)(d*Math.pow(10,places)+0.5)/Math.pow(10,places);
       public static double digits(double d, long places){
          return (long)(d*Math.pow(10,places)+0.5)/Math.pow(10,places);
       public static float digits(float d, int places){
          return (int)(d*Math.pow(10,places)+0.5)/(float)Math.pow(10,places);
       public static float digits(float d, long places){
          return (int)(d*Math.pow(10,places)+0.5)/(float)Math.pow(10,places);
    // testing class
    public class Dec {
        public static void main(String s[]) {
            int decimalPlaces = 3;     
            double d = 2343.12894132134;
            d = Fraction.digits(d, decimalPlaces);
            System.out.println(d);
    }

  • How to load decimal values into a file using bcp in SQL Server 2000?

    Hi everyone,
    I'm trying to load data from a database table to a text file using bcp on SQL Server 2000. When I'm loading the decimal values, the values before the decimal are not being loaded into the file. How could I load the values before decimals?
    Here are the DDLs and DMLs of what I'm trying to run:
    CREATE TABLE [dbo].[Product_Sales](
    [Year_of_Sale] [smallint] NOT NULL,
    [Product_Type] [varchar](25) NOT NULL,
    [Product_Group] [varchar](25) NOT NULL,
    [Category_Type] [varchar](25) NOT NULL,
    [Category_Group] [varchar](10) NOT NULL,
    [Product_Count] [bigint] NOT NULL,
    [Product_Amount] [decimal](19, 2) NOT NULL,
    [Category_Count] [bigint] NOT NULL,
    [Category_Amount] [decimal](19, 2) NOT NULL,
    CONSTRAINT [PK_Product_Sales] PRIMARY KEY CLUSTERED
    [Year_of_Sale] ASC,
    [Product_Type] ASC,
    [Product_Group] ASC,
    [Category_Type] ASC,
    [Category_Group] ASC
    ) ON [PRIMARY]
    ) ON [PRIMARY]
    INSERT INTO [Yearly_Sales].[dbo].[Product_Sales]
    VALUES(2010, 'Online', 'Web', 'Cameras', 'Electronics', 547, 0.00, 0, 0.00)
    EXEC [master].[dbo].[xp_cmdshell] 'bcp "SELECT * FROM [Yearly_Sales].[dbo].[Product_Sales]" queryout D:\Yearly_Sales\Product_Sales.dat -c -T -S'
    And the output I see in the file is:
    2010 Online Web Cameras Electronics 547 .00 0 .00
    The values before decimals are being truncated.
    Thanks,
    Bangaaram
    Known is a DROP, Unknown is an OCEAN.

    You can modify the decimal column(s) in the table to varchar type before export. But it does not look good.
    alter table [dbo].[Product_Sales]
    Alter column [Product_Amount] varchar(20)
    alter table [dbo].[Product_Sales]
    Alter column [Category_Amount] varchar(20)
    Does that make any sense?
    Known is a DROP, Unknown is an OCEAN.
    Basically you modify the decimal column to a varchar type before you run the bcp command for export. You can modify your source table or you can modify them on the fly. It is just a workaround.
    Modifying the source wouldn't be a good idea. Never do that if you can't get your desired output.
    Known is a DROP, Unknown is an OCEAN.

  • Data getting truncated while exporting report to a text file in crystal 10?

    Hi All,
    I am using crystal 10.When exporting report to a text file ,a dialog prompts asking for Character perinch with a default value 9.If I change the value from 9 to 16 i am getting the correct data(that means character per inch value is 16) and it update "CharPerInch" value in registry under following location to 16.
    HKEY_CURRENT_USER\Software\Crystal Decisions\10.0\Crystal Reports\Export\Text
    The dialog asked for character per inch also has option to select not to prompt again and i also selected that in first go.
    When i export the report again in text format it didn't prompt for number of character per inch but the data gets truncated.
    What i believe is even though it updates entry in registry and reads, it is not using the same value for export. It never consider the value that is in registry, if the check box is not selected then it is using the value entered in the dialog and if the check box is selected then in the next run it uses the default value as 9.
    Can anyone suggest me how to override this problem ? Is there any other setting place in registry where i can enter the number of character per inch.I don't want to crystal to prompt always for character per inch.

    Hi Venkateswaran,
    The other option to avoid truncation of the data could be
    Right click the text filed
    Click on Format Text to open the Format Editor
    On Common tab check the text box for Can Grow.
    This will prevent the data from truncating in preview as well as while exporting to text.
    Otherwise you will have to set the characters per inch to 16 each time. I donu2019t see changing the registry value causing any difference here.
    Regards,
    Aditya Joshi

  • How do I convert an alpha character from a text string to its decimal value

    I am trying to find out the actual decimal value of a character in a string. So far the code below is as far as I got. I am able to get what I guess is a byte value.
    This is for a school assignment:
    The idea behind what I am trying to do is to design a hash function to store dictionary words into a bucket array hash table, without using the existing Hashtable.class
    so far this is what I can come up with to get some kind of value for each character in the string, however, what I am trying to get is the decimal value for each character.
    public static void main(String args[]){
         String word = "abcdefghijklmnopqrstuvwxyz";
         for (int i=0 ; i < word.length(); i++){
         System.out.print((word.substring(i,i+1)));
         System.out.print("\t : "+((word.substring(i,i+1))).getBytes());
    Thankyou for any replies.

    I'm not sure I completly understand your goal- what you mean by "decimal value", but, if you simply want to find the byte value of each character in a String, you would probably be better off using getBytes() in a way like this,
    byte [] bytes = string.getBytes();
    Then, if you need to map that to a charcter, you could use a for loop like
    for (int x = 0; x < bytes.length; x++) {
    table.put((char)bytes[x], bytes[x]);
    which assummes this bucket class of yours allows primitive data types like so (in Hashtable or HashMap, you would have to use a wrapper Object). I guess, my point reduces to, don't use substring and string search methods (like indexOf()), unless you have to because they are more expensive then just maping the array of bytes and chars, which seems to be what you are interested in doing.

  • Rounding off to a variable value to 4 decimal values in sap script ouput

    Hi All,
    I have a value getting displayed in sap script output as 235.6789 i want to Round off this variable value to 4 decimal values!
    What is the formatting option need to be used & how!
    Thanks in advance.
    Thanks,
    Deep.

    Hi,
    1.In layout just call that variable, where you need like:
    &variable(.4)&.
    Just see these:
    &symbol(Z)&  Omit Leading Zeros 
    &symbol(S)&  Omit Leading Sign 
    &symbol(<)&  Display Leading Sign to the Left 
    &symbol(>)&  Display Leading Sign to the Right 
    &symbol(C)&  Compress Spaces 
    &symbol(.N)&  Display upto N decimal places 
    &symbol(T)&  Omit thousands separator 
    &symbol(R)&  Right justified 
    &symbol(I)&  Suppress output of the initial value
    Regards,
    If helpful reward with points(Don't forget).

  • ALV Header getting truncated in excel

    I am using the GRid Layout. but when i am downloading the output in the Excel sheet, the headers are getting truncated.
    I have tried increasing the width in the FIELDCAT and also removing the coulmn-optimze option in the layout also. but still after trying the headers are getitng truncated.
    Any pointers how can i download without the headers getting truncated.
    Thanks

    Refer the code snippet:
    Follow this way:
    CONSTANTS :  c_delim TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.
    data :it_excel_dwnld TYPE STANDARD TABLE OF t_zzidwnld_data     ,
           wa_excel_dwnld TYPE t_zzidwnld_data .                      .
       CONCATENATE   'Physical Inventory Document'
                    'Item '
                    'Material '
                    'Material Description'
                    'Material Group'                
                    'Plant'
                    'Sloc'
                    'Doc Date'
                    'Book Qty'
                    'Counted Qty'
                    'Value of Phy Inv Count'
                    'Standard Price'
                    'Difference Qty'
                    'ABS Qty'                        
                    'BUn'
    INTO wa_excel_dwnld-line
                                   SEPARATED BY c_delim.
      APPEND wa_excel_dwnld TO it_excel_dwnld.
      CLEAR: wa_excel_dwnld.
    LOOP AT it_output INTO wa_output.
    CONCATENATE   wa_output-iblnr
                      wa_output-zeili
                      wa_output-matnr
                      wa_output-maktx
                      wa_output-matkl       
                      wa_output-werks
                      wa_output-lgort
                      wa_output-bldat
                      v_buchm
                      v_menge
                      v_wrtzl
                      v_stprs
                      v_difqy
                      v_absqy              
      INTO wa_excel_dwnld-line
                           SEPARATED BY c_delim.
        APPEND wa_excel_dwnld TO it_excel_dwnld.
      ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_flname
          filetype                = 'ASC'
          write_field_separator   = '#'
        TABLES
          data_tab                = it_excel_dwnld

  • Problem in download to application server- file column is getting truncated

    We have a program for which there are 2 options a list output or file to be placed on the application server. The TXT file is of length 525 characters.
    My problem is while the list output is generated the whole list is getting outputted, but when we take a output on the application server last 10 columns are getting truncated.
    Can somebody give a help on this.
    Thanks in advance.
    Jilly

    Use the function module
    ARCHIVFILE_SERVER_TO_CLIENT
    Pass the values: as download file and destination in the respective fields.
    File to be downloaded in :(Pass the exact file name)
    PATH :                          
    SDEC01\SAPMNT\INT\HR\OUT\FMLA-20080205-0728
    and
    Destination to download the file in:
    TARGETPATH                      C:\DOCUMENTS AND SETTINGS\JILFEM\MY DOCUMENTS\FMLA-20080205-0728
    Regards,
    Jilly

  • Convert non-ASCII character to decimal value

    Hi all,
    I have the following problem:
    When reading a String containing the full spectrum of UTF-8 characters from a BufferedReader:
    How can I get the decimal value of the String's characters outside the ASCII range?
    When I try to do a MyBufferedReader.read(), I get the int value 65533 for these characters, instead of their real value in the UTF-8 set.
    Can anyone help?
    Thanks!
    Dre

    That's the character you get when you try to decode a character with no valid decoding. Of course there aren't any such characters for UTF-8. Therefore whatever you did, don't do that. More specifically: you've already got a String, don't do anything which involves converting it to bytes. That's completely unnecessary.
    Or perhaps the problem is the way you create the String in the first place. Who knows?

Maybe you are looking for