Editing Xl Reporter Report

Hi all,
How we can edit the XL repoter report.i m new to XL reporter.I am not getting how i can edit the report.how the columns are linked means which column is linked with which data base field.
Thanks,
Neetu

Hi Neetu,
You can see the field names when you select dimension, light dimension or measures when you are in composer interface.  Some of them may represent more than one field and changeble based on your other selections.
You probably need to do more test and see the results to have better understanding of XLR language.
Thanks,
Gordon

Similar Messages

  • Field Editing in ALV Report

    hello everyone,
    I have created an alv report using MARA table. but i am unable to edit any field and save the changes back to the table in the database.
    I

    Hi Ravi,
    Check out the below demo program for editable ALV .
    REPORT  ZDEMO_ALVGRID_EDIT                 .
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      field_style  TYPE lvc_t_styl, "FOR DISABLE
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: it_fieldcat TYPE lvc_t_fcat,     "slis_t_fieldcat_alv WITH HEADER LINE,
          wa_fieldcat TYPE lvc_s_fcat,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE lvc_s_layo,     "slis_layout_alv,
          gd_repid     LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM set_specific_field_attributes.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
    *       Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      wa_fieldcat-fieldname   = 'EBELN'.
      wa_fieldcat-scrtext_m   = 'Purchase Order'.
      wa_fieldcat-col_pos     = 0.
      wa_fieldcat-outputlen   = 10.
      wa_fieldcat-emphasize   = 'X'.
      wa_fieldcat-key         = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'EBELP'.
      wa_fieldcat-scrtext_m   = 'PO Item'.
      wa_fieldcat-col_pos     = 1.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'STATU'.
      wa_fieldcat-scrtext_m   = 'Status'.
      wa_fieldcat-col_pos     = 2.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'AEDAT'.
      wa_fieldcat-scrtext_m   = 'Item change date'.
      wa_fieldcat-col_pos     = 3.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MATNR'.
      wa_fieldcat-scrtext_m   = 'Material Number'.
      wa_fieldcat-col_pos     = 4.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MENGE'.
      wa_fieldcat-scrtext_m   = 'PO quantity'.
      wa_fieldcat-col_pos     = 5.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MEINS'.
      wa_fieldcat-scrtext_m   = 'Order Unit'.
      wa_fieldcat-col_pos     = 6.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'NETPR'.
      wa_fieldcat-scrtext_m   = 'Net Price'.
      wa_fieldcat-edit        = 'X'. "sets whole column to be editable
      wa_fieldcat-col_pos     = 7.
      wa_fieldcat-outputlen   = 15.
      wa_fieldcat-datatype     = 'CURR'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'PEINH'.
      wa_fieldcat-scrtext_m   = 'Price Unit'.
      wa_fieldcat-col_pos     = 8.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
    *       Build layout for ALV grid report
    FORM build_layout.
    * Set layout field for field attributes(i.e. input/output)
      gd_layout-stylefname = 'FIELD_STYLE'.
      gd_layout-zebra             = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
    *       Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
    *  call function 'REUSE_ALV_GRID_DISPLAY'
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
           EXPORTING
                i_callback_program      = gd_repid
    *            i_callback_user_command = 'USER_COMMAND'
                is_layout_lvc               = gd_layout
                it_fieldcat_lvc             = it_fieldcat
                i_save                  = 'X'
           TABLES
                t_outtab                = it_ekko
           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.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
    *       Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO  CORRESPONDING FIELDS OF TABLE it_ekko.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  set_specific_field_attributes
    *       populate FIELD_STYLE table with specific field attributes
    form set_specific_field_attributes .
      DATA ls_stylerow TYPE lvc_s_styl .
      DATA lt_styletab TYPE lvc_t_styl .
    * Populate style variable (FIELD_STYLE) with style properties
    * The NETPR field/column has been set to editable in the fieldcatalog...
    * The following code sets it to be disabled(display only) if 'NETPR'
    * is gt than 10.
      LOOP AT it_ekko INTO wa_ekko.
        IF wa_ekko-netpr GT 10.
          ls_stylerow-fieldname = 'NETPR' .
          ls_stylerow-style = cl_gui_alv_grid=>mc_style_disabled.
                                                 "set field to disabled
          APPEND ls_stylerow  TO wa_ekko-field_style.
          MODIFY it_ekko FROM wa_ekko.
        ENDIF.
      ENDLOOP.
    endform.                    " set_specific_field_attributes

  • How to save data in ztable after editing in alv report

    how to save data in ztable after editing in alv report?

    Hi,
        Please find the attachment below.This may be usefull to you.
         [http://wiki.sdn.sap.com/wiki/display/Snippets/ALV-Editingandsavingtheeditedvaluesin+Database%28OOPS%29]
    Regards,
    Ramakrishna Yella.

  • Developer role able to edit a shared report that he did not create

    Hi,
    It seems like user with "BI Publisher Developer" role is able to edit a report
    in shared folder that he has access to.
    Question: How can I create a user who can develop/create/edit his own reports,
    and have view only access to some shared reports and
    have edit access to some other shared reports?
    i.e I want a scenario where there are 2 folders in Shared folder say FolderA and FolderB.
    I want to create a user who is a developer such that he can create reports under My Folder
    for his personal use and also be able to create/edit reports under Shared/FolderA,
    but have only view-only access to Shared/FolderB
    Thanks

    Moderator Action:
    Same reaction as with your other triple multi-post:
    https://forums.oracle.com/thread/2576361
    Do not multi-post.
    That's the same as if you were a spammer.
    This one is also locked.
    Stay with your post that is in the New To Java forum space.
    Stay in the New To Java forum space until you are not a novice any longer.

  • Can we edit the System Report queries to add some missing fields ?

    Hello,
    I'm using SAP Business One 2005 A and I was wondering if there was a way to edit the system report queries.  Sometime, I'm only missing calculated fields in the existing report.  Something as easy as the difference between 2 dates is not working with the formula fields.
    Instead of rewriting everything, could we simply see that original query and edit it to add the missing fields ?
    I don't like the fact I can't add my own created report from a query in the main menu.  Since I couldn't do anything with the Backorder reports by default, I created mine with my own SQL query.  Can't I replace the existing one with my own ?
    Thank you
    Daniel Gagnon

    Hi Daniel,
    You can edit a system query but then you can only save it as a user query (ie you cannot overwrite the system queries).
    User queries can't be placed in the Main Menu using the standard GUI though you could add them to the User Menu tab so your users can get to them easily. I think to add them to the Main Menu would require the development of an add-on that updated the Main Menu and triggered the running of the query when the user clicked on the menu option.
    The other thing to look at is using XL Reporter for your reports rather than the Query Generator. With XL Reporter you can automatically add reports to the main menu.
    Kind Regards,
    Owen

  • How to edit template for report generator in stimulus profile editor in Veristand 2011?

    How to edit template for report generator in stimulus profile editor in veristand 2011?
    We are using Veristand 2011.When we run any sequence in stimulus profle editor,we get test results in form of ATML file.
    We want to customise the template for this test result generation as per our requirement.
    For example:
    Test case No.: Description of test case.
    Objectives: Explanation of objectives.
    Result: Passed/ Failed.
    Graph: If any.
    Please suggest how to do this.

    You cant really change too much in the report, you can customize TRML.xsl which is created every time in the Test Results\UUT 1 folder and that would give you some flexibility on what is shown. I dont know what a xsl is actually able to do in terms of composing data from multiple files (if at all possible) but it definitely allows you to change the visual format of the existing xml data.
    Otherwise I modified the xsl to customize the look of the xml report when opened in a browser to have less clutter and some coloring on the Pass/Fail but, the reports are XML files anyway so it's easy to extract data out of them and you can probably write your own report creation tool to compose the report in whatever format you like.

  • Problem Editing User Defined Report - 1.1.0.22.71

    When I rt click on an existing user-defined report on the Reports tab and select edit, change the default value on a bind variable and click Apply, I get message "Name already used please enter new one" message and changes will not save. Am I missing something here or is this a bug?

    I expected that if I basically did a "save as" the issue could be avoided. But I wanted to be sure that if I'm maintinanig a set of shared reports I can edit an existing report without having to jump through a hoop or two. Is this issue being addressed?
    Thanks

  • How to edit the JSP Report

    Dear All, anybody knows how can i edit a JSP report ?
    or : is it possible to edit in a paper version of report ( 9iDS 9.2) and then publish it on the web after editing its layout ?
    please , if anyone knows it will be appreciated.
    Regards,
    Hany B.Maurice
    Application Developer

    thanks alot my dear , but i have a comment
    when i edit in the layout of the report( paper version) it does not reflect the changes i made in the web version
    is there any layout editor for the JSP version of the report .
    Regards,
    Hany
    Hany B.Maurice
    Application Developer
    Cairo - Egypt

  • How to edit the scheduled report.

    Hi All,
    How to edit a scheduled report in bi publisher 10g.
    We have a scheduled report and need to change receiver email id. How to do it instead of deleting and resheduling the report.
    Thanks.

    Hello,
    Any body..???

  • COM dlls in the Standard and Professional Editions of Crystal Reports

    Post Author: enz0
    CA Forum: Deployment
    Hi.
    Do the Standard and Professional editions of Crystal reports install all the com dlls?
    thanks

    Hi,
    The crystal reports trainign for SAP Business One is designed for partners and customers and provided for free to them.
    It's not available to non-customers. You will need to have a login to the partner or customer portal to use it.
    Alternatively you can use the regular Crystal Reports training resources or available books to get yourself skilled for Crystal Reports. Being able to work with Crystal Reports is 90% of the work where as the SAP Business One specific's are in the area of ....
    - Release 8.8: the datasource connections; working with variables in the report; intergration and distribution of reports
    - Release 2007: linking the reports into the SAP Business One menu and making them secured available to the end users.
    Best regards,
    Peter

  • Edition with jasper report

    I want to edit with jasper report so I have this 2 classes.In the first I have this method
    private Map parameters;
    public void addParametre(String nom, Object valeur)
    if(parameters == null)
    parameters = new HashMap();
    parameters.put(nom, valeur);
    and the second class I have this method
    public String editionAction() {
    ReportGeneratorImmat ge =new ReportGeneratorImmat((String)getForRep().getValue()) ;
    String pWhere="matr='145-A' and";
    String pOrder="order by nom";
    ge.addParametre("P_WHERE",pWhere);
    ge.addParametre("P_ORDER",pOrder);
    return null;
    the problem is that the first parametre (P_WHERE) is successfully added but the the second (P_Order) no. So how can I add both?

    Seems that this question would be better asked on the Jasper Report forums, no?
    John

  • HT201272 I purchased the August 2012 edition of Consumer Reports and I get an (Error During Download Cannot start the download because the file is missing or invalid)

    I purchased the August 2012 Edition of Consumer Reports and I get (Error During Download Cannot start the download because the file is missing of invalid)

    Contact support and see if they cna give you a fresh copy. It's probably with the file..

  • Upgrading from CR 10 Embedded Edition to Crystal Reports (server) xi

    We recently upgraded from CR10 Embedded edition to Crystal Reports Server Xi. In our application the users access the reports via a web page (where they enter the paratemeters) and the report is displayed using the Crystal Reports viewer. The CR server xi was recently installed and all the SDK references have been as mentioned in this document: https://boc.sdn.sap.com/node/724. But now when the reports are accessed via the web page we are encountering the error 'All of your system's 0 Concurrent Access Licenses are in use at this time or your system's license key has expired. Try again later or contact your administrator to obtain additional licenses.---- Error code:-2147217397 Error code name:enterpriseLogonFailed'
    Can anyone share your thoughts or provide suggestions?
    Thanks,
    in advance!
    SG.
    Edited by: Shekhar Gorthy on Aug 4, 2008 10:58 PM
    Edited by: Shekhar Gorthy on Aug 4, 2008 10:59 PM

    Hello SG,
    A common issue that arises when migrating from Crystal Enterprise 10 Embedded to Crystal Reports Server XI applications that use the Report Application Server (RAS) SDK.
    The RAS supports two modes of operation - "Unmanaged" and "Managed" reporting.
    With CE10Embedded, you'd be using Unmanaged Reporting, where you'd copy the Crystal Report rpt file to the RAS server, and reference it by path when opening it in the ReportClientDocument class instance.
    With Crystal Reports Server XI, you can use either Unmanaged Reporting, or Managed Reporting.  Managed means you'd publish the rpt file to be "managed" by the CR Server Central Management Server (CMS).  In code, you'd log onto the CR Server, retrieve the ReportAppFactory from the CMS, retrieve the report from the InfoStore, and pass it into the ReportAppFactory to create the ReportClientDocument.
    I'm assuming you're still using "Unmanaged Reporting" with Crystal Reports Server.
    If so, each report request will be authenticated in the CMS using the "Guest" account, and each request will use up a Concurrent Access License (CAL).
    If you're getting the exception on the first report request, then that likely means you have the complimentary copy of CR Server XI, that comes with zero CALs and five Named User Licenses.
    You won't be able to use unmanaged reporting with the complimentary version.  You may want to modify your code to use managed reporting.
    If you're getting the exception on the sixth or subsequent request, then that likely means you've purchased CR Server XI, and the base edition comes with 5 CALs.
    If you contact sales, you can inform them of the number of users you have, and how frequently they request reports, and sales can recommend a license to match your requirements.
    Sincerely,
    Ted Ueda

  • Open Interactive Reporting report using smartcut

    Hello,
    i was wondering if i can open an Interactive Reporting report from a link from a separate web server (not workspace).
    I know i can add username and password to my smartcut link to open my report directly. Is there a way to use encrypted password?
    thank you,
    daniele

    If you had more thoroughly read the docs, you would have found your answer in 2 forms in the v11.1.1.3 document on pages 85 - 87. The note on the bottom of page 85 talks about transparent access and where to get more info, and the HTML forms shown on pages 86 and 87 show how to define the username and password as hidden parameters on the form.
    If you want browser-to-web-server communications encrypted, you need to use SSL and set up the Hyperion configuration accordingly.
    Edited by: Mark Ostroff on Sep 30, 2010 2:14 PM

  • Report of type "Financial Reporting Report"

    Hi All,
    I want to import a report of type "Financial Reporting Report" from another system (Say from SYSTEM:"A" to SYSTEM:"B") through workspace .
    Is it posibble to import a report of type "Financial Reporting Report"?
    Thanks,
    Edited by: Josephine on Aug 5, 2009 6:50 AM

    Hi,
    If you are on version 11 then you either use LCM via Shared Services
    or you can go into the workspace and export report to a file, then log into your target workspace and import the file
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Problems with Page Break in an Interactive Reporting report

    Hello everybody,
    Platform: Hyperion System 9.3.1.
    I have serious problems in managing the 'page break' in an Interactive Reporting report.
    The report shows sales data by store, with article and colour details and it is organized like this:
    group 1: geographic area
    group 2: country
    group 3: city
    group 4: store
    columns: article, colour
    facts: quantity, price, value
    My client's request is to perform a page break at the store group level, meaning that apart from the first store occurance, any change in the store value shoul start a new page.
    The requested result is like this:
    page1: geographic area1
    country1
    city1
    store1
    data store1...
    page 2: store2
    data store2...
    page3: store3
    data store3...
    I tried several combinations of using Break After and Break Before on the store group, with Keep Next / Keep Together and it was impossible to obtain the desired result.
    If I use Break Before the result is as follows:
    page 1: geographic area1
    country1
    city1
    page 2: store1
    data store1...
    page 3: store2
    data store2...
    If I use Break After the result is as follows:
    page 1: geographic area1
    country1
    city1
    store 1
    page 2: data store1...
    store 2
    page 3: data store2...
    even if I specify 'Keep with next' or 'Keep together' for store group and the store data table.
    Any help will be very very appreciated because I've been trying for weeks to figure out this issue.
    Daniela

    First start without using any of the Keep with Next and Keep together.
    Second. try putting the Page Break in the Group Footer. You do not need to keep it visible
    Then you may want to repeat headers on Store in case the Store's Detail rolls onto next page
    Hope this helps
    Wayne

Maybe you are looking for