Download to excel - special signs problem

Hello,
I use the method PROCESS_XLS_DOWNLOAD to display the data of a tableview-control in
Excel. I use the same code in 2 different systems. In the first systems it works but if
I run the application from the other system, special signs like "ü", "ö" etc. are not displayed correctly.
Can you help me?
Best regards
Alberto

The problem is occuring becuase in other system the fonts will not be installed for this type of characters. so pleae check the fonts and try again..it should work..
Reward points if useful...

Similar Messages

  • ALV Download to Excel Column Colors Problem

    Hi Experts,
    I've encountered a problem in downloading records from ALV display to excel file.
    The file is downloaded SUCESSFULLY however. When I opened the downloaded file, some columns were filled up with color(yellow) and other fields are not.
    Do anyone have an idea why?

    I have 21 Columns columns. The first 16 columns are filled with yellow colors...

  • Excel - pound sign problem in HyperLink

    I understand excel doesn't normally support pound sign within Hyperlinks. However, it is possible to bypass somewhat by using a function
    e.g. HYPERLINK("http://"&H9,H9) where H9 cell includes the rest of the hyperlink with the # within.
    However, still when i click on the resulting Hyperlink in the cell, IE opens with the URL containing "%20%-%20%", replacing the pound sign,
    and thus the destination isn't reached (a URL error is displayed in IE).
    To clarify, the pound sign is required in the URL, so that IE would goto the web page where a WorkItem of TFS is displayed in TFS web access.
    If there were a means to specify a URL for TFS web access to goto the work item web page without pound sign, then it would be great.
    Maybe there is a solution in excel how to make it so that the pound sign would appear correctly not just visibly in the cell as above, but rather when passed by excel to IE in the actual URL.
    Is there ?
    Thank u in advance.

    Hi,
    The pound sign (#) is not accepted in hyperlinks in Office documents. 
    The KB article below provided two workarounds for this issue, however they seem not apply to your situation:
    http://support.microsoft.com/kb/202261/en-us
    Since we are not familiar with TFS, I'd suggest you post your question to the TFS forum to confirm if there are any means to specify a URL for TFS web access to goto the work item web page without pound sign:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=tfsgeneral
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Mail Excel percent % sign problem Ipad

    I have a formulated report,when I send it to my mail account and open it from my computer, I can see the percentage rates.However when i check the same
    report on my mail box by using ipad the percentage rates doesnt appear. I would appreciate if you could tell me how to fix this problem.Thanks in advance.

    is there any apple affairs to help my problem ?

  • Hi friends, Problems with Special Characters in Table download to Excel.

    Hi friends,
    I am using Binary Cache method to download to excel. The problem is that there are certain fields in the back end R/3  that has special characters in it eg : & * £ # etc.
    As a result, the download is not working for these rows. Please can any of you tell me how to get rid of this. As an example let's say I wan to replace the "&" with "and".
    Please help.
    Thank You.
    Avik

    hi,
    Hope you find tgis of some help !!
    public void ReplaceMethod( )
        //@@begin ReplaceMethod()
        // get the string value of the cell (for you from the table cell, for eg, Pinki & Rakesh)
        test = wdContext.currentTestStringConversionElement().getInput();
        // calculate the total length of the String
        n=test.length ();
        if(n!=0)
                for(i=1;i<=n;i++)
    // catching each character from the String
                            c = test.charAt (i-1);
            // checking if any character within the String (eg, Pinki & Rakesh)  is “&”            
                               if (c=='&')
                                                                wdContext.currentTestStringConversionElement().setOutput(Character.toString(c));
                                                                no=i;
                                                                break;
                String val = Integer.toString(no);
                               //wdContext.currentTestStringConversionElement().setNo(val);
                // breaking the String and adding “ and” in place of “&”            
                            sub1=   test.substring(0,i-1);
                            sub2= "  and  ";
                            sub3= test.substring(i,n);
                      //Concatenating the String   
                            test1 = sub1sub2sub3;
                      //Printing the String  
                            wdContext.currentTestStringConversionElement().setOutput(test1);

  • Download to Excel not working in Transaction iview in Quality

    Dear All,
    I have a transaction iview in EP Quality Server which is transported from the development Server.This iview represents a transaction which displays some data (report output) and has an button for download to excel. The problem is that the ALV download functionality is working fine in the EP development Server's iview but I am not able to download from EP Quality though the output of the report is coming fine.
    Awaiting for the reply.
    Regards,
    Samir

    Hi,
    Try it once in laptop instead of desktop.
    May be the screen resolution or some thing is causing this,because I have encountered the issue previously.
    Create new iview in quality and try.Do you activate the transaction in SICF if it is custom one.
    Thanks and Regards,
    gopal.sattiraju

  • OBIEE-Values after decimal changing after download in excel format

    Hi,
    I have reports in OBIEE 11g,in which some columns have values in %.When i try the various export/download functions and noticed that the Excel download did not maintain the fomatting for pecentage values, they fields go out to about 12 decimal places or so.
    For eg..if a value in report is like 12.54
    After export in Excel it looks like 12.546780393345 .
    As i want the same format,pls suggest the solution.

    Hi,
    Refer below link:
    Downloading to Excel with three decimal precision
    format problem while download to excel
    Re: Formatting problem in download report into EXCEL Sheet
    BUG:
    •9107277 KEEP THE NUMBER PRECISION IN DATABASE WHEN “DOWNLOADING TO EXCEL”
    Thanks
    Deva

  • ALV download to excel problem

    Dear Gurus a problem in alv report downloading to excel:
    on executing the report works fine but when downloading to excel there last digit of bpvno is getting truncated.
    ex: actual bpvno:'4000010' but excel o/p shows as '400001'
    I have declared a field in final internal table as:
    data: bpvno as bseg-belnr,
    (in field catalog)
      fieldcatalog-fieldname   = 'BPVNO'.
      fieldcatalog-seltext_m   = 'BPV No.'.
      fieldcatalog-seltext_L   = 'BPV No.'.
      fieldcatalog-col_pos     = I1.
      fieldcatalog-emphasize   = 'X'.
      append fieldcatalog .
      clear  fieldcatalog.
      I1 = I1 + 1.
    but after specifying the  REF_TABLENAME & REF_FIELDNAME the downloaded excel o/p is correct.
    My questions is:
    1) i want to know what all are mandatory fields to be specified in fieldcatalog & is it compulsory to specify REF_TABLENAME & REF_FIELDNAME .
    if not complusory why the downloaded excel value is being truncated ???
    plz dont send materilas on alv and answer specific to the question....

    Hi,
    I wrote a small program, and for me it worked. My assumption about the seltext was wrong. And I also didn't use output lenght.
    Here is the code.
    REPORT  ZALVTOEXCEL                                                 .
    type-pools slis.
    data : gt_fcat type slis_t_fieldcat_alv.
    data fieldcatalog like line of gt_fcat.
    types : begin of t_belnr,
            bpvno like bseg-belnr.
    types end of   t_belnr.
    data gt_belnr type table of t_belnr.
    data gwa_belnr type t_belnr.
    gwa_belnr-bpvno = '4000010'.
    append gwa_belnr to gt_belnr.
    fieldcatalog-fieldname = 'BPVNO'.
    fieldcatalog-seltext_m = 'BPV No.'.
    fieldcatalog-seltext_L = 'BPV No.'.
    fieldcatalog-col_pos = 1.
    fieldcatalog-emphasize = 'X'.
    append fieldcatalog to gt_fcat.
    clear fieldcatalog.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       IT_FIELDCAT                        =  gt_fcat
        I_SAVE                            = 'A'
      TABLES
        t_outtab                          =  gt_belnr
    EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    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,
    Advait.

  • Problem in downloading to excel sheet

    hi,
    i have a file in the application server which needs to be downloaded into excel sheet and send it via attachment to outlook id's..
    file is getting downloaded into excel sheet ( Via custom function module) and the attachment is being sent to the mail box, but the problem is everything appears in the first column..how to set the delimiters in excel sheet, i mean each field should appear in a separate coloumn...
    format of the file in the application server
    data: begin of dt_string occurs 0,
          data(150) type c,
          end of dt_string.
    ex: dt_string+0(4) = 'name'.
        dt_string+4(5) =  'place'. .....
        append dt_string
         clear dt_string. 
    same way, each record is inserted into the dt_string and the table was transferred to the app server.
    thanks

    Hi Mahesh,
    Assuming that you are using 'GUI_DOWNLOAD'.
    Add the thing in bold <b>WRITE_FIELD_SEPARATOR</b>.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                    =
        filename                        =
    *   FILETYPE                        = 'ASC'
    *   APPEND                          = ' '
    <b>   WRITE_FIELD_SEPARATOR           = '#'    "Tab Delimiter between fields</b>
    Regards,
    AS

  • ALV - problem in downloading to excel - HIGH

    In our ALV report , we are facing problem with downloading to excel. It is intact downloading but in an irregular manner.
    LIST-> EXPORT-> Local File(excel)
    How to overcome this..

    try to load like this
    spreadsheet>press enter>pivot table-->microsoft excel

  • Download to excel problem

    Hi Friends,
    DATA lo_nd_hr_update TYPE REF TO if_wd_context_node.
      DATA lt_hr_update TYPE wd_this->elements_hr_update.
      DATA ls_hr_update TYPE wd_this->element_hr_update.
    navigate from <CONTEXT> to <HR_UPDATE> via lead selection
      lo_nd_hr_update = wd_context->get_child_node( name = wd_this->wdctx_hr_update ).
    @TODO handle non existant child
    IF lo_nd_hr_update IS INITIAL.
    ENDIF.
      lo_nd_hr_update->get_static_attributes_table( IMPORTING table = lt_hr_update ).
      DATA text   TYPE string.
      DATA xtext  TYPE xstring.
      LOOP AT lt_hr_update INTO ls_hr_update.
        CONCATENATE text ls_hr_update-mandt
                    ls_hr_update-pernr
                    ls_hr_update-effdt
                    ls_hr_update-upddt
                    ls_hr_update-ename
    ls_hr_update-aedat
    ls_hr_update-aenam
    ls_hr_update-sigempno
    ls_hr_update-signame
    ls_hr_update-emailid
    ls_hr_update-rejuvem
    ls_hr_update-rejuvey
    ls_hr_update-enrich1
    ls_hr_update-enrich2
    ls_hr_update-offdt
    ls_hr_update-status
    ls_hr_update-accdt
    ls_hr_update-tedempno
    ls_hr_update-tedname
    ls_hr_update-skill1
    ls_hr_update-skill2
    ls_hr_update-skill3
    ls_hr_update-skill4
    ls_hr_update-comments
    ls_hr_update-letter_rel
    ls_hr_update-reldt
    ls_hr_update-practice
    ls_hr_update-practext
    ls_hr_update-location
    ls_hr_update-email
    ls_hr_update-bill_date
                    cl_abap_char_utilities=>newline INTO text SEPARATED BY
                    cl_abap_char_utilities=>horizontal_tab.
      ENDLOOP.
      CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          text   = text
        IMPORTING
          buffer = xtext.
      wdr_task=>client_window->client->attach_file_to_response(
    **path to the word file
          i_filename = 'WDP.xls'
    String Variable
          i_content =  xtext
    File Type
          i_mime_type = 'EXCEL' ).
    The problem is i'm facing is i'm unable to download all the contents.
    Is there any restriction on string size.....whether i need to increase string size....
    Is it the problem with table size it has more than 25 fields & around 150 reocrds but every time when i use above code getting arnd 11 rows of data.
    Kindly reply.
    Thanks.

    Hi,
    I did as folllow changes in my code .....
      DATA text   TYPE string.
      DATA text_s TYPE string_table.
      DATA xtext  TYPE xstring.
      LOOP AT lt_hr_update INTO ls_hr_update.
        CONCATENATE text ls_hr_update-mandt
                    ls_hr_update-pernr
                    ls_hr_update-effdt
                    ls_hr_update-upddt
                    ls_hr_update-ename
    ls_hr_update-aedat
    ls_hr_update-aenam
    ls_hr_update-sigempno
    ls_hr_update-signame
    ls_hr_update-emailid
    ls_hr_update-rejuvem
    ls_hr_update-rejuvey
    ls_hr_update-enrich1
    ls_hr_update-enrich2
    ls_hr_update-offdt
    ls_hr_update-status
    ls_hr_update-accdt
    ls_hr_update-tedempno
    ls_hr_update-tedname
    ls_hr_update-skill1
    ls_hr_update-skill2
    ls_hr_update-skill3
    ls_hr_update-skill4
    ls_hr_update-comments
    ls_hr_update-letter_rel
    ls_hr_update-reldt
    ls_hr_update-practice
    ls_hr_update-practext
    ls_hr_update-location
    ls_hr_update-email
    ls_hr_update-bill_date
                    cl_abap_char_utilities=>newline INTO text SEPARATED BY
                    cl_abap_char_utilities=>horizontal_tab.
        APPEND text TO text_s.
        CLEAR text.
      ENDLOOP.
      CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          text   = text_s
        IMPORTING
          buffer = xtext.
      wdr_task=>client_window->client->attach_file_to_response(
    **path to the word file
          i_filename = 'WDP.xls'
    String Variable
          i_content =  xtext
    File Type
          i_mime_type = 'EXCEL' ).
    but it wil through type conflict error in fm 'SCMS_STRING_TO_XSTRING'
    pls suggest.......

  • Problem with CITY field when downloading to excel

    Hi Gurus,
    I have CITY field which is of 30 char length.Now Iam downloading the record having other fields also along with city field....Now my requirement is that in the Excel the city field should be right justified and the remaining characters should be space....How can we do that...
    Generally I know that when We download to excel the fields adjust according to the data it has rather then with thier field size in SAP.
    Regards,
    Rohan.

    Hi,
    In case of standard objects, it would be better if you can share the details like report name, the way you tried downloading(From menu, tool bar etc). Also search if there is any OSS notes for that program.
    Thanks,
    Vinod.

  • ALV download to excel inquiry

    Hi,
    I have a problem with regards to the ALV download to excel.  I have an ALV grid with 40 columns and i need to download the output to an excel file.  But after downloading the ALV output, i noticed that some columns are already on the next line. i need to have all columns to be in the same line.  Does anyone have an idea how to prevent columns to be printed in the next line?
    Thanks in advance!
    Kind regards,
    Merriam

    Looks like Note 855314 has a workaround ... my be more.
    Of course (yuk!), write you own download.
    Best!
    Jim

  • ALV grid toolbar - standard download to excel error

    Hi Experts,
    In my ALV grid report,  when i click on the standard ALV toolbar to download the output to excel file, the data gets downloaded fine execpt for one field called serial number. It is of size 18 chars.
    The last number on this field is getting truncated when it is downloaded to excel. Only 17 characters is being shown. There is no output lenght specification in the field catalog. The column width optimize property is also not set. Any ideas on what might be the problem?
    Cheers

    Hi,
    Check this link:
    Re: Digit missing in the alv export
    Hope this helps.
    Regards,
    Satish Kanteti

  • Download to excel from alv display

    Hi,
    How to download to excel from alv display.I am using object oriented abap for using alv.If i click export->spreadsheet i am getting fatal error and if i export->local file->spreadsheet i am getting only the column names and heading but no contents.Can anyone tell me how to overcome this problem.
    Regards,
    Sowmya.

    Hi Sowmya,
    Just put break point near FM reuse_alv_grid_display and check if internal table which is used to display output is popullated or not.
    Regards Sachin.

Maybe you are looking for