Report painter layout variants

Dear sirs,
a colleague of mine needs your experience. Our customer needs us to create some Report Painter reports with the possibility to change the layout. Is this/ something like this possible?
An example would be to pick up the columns or to change number format: see numbers in units or tousands of units. Something like ALV variants/ layout?
Any customizing option or workaround would help, thanks Otto

You can pretty much do most of what your colleague is enquiring about.
1. Create a report library GR21
     -   Table name: E.g GLPCT.  You can copy an existing library and modify.
     -   Description: E.g  Branches P& L Reports
     -  Check off the characteristics he wants
     -  Check off  key figures
     -  Check off basic key figures.
Define sets and variables if need to with t-codes GS01 and GS11 respectively.
2. Create a report group GR51
3. Create report either using GRR1 or GR31
   - Enter the library you created above
   - Enter report name
   - You can copy from an existing report and make changes to your likeness
   - Define you general data selection
   - Element definition which is the columns and rows
   -  Click on Extras and define report headers
  - Click on Formatting to format columns and rows
4. Assign report to report group created earlier on.
The above guidelines are the basics on how to proceed.
Refer back for any further clarifications.
Elias
Edited by: Elias Akorli on Nov 24, 2009 2:16 PM

Similar Messages

  • Download alv report using layout variant in background

    Hi All,
    I want to download an Alv report using layout varaint in background job.
    can any one please help me.
    i.e...
    I am facing a problem in downloading a text file to the Application server.
    My requirement is, when the user downloads a file with the layout variant, the file should have only the columns which was selected in the variant.
    Will rewards to helpfull ans
    regards
    Chetan

    hey seshu,
    I am facing a problem in downloading a text file to the Application server.
    My requirement is, when the user downloads a file with the layout variant, the file should have only the columns which was selected in the variant.

  • Downloading ALV Report using Layout Variant

    I want to download an Alv grid report output using layout varaint to Presentation server and also wants to mail to user .
    i.e...
    I am facing a problem in downloading and in sending mail.
    My requirement is, user  will choose  layout variant
    As per Variant chosen, i have to download that alv grid output to presentation server and also to mail.
    These download and mail sending options is in selction screen
    Will rewards to helpfull ans

    Hello,
    Do like this.
    FORM DOWNLOAD_FILE TABLES P_T_LISTE STRUCTURE G_T_LISTE.
      G_R_DISP_VARIANT-REPORT = SY-REPID.
      G_R_DISP_VARIANT-VARIANT = PA_VAR.
      CALL FUNCTION 'REUSE_ALV_VARIANT_SELECT'
           EXPORTING
                I_DIALOG            = 'N'
                I_USER_SPECIFIC     = 'A'
                I_DEFAULT           = 'X'
                IT_DEFAULT_FIELDCAT = G_T_FIELDCAT
                I_LAYOUT            = G_R_LAYOUT
           IMPORTING
                ET_FIELDCAT         = G_T_FIELDCAT
                ES_LAYOUT           = G_R_LAYOUT
           CHANGING
                CS_VARIANT          = G_R_DISP_VARIANT
           EXCEPTIONS
                ERROR_MESSAGE       = 4
                OTHERS              = 4.
      LOOP AT G_T_FIELDCAT INTO G_R_FIELDCAT WHERE NO_OUT NE 'X'
                                               AND TECH IS INITIAL
                                               AND FIELDNAME NE 'ICON'.
        MOVE-CORRESPONDING G_R_FIELDCAT TO IS_FIELDCAT.
        IS_FIELDCAT-FIELDNAME = G_R_FIELDCAT-FIELDNAME.
        IS_FIELDCAT-INTTYPE   = G_R_FIELDCAT-INTTYPE.
        IS_FIELDCAT-OUTPUTLEN = G_R_FIELDCAT-OUTPUTLEN.
        IS_FIELDCAT-REF_FIELD = G_R_FIELDCAT-FIELDNAME.
        IS_FIELDCAT-REF_TABLE = G_R_FIELDCAT-REF_TABNAME.
        APPEND IS_FIELDCAT TO IT_FIELDCAT.
      ENDLOOP.
      DATA: WA_LISTE LIKE P_T_LISTE.
      CLEAR:IT_OUTTAB.
      REFRESH: IT_OUTTAB.
      LOOP AT P_T_LISTE INTO WA_LISTE.
        WA_OUTTAB-PSPID = WA_LISTE-PSPID .
        WA_OUTTAB-POSID = WA_LISTE-POSID.
        WA_OUTTAB-POST1 = WA_LISTE-POST1.
        WA_OUTTAB-STTXT_INT = WA_LISTE-STTXT_INT.
        WA_OUTTAB-STTXT_EXT = WA_LISTE-STTXT_EXT.
        APPEND WA_OUTTAB TO IT_OUTTAB.
      ENDLOOP.
    **dynamic table creation for data
      ASSIGN LT_DATA TO <FS_DATA>.
    * Create a new Table
      CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
      EXPORTING
            IT_FIELDCATALOG = IT_FIELDCAT
      IMPORTING
            EP_TABLE = <FS_DATA>
      EXCEPTIONS
          GENERATE_SUBPOOL_DIR_FULL = 1
          OTHERS                    = 2.
      IF SY-SUBRC = 0.
        ASSIGN <FS_DATA>->* TO <FS_1>.
        CREATE DATA NEW_LINE LIKE LINE OF <FS_1>.
    *** A field-symbol to access that work area
        ASSIGN NEW_LINE->*  TO <FS_2>.
    **MOVE DATA
        LOOP AT IT_OUTTAB INTO WA_OUTTAB.
          CALL FUNCTION 'CONVERSION_EXIT_ABPSN_OUTPUT'
               EXPORTING
                    INPUT  = WA_OUTTAB-PSPID
               IMPORTING
                    OUTPUT = WA_OUTTAB-PSPID.
          CALL FUNCTION 'CONVERSION_EXIT_ABPSN_OUTPUT'
               EXPORTING
                    INPUT  = WA_OUTTAB-POSID
               IMPORTING
                    OUTPUT = WA_OUTTAB-POSID.
          LOOP AT G_T_FIELDCAT INTO G_R_FIELDCAT
                              WHERE NO_OUT IS INITIAL
                                AND TECH IS INITIAL.
            ASSIGN COMPONENT G_R_FIELDCAT-FIELDNAME OF STRUCTURE
                                                    WA_OUTTAB TO <FS_5>.
            ASSIGN COMPONENT G_R_FIELDCAT-FIELDNAME OF STRUCTURE
                                                    <FS_2> TO <FS_3>.
            <FS_3> = <FS_5>.
          ENDLOOP.
          INSERT <FS_2> INTO TABLE <FS_1>.
        ENDLOOP.
      ELSE.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      OPEN DATASET P_FILE FOR OUTPUT IN TEXT MODE.
      IF SY-SUBRC EQ 0.
        LOOP AT <FS_1> ASSIGNING <FS_2>.
          TRANSFER  <FS_2> TO P_FILE.
        ENDLOOP.
      ELSE.
        MESSAGE E041(S9) WITH P_FILE.
      ENDIF.
      CLOSE DATASET P_FILE.
    ENDFORM.                    " download_file
    * 002 vsm1kor 13.06.06 - en
    Regards,
    Vasanth

  • REPORT PAINTER LAYOUT

    Adding data columns to report drill down table
    Technical code - ZFI131 - Report Painter
    YTD CCA-REP GRP & CST CNTR CRP VAR: Selection
    Enter 2011, 2,2,,0  Group 12021862
    YTD CEG_CCA-REP X CCG_C10001
    Select - Manufacturing Activities, Drill down into actual "Labor Activity" number.
    Drill down into total (Yellow value) (Cost Centers actual line items)
    //JLD_SUPP SUPPLIES LAYOUT FOR COL HEI
    Each line of this report has an aaociated Material number, Resource and yield and UOM. We need to be able to add the Material, Resources, Yield, and UOM on the tabluated report.
    in the above report it is linked with KSB1 tcode there the above layour has been used. in the standard layout there is no resources and yield field is available. how to bring and why it is not available in standard layout field list. is there any performance issue leads into that? and also material field no material number is not pulling.
    Can you tell me why this is happening and why those fields resources and yield where not available in standard layout?
    Regards
    Laxmi

    You can pretty much do most of what your colleague is enquiring about.
    1. Create a report library GR21
         -   Table name: E.g GLPCT.  You can copy an existing library and modify.
         -   Description: E.g  Branches P& L Reports
         -  Check off the characteristics he wants
         -  Check off  key figures
         -  Check off basic key figures.
    Define sets and variables if need to with t-codes GS01 and GS11 respectively.
    2. Create a report group GR51
    3. Create report either using GRR1 or GR31
       - Enter the library you created above
       - Enter report name
       - You can copy from an existing report and make changes to your likeness
       - Define you general data selection
       - Element definition which is the columns and rows
       -  Click on Extras and define report headers
      - Click on Formatting to format columns and rows
    4. Assign report to report group created earlier on.
    The above guidelines are the basics on how to proceed.
    Refer back for any further clarifications.
    Elias
    Edited by: Elias Akorli on Nov 24, 2009 2:16 PM

  • Report Painter: Create variant for specific report created

    Hello,
    My knowledge in very weak in report painter.
    In the initial screen of a report created to analyse the budget by internal order whe have the year and the period of analysis.
    By default, for every user the year is 2010 and the period of analysis is from month 1 to month 1.
    My question, and I am sorry to ask such a simple question, is how can we change this initial screen?
    The aim is to have for every user, when connecting the report, by default the year 2011 and the period of analysis from month 1 to month 16?
    Thank you.
    Best Regards.
    R.

    Hi
    1. Go to GRR3 and identify the variable used in your report
    2. Go to GS12 / GS13 and check the variable definition
    May be some default value is specified there / or it is formula variable... Double click on the formula variable and you can check how it is defined...
    For the variable related to PERIOD - You need to specify a different variable for the From & To and specify the default value as 1 and 16
    Br, Ajay M

  • Assign a New Report Painter Layout to a Transactions

    Dear all.
        I have created a New Layout ZPT-ACTIV-01 by copy the Layout 0PT-ACTIV-01.
        I need to created a new transaction. I Copy the transaction S_ALR_87012258 to ZS_ALR_87012258. Because a create a new Layout ZPT-ACTIV-01 e need to change the Default Value
    D_SREPOVARI-EXTDREPORT = FBR 01RFRRS02 ZPT-ACTIV-01                .
    But When i'm saving the transaction the following erro message appears "Do not use blank characters"
    Best Regards
    Thanks In Advanced
    Pedro Miguel Rodrigues

    No, i don't have any aditional Space.
    But, i think that this problem is only occurs in my SAP Version ECC 5.0.
    Best Regards
    Thanks in advanced
    Pedro Miguel Rodrigues
    This problem was solved by implementing the OSS Note 871039
    Message was edited by: Pedro Rodrigues

  • Report painter variants/ layouts

    Dear sirs,
    a colleague of mine needs your experience. Our customer needs us to create some Report Painter reports with the possibility to change the layout. Is this/ something like this possible?
    An example would be to pick up the columns or to change number format: see numbers in units or tousands of units. Something like ALV variants/ layout?
    Any customizing option or workaround would help, thanks Otto

    My users are very lazy and want me to do the columns changes automatically. An example: the supervisors work with much money and the want to see the numbers in tousands only. The basic users need to see the whole numbers. This is the simplified problem. And I don´t want to copy each RP report 5-10 times. And yes, I am an ABAPer, and if it would not be so time demanding requirement I would program the ALV reports instead of these RP.
    New idea: could you extract the RP report code out of the generated report to reuse it in the standard ALV report?
    Thank you for your effort, Otto

  • Layout variant is not working in background in ALV report

    Hi,
    I have one LAV report to send the report output through mail in foreground and backgroud.Final internal table is having 46 fileds to display the output.But here user is saving the layout variant and sending that layout variant output to mail id in excel format with zip file.Its working in foreground.But in background its not working.Even if we select the layout variant,its sending all the 46 fileds to mail.
    here we have used the below FM to update the fieldcat itab.
    CALL FUNCTION 'REUSE_ALV_GRID_LAYOUT_INFO_GET'
        IMPORTING
          et_fieldcat   = it_fieldcat[]
          es_variant    = v_disvariant
        EXCEPTIONS
          no_infos      = 1
          program_error = 2
          OTHERS        = 3.
    In for ground NO_OUT = 'x' for non selected fields and NO_OUT = ' ' for selected fields.
    But in background NO_OUT = ' ' for all the fileds, even if we select the layout variant.
    Please suggest me  with the solution.
    Regards,
    Jayaram

    hi ,
    Do according to this
    SORT t_ekbe by belnr.
      if  t_ekbe[] is not initial  .
          SELECT  MBLNR
            BWART
            SMBLN
            ERFMG   " This is the new added field
            erfme     " This is the new added field
          INTO CORRESPONDING FIELDS OF TABLE t_mseg
        for all entries in t_ekbe
          from mseg
          where mblnr = t_ekbe-belnr
          AND   bwart = '101'.
      endif.
    after this
    loop at t_ekbe .
    loop at t_mseg  where mblnr  = t_ekbe-belnr .
      t_ekbe-ERFMG = t_mseg-ERFMG .
    t_ekbe-erfme =   t_mseg-erfme  .
    modify t_ekbe transporting ERFMG  erfme .
    clear t_mseg .
    endloop.
    clear t_ekbe .
    endloop.
    Regards
    Deepak .

  • Report Layout variant missing in ECC6

    Hi All,
    we are going for upgrade from 4.6 to ECC6. In ECC6 in most of report's  report layout variant are missing in ECC6.But our client want same variant in ECC6 as in 4.6.
    Please sugest how to over come this issue.
    Thanks
    Mohit Khandelwal

    Mohit,
    I think you can try out this...
    Include the variant in a transport request and give the transport req no to the basis guy; and inform him to import the same req no into ECC6 version.
    He can export the transport req no from 4.6 to windows desktop and then he can import the same into ECC 6 system.
    I hope this will solve your issue.
    - Seenu
    Edited by: Sreenivasulu Nallani on Jan 25, 2010 12:24 PM

  • Change font size and layout of reports in Report painter

    Hi,
    I want to change the print layout and the fonts of reports created in Report Painter.
    In the print output i am getting 40% of the total screen
    My requirement is to increase the font size and the print layout to fullscreen so that the report layout fits to the page.
    Kindly help.
    Parin

    Hi,
    Well i generate a report which has two three columns.....
    1) Description
    2) Column 1 for fiscal year 2009
    3) Column 2 for fiscal year 2008 for comparison
    Here after these columns we have unformated space as a column.
    Now we tried to hide this column but the system is not allowing to hide this.
    How can we remove this unformatted column/space from the print output.
    Thanking you,
    Parin

  • Printing Selection Variant in Report Painter

    Hi, I am using ECC 5.  There is a requirement for printing the selection variant in Report Painter (GR55) Reports.  Presently there is a provision to print selection fields and values.
    Is any way, I can print a Selection Variant and Name in Report Painter?  I understood that the information is stored in Table VARIT.  This table contains Lang., Report Name, Variant and Short text.  I do not know how to get this info in Report screen.
    Can any one help?
    Advance Thanks
    Venkat

    Hi,Thanks for your reply.  Let me explain.
    When using Transaction Code GR55, enter Report Group, Execute.  This will open a Report Paramenter screen.  In this screen, if you select Goto --> Variant --> Get OR Get Variant icon, this will show the available selection variants.  Select any one of them and run report.
    In report it will pick-up the each selection paramater field and value NOT a variant.
    Is any way to get the variant also printed in report?
    Hope this will is clear.
    Thanks
    Venkat

  • Report Layout Variant - transaction S_AHR_61016503 - Staff Assignments

    Hi,
    One of our users has created a layout variant in the above report. Some other users can view and choose the layout but one cannot. Is there an authorisation object missing? If not, does anyone have any ideas why this one person cannot view it.
    Thanks
    Hannah

    Hi Arun,
    Thanks for your reply. If the authorisation group is blank, shouldn't anyone be able to view it?
    Thanks
    Hannah

  • Report Layout variant

    Hi Gurus
    Please help me regarding a Report layout variant.
    1. Can I transport a report layout variant and how?
    Regards
    KTK

    How to transport a Layout variant
    As an example use transaction code FBL5. Run it for some selection criteria (customer code, company code).
    Goto menu option Settings &#61664; Display Variants &#61664; Administration
    Now select your variant and goto menu option Layout &#61664; Transport
    Hope this is what you are looking for.
    Regards

  • Report Painter problem with empty selection variant

    Hello,
    I use the cost center selection variant for the column definition in Report Painter as characteristic value. This selection variant get only the cost centers which are valid from 1.1.2003 to 31.12.2004. The column of the report created by Report Painter which uses this selection variant display value without taking into account limitations follow from this selection variant. I expect value zero for year fiscal year 2007 in this column, because the cost centers are invalid in 2007 year but the report displays different value. The problem appeared after upgrade from 4.6C to ECC 6.0.
    Best Regards
    ZD

    My problem with Report Painter occurred when I was creating my own report based on 1VK library.
    In my example I used in the column definition characteristic Cost
    Center, which is determined by selection variant, and Basic Key Figure
    equal SWKG-Costs. For system date (18.07.2007) there are no valid
    master data for the characteristic Cost Center but when I execute
    report for fiscal year 2007 the column display no-zero value without
    taking into account value of Characteristic Cost Center. I expected
    zero value in this column because there are no postings for Cost
    Centers (no valid cost centers were selected) in financial year 2007.
    Could you help me with this problem ?

  • Selection variant for a report painter

    Hi,
    I created a report painter report. I want to create a default selection variant for a specific user. For example, I want user GIRARDJU to have company code=ADM, period 6 to period 13. I tried to create a variant and call it U_GIRARDJU but it doesn't work like it does for the standard SAP reports...
    Any suggestions?
    Thanks a lot,
    Julien

    Hi,
    First go to the report you have created.
    Then save the selection criteria you want & give an appropriate name to your variant (eg: /INOKA).
    When you execute the report next time, this variant will be there, & by double clicking it you'll get the saved information.
    Best regards,
    Inoka.

Maybe you are looking for

  • Home sharing not working, no shared library: iTunes 10.6.1, iPhone 4s

    So here's what I'm doing and what my problem is.  On iTunes, under preferences, I go to the sharing tab and click share my library on my local network.  I then go to advanced > turn on home sharing. I enter my apple id and password and create home sh

  • Itouch crashed, now not working?!?! i need some help please

    well it "works" I guess, i still get facebook notifications but that's it. one day i was watching a music video and the screen did the thing where it turns green and then just goes blank and then restarts..well it restarted, and it has a screen to co

  • Why can I not open Numbers documents in iOS

    I have a problem with Numbers on iOS and Mac OS X (Mountain Lion (version 10.8.2) that I have seen asked before, but to which I have yet to see an answer. I've been using iWork on iOS devices since it was introduced for the iPad and iPhone, and I use

  • How to Create new diskgroup in ASM ?

    Hi experts, We are using IBM AIX 5.3L OS on IBM Servers. Oracle Database EE 10G 10.1.0.4.0, RAC and ASM Presently There are 3 diskgroup (Filesystem) in my DB suppose +ABC +DEF +GHI Now I want to add a new Diskgroup (File system) Say +XYZ and I want t

  • My imac g5 quits suddenly

    Hi My imac g5 quits suddenly.  I start it up, everything works fine, Mail loads, it looks for new mail, then quits.  The screen goes black - no noise, nothing.  It does this twice and then runs perfectly.  A couple of months ago I started having some