Report  Writer not displaying the column heading correctly.

Hi,
We have generated the report writer using the transaction GR55 by logging in EN language.
But when we executed the report, column headings are not displayed properly, instead it is displayed some thing like $ZR07##ZCO-OI# $.
Please help us in solving this issue.
Regards
Shibin

Hi,
Problem solved. We need to generate the report writer in original language only and it will reflect in other languages. Directly if we execute in other language it will display correct headings.
if we generate in other language it will display wrong heading even in original  language also.
So generate report writer in original language only
Regards
Shibino.

Similar Messages

  • How to not display the column header in the table view?

    I do not want to display the column header in the table view, how can I achieve it?

    If you're using JavaFX 8 you can use the following in an external style sheet:
    .table-view .column-header-background {
      -fx-pref-height : 0 ;
    If you're using JavaFX 2.2, the -fx-pref-height attribute is not available in css, so I think you have to resort to a lookup:
    final Region tableHeader = (Region)table.lookup(".column-header-background");
        tableHeader.setPrefHeight(0);
    As always, I feel obliged to point out that I don't really like lookups. Sometimes they seem to be the only way, though.

  • How to display the column header in two rows?

    Hi Experts,
    I am using ALV_LIST_DISPLAY i neeed to display the column header in two rows.. How can i do that?
    Ex: purchase order i  need to display "purchase" in one row and "order" in second row.
    Thanks in advance,
    Sarath.j

    REPORT zpwtest .
    TYPE-POOLS slis .
    DATA : layout TYPE slis_layout_alv .
    CONSTANTS : c_len TYPE i VALUE 20 .
    TYPES : BEGIN OF ty_t100          ,
              sprsl TYPE t100-sprsl   ,
              arbgb TYPE t100-arbgb   ,
              msgnr TYPE t100-msgnr   ,
              text  TYPE t100-text    ,
              fline TYPE t100-text    ,
            END OF ty_t100            .
    TYPES : BEGIN OF ty_wrd   ,
             text TYPE char20 ,
            END OF ty_wrd     .
    DATA : it_t100     TYPE TABLE OF ty_t100 ,
           it_sentence TYPE TABLE OF ty_wrd  ,
           wa_t100     TYPE ty_t100          ,
           wa_word     TYPE ty_wrd           ,
           v_repid     TYPE syst-repid       ,
           v_tabix     TYPE syst-tabix       .
    DATA : it_fld TYPE slis_t_fieldcat_alv ,
           it_evt TYPE slis_t_event        ,
           wa_fld TYPE slis_fieldcat_alv   ,
           wa_evt TYPE slis_alv_event      .
    INITIALIZATION .
      v_repid = sy-repid .
    START-OF-SELECTION .
    * Get data
      SELECT *
        INTO TABLE it_t100
        FROM t100
       WHERE sprsl = 'EN'
         AND arbgb = '00' .
      LOOP AT it_t100 INTO wa_t100 .
        v_tabix = sy-tabix .
        CLEAR : it_sentence .
        CALL FUNCTION 'RKD_WORD_WRAP'
             EXPORTING
                  textline  = wa_t100-text
                  outputlen = c_len
             TABLES
                  out_lines = it_sentence.
        IF NOT it_sentence IS INITIAL .
          READ TABLE it_sentence INTO wa_word INDEX 1 .
          wa_t100-fline = wa_word-text .
          MODIFY it_t100 FROM wa_t100 INDEX v_tabix .
        ENDIF.
      ENDLOOP.
    * Prepare fieldcatelog
      CLEAR wa_fld .
      wa_fld-fieldname = 'SPRSL' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'SPRSL' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'ARBGB' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'ARBGB' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'MSGNR' .
      wa_fld-ref_tabname = 'T100' .
      wa_fld-ref_fieldname = 'MSGNR' .
      APPEND wa_fld TO it_fld .
      CLEAR wa_fld .
      wa_fld-fieldname = 'FLINE' .
      wa_fld-inttype      = 'CHAR' .
      wa_fld-outputlen = 20 .
      wa_fld-intlen    = 20.
      wa_fld-seltext_l = 'Text' .
      wa_fld-ddictxt = 'L' .
      APPEND wa_fld TO it_fld .
    * Get event.. we will handle BOFORE and AFTER line output
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
           IMPORTING
                et_events = it_evt.
      READ TABLE it_evt INTO wa_evt
      WITH KEY name = slis_ev_after_line_output .
      wa_evt-form = slis_ev_after_line_output .
      MODIFY it_evt FROM wa_evt INDEX sy-tabix .
      READ TABLE it_evt INTO wa_evt
      WITH KEY name = slis_ev_top_of_page .
      wa_evt-form = slis_ev_top_of_page .
      MODIFY it_evt FROM wa_evt INDEX sy-tabix .
      layout-no_colhead = 'X' .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
                i_callback_program = v_repid
                it_fieldcat        = it_fld
                is_layout          = layout
                it_events          = it_evt
           TABLES
                t_outtab           = it_t100.
    *       FORM top_of_page                                              *
    FORM top_of_page .
        uline .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line1'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line2'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               11 'line3'     ,
               31 sy-vline    ,
               37 sy-vline    ,
               58 sy-vline    .
    ENDFORM.
    *       FORM AFTER_LINE_OUTPUT                                        *
    FORM after_line_output   USING rs_lineinfo TYPE slis_lineinfo .
      CLEAR : it_sentence ,
              wa_t100     .
      READ TABLE it_t100 INTO wa_t100 INDEX rs_lineinfo-tabindex .
      CHECK sy-subrc = 0 .
      CALL FUNCTION 'RKD_WORD_WRAP'
           EXPORTING
                textline  = wa_t100-text
                outputlen = c_len
           TABLES
                out_lines = it_sentence.
      DESCRIBE TABLE it_sentence LINES v_tabix .
      CHECK v_tabix > 1 .
      LOOP AT it_sentence INTO wa_word FROM 2 .
        WRITE: / sy-vline     ,
               10 sy-vline    ,
               31 sy-vline    ,
               37 sy-vline    ,
               38 wa_word-text ,
               58 sy-vline .
      ENDLOOP.
    ENDFORM .

  • SSRS 2008 R2 report does not print the page header for a html content displaying on multiple pages

    Hi
    I need to display the html content from the database. The html content are quite long and can have content of 3-5 pages. Issue I  am facing is f the record has html content of 3-5 pages, then it does not print the page header (which is a separate tablix) on
    second page onwards.
    Nikesh Shah
    Nikesh Shah

    Hi Nikesh,
    According to your description, I’m not sure the meaning of Page header in your scenario. In Reporting Services, a page header that run along the top of each page, respectively. Headers can contain static text, images, lines, rectangles, borders, background
    color, background images, and expressions. But we couldn’t add tablix in the page header.
    If you are saying report header, a report header consists of the report items that are placed at the top of the report body on the report design surface. They appear only once as the first content in the report. So it cannot repeat in other pages.
    If you are saying tablix header, freezing column headers are different in table and matrix. For more details, please refer to the following thread:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c8ddc1af-1bdf-4e72-8aab-0353c7cc848a/ssrs-report-freezing-row-and-column-while-scrolling-issue?forum=sqlreportingservices
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Approved by Me -Report is not displaying the Shopping Basket

    Hi SRM Gurus,
    We  have Implemented  N Step BADI for a client by getting the approvers from the TABLE DRIVEN.
    In the standard report in the Shopping Basket in Check status while selecting the APPROVED BY ME
    and  ALL , it is not displaying the Shoppingbasket approved by me
    What could be the reason .Earlier before our implemention of this  N step BADI it is working
    Can you give some suggestions in which functions module to check or any other clue
    Regards
    G.Ganesh Kumar

    This problem is resolved.

  • CS6 Ai not displaying the file preview correctly in the open dialogue window, any fixes?

    Icon preview does not seem to scale correctly central to its column.
    This also seems to happen on Cover flow view but you can not scroll across.

    It's fine if you go through finder on desktop or via Photoshop but since updating Yosemite it's messed up Illustrator.
    It's not scaling the preview correctly and it happens in Coverflow view too as I said.
    Just wondering if there's a preference you can delete to reset the finder via Illustrator?

  • JTable does not display table column header

    I create a JFrame with a JScrollPane in which I place a mainPanel (=JPanel ) consisting of a leftPanel (=JPanel ) and a rightPanel (=JPanel ). I add to the rightPanel a JTable using constructor JTable(tableModel dm). I overrode method dm.getColumnName(int coulmnIndex) and verified that this method is being invoked. The JTable is being placed in the rightPanel but without column header.

            // Using BorderLayout
            JTable table = new JTable(tableData, tableHeaders);
            add(table, BorderLayout.CENTER);
            add(table.getTableHeader(), BorderLayout.NORTH);

  • Mail not displaying the email contents correctly

    Im trying to use Mail on one of my machines.
    Its not showing me the body of the email.
    I can only see the intro part.
    What the heck!
    Switching between classic and regular view doesn't help I tried that.
    What else can I do to fix this.

    Hello Thomas
    Can you try double clicking in the 'intro' part of the email where the cursor turns to a hand icon. Double click and it should bring up a separate window with the body of the email.
    Tell me if that works,
    xeni

  • Times ten not showing the column alias as column header in select query.

    Hi All,
    I am trying to execute following queries on TimesTen database 11.2.2.2.0.
    SELECT ROWNUMBER,
    floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24)
    || 'h '
    || mod(floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24*60),60)
    || 'm '
    || mod(floor((to_date(TO_CHAR(SYSDATE,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss')-to_date(TO_CHAR(starttime,'YYYY-MM-DD hh24:mi:ss'), 'YYYY-MM-DD hh24:mi:ss'))*24*60*60),60)
    || 's' TIME_DIFFERENCE
    FROM
    (SELECT ROW_NUMBER() OVER (ORDER BY USERIDENTITY DESC) ROWNUMBER,
    u.*
    FROM TBLMCORESESSIONS u
    WHERE 1=1
    ) B
    WHERE ROWNUMBER BETWEEN 1 AND 5
    and I am getting the follwing output.
    ROWNUMBER,
    < 1, 8h 52m 34s >
    < 2, 8h 54m 24s >
    < 3, 8h 54m 13s >
    < 4, 8h 55m 6s >
    < 5, 8h 54m 40s >
    The issue is I should get TIME_DIFFERENCE as column header but it is not showing TIME_DIFFERENCE as the column header & it is calculating the value just fine .
    & if same query I execute on oracle 11g database every thing works fine.
    please suggest me something that column header is must.
    or suggest me any other for query
    Edited by: hiaditya04 on Apr 24, 2012 11:05 AM

    Hi,
    It is similar to bug which is raised in Timesten 11.2.2.2.. BUG 13896607 - COLUMN NAME MISSING FROM A VIEW IN TIMESTEN 11.2.2.2 . If you have MOS access then you can view about this bug. The bug is going to be fix in the future release. The bug basically indicates that we are not displaying the column name properly when select list contains complex expressions. The column itself can be accessed and values are displayed correctly.
    Regarding your issue "column TIME_DIFFERENCE not found" , I would suggest you to access the column by position, not by name like below
    I believe you are trying to access your column like below
    resultset.getString(“TIME_DIFFERENCE”)
    Instead of this you can use : -- resultset.getString(2) ( this position should based on the position of the column you are using in the query)
    Hope this helps.
    Regards
    Rajesh

  • A number of songs in my  i tunes libray have "not available" against them (in the column headed "Time") and won't play. How do I correct this?

    A number of songs in my  i tunes libray have "not available" against them (in the column headed "Time") and won't play. How do I correct this?

    Hello enrique a.
    Instead of trying to re-invent the wheel on this one, take a look at an article such as this one to help you take care of these exclamations.  Basically, it means iTunes is unable to locate the file on your computer anymore.
    http://ipod.about.com/od/itunesproblems/qt/Fixing-The-Itunes-Exclamation-Point.h tm
    B-rock

  • How do i type in tamil in microsoft office for mac? my previous tamil documents from my pc are not displaying the font correctly, nor am i able to use the inbuilt mac tamil font to write in microsoft office

    How do i type in tamil in microsoft office for mac? my previous tamil documents from my pc are not displaying the font correctly, nor am i able to use the inbuilt mac tamil font to write in microsoft office

    You should probalby post your question on Microsoft's own forums for their Mac software since it's their stuff you're asking about:
    http://answers.microsoft.com/en-us/mac

  • IxDimGet("per", "name") is not displaying the correct period

    Hi
    In XLReporter we have a YTD report were per = value selected at time of generating the report. The column is set as YTD(@per) and is retreiving the YTD data upto the correct period. However the column heading ixDimGet("per", "name") is displaying the 1st period of the YTD not the last period as selected in the parameters.
    eg. report is run to Oct 2007
          data is total to Oct 2007
          reporting heading displays Jul 2007
    Any suggestions?
    Thanks
    Jenny

    Hi Jenny,
    This can be a problem described in note number:876526.
    XLR uses the year number and period sub code of a financial period to generate its code. If certain period is created as a single period, while the rest months are created as a whole period with sub-periods, the sub code of the single periods are both 1, and the rest months start from 1 and end with 10. This is why the period codes in XLR is abnormal.
    Itu2019s a currently defined as a bug and a fix is in the process. Please try to use other data to filter the report result.
    Regards,
    Jacqueline Jiang
    SAP Business One Forums Team

  • How to display a Column Header for the characteristic Text column

    Hi All
    Our users want me to provide for a column header for the characteristic text.
    Here is what I mean
    I am reporting 0plant in the rows as key and Text. In the column on Plant Key the column header says Plant but there is no column header for the plant text.
    Eq:
    Plant                                                        Amount
    IE00         Initiator Plant                               244
    IE01         Initiator Plant NJ                          890
    Our users in the plant text column want a dummy column header to be displayed. SInce they download the data from the BW report to Excel and use pivot reporting. How can I introduce a column header for the texts.
    Thanks
    Karen

    Hi Karen,
    I am not sure if this is possible, although Users can ask anything :).
    In Planning we used to predefine cell headings via Macros and creating dummy cells in between.  I am not sure if a similar scenario can work here.
    By default this is not possible in Reports.  In BEx workbooks, you could probably try with Macros.
    Another easy option is to bring the data in the Cube as another field or create a nav. attribute in the master for text and use it as a nav. attr. in the Cube and put it in your Query row alongside.
    -Aby

  • Error in Acrobat 8: An error exists on this page. Acrobat may not display the page correctly...?

    Hi,
    We perform the e-signing on any PDF using our custom e-signature plug-in. Once that's done, when we try re-opening the PDF in Acrobat version 8.0.0.0, we get the following error:-
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    Please note that this error occurs intermittently and is NOT observed in Acrobat 7 or 9.  Also, when a plain PDF is opened (i.e. a PDF without any signature on it) then there is NO error.
    Could you let me know what could be the issue here? I read it in Acrobat 8.1.3 release notes that such an error was a known bug in version 8.0.0.0 (http://kb2.adobe.com/cps/407/kb407016.html), but I am not sure of its cause.
    Let me know your comments/suggestions.
    Thanks!

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • Firefox is not displaying the correct font color on my blog, but other browsers are.

    I have a web designer issue. Firefox is not displaying the correct font color on the header in my blog. Explorer, Chrome, and Safari have no problems. The page is in css but this particular section has html code o designate color. The code is as follows:
    <font face="helvetica" color="FF9966" size="1">blog</font>
    Though all other browsers display the light orange color designated, Firefox displays white. Strangely, if if retype the code by spelling out a color, Firefox displays it correctly. i.e.
    <font face="helvetica" color="black" size="1">blog</font>
    ... will give me black. You can see the effect by viewing the link below and looking at the word "blog" in the header, which should be light orange but is not in Firefox.

    Actually it also seems to work in the current Firefox 4 beta as it is.
    The code is not right though - the correct syntax for the color attribute with hex values is with a # at the start, so:
    color="#FF9966"
    It might work in Firefox 3.x if you change that.

Maybe you are looking for

  • How can I relink my missing songs in iTunes?

    Hi, I´m a bit panicking since now 1000 songs on my iTunes library aren´t being located by my iTunes... What happened is that I had to reinstall my MacBook Pro after it crashed, and my network drive failed, so no possibility of Timemachining it. Fortu

  • Popping sound

    I am having trouble getting rid of this popping noise that I hear from my entire library and even from the music store 30 second samples. I have heard it ever since the latest itunes update. I have already uninstalled/reinstalled itunes and quicktime

  • Why are files viewed in Bridge a lot brighter than Mac Finder window?

    Why do my camera raw files appear a lot brighter when viewed in Adobe Bridge than when viewed in the Mac Finder Window?  Like a lot brighter.  I'm not really sure which is the 'correct' brightness. Thanks!

  • Can we install a PCI-GPIB card on a laptop

    or do we need to install PCMCIA GPIB card for that. We will have windows 2000 installed on the laptop. I want to use LabVIEW 6.0 on my laptop.

  • Restricted account hierarchy nodes

    Hi BI Gurus, I have a requirement to generate Profit and Loss statement in BI. I pulled up account hierarchy out of R/3 into BI. The issue is client want to see some nodes of the account hierarchy restricted by specific Functional Area only. Please s