SAP r/3 report

Hello, I'm using .net connector and I need to read the output of a report from it.
The .net connector only could access to a RFC, there's any way to read the data of a report? without changing de ABAP of the report?
I got the same problem reading the output of a SAP transaction, I'm trying to use the RFC_CALL_Transaction, is this correct?
Thanks a lot!

Hi Magesh,
Enabling the output of R/3 report in a web page is possible through internet. You should be able to enable it by means of writing a BAPI with correct export and import parameters. If you spell out your exact requirement to a developer, he can develop this easily.
You can even enable the user to run this report from portal itself. You can create selection screens in webpage similar to the ones in SAP. You can specifiy the import parameters for each screen. Based on teh selection criteria in the webpage, the details are passed on to SAP and the result of the report can again be passed to the web page using the BAPI with proper export parameter.
As I already told you, please consult the technical consultant. He will enable it easily.
We have done lot of such reports for a custom made portal.
Hope this helps.
You can reward if this helps.

Similar Messages

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

  • Nodes statement in payroll in SAP ABAP hr  Report

    hi,
      i am working in sap abap hr report for payroll.i am using nodes statement in that report.it is showing error that ""PERNR" is not a node of the logical database __S".how can i solve this error.in this report.          
    NODES pernr .
    INFOTYPES: 0000, 0001, 2001.
    TABLES: t554s, pcl1, pcl2.
    INCLUDE rpclst00.
    INCLUDE rpc2rx09.                      "Payroll results datadefns-Intl.
    INCLUDE rpc2rxx0.                      "Payroll results datadefns-Intl.
    INCLUDE rpc2rgg0.                      "Payroll results datadefns-GB
    INCLUDE rpcfdcg0.                      "Payroll results datadefns-GB
    INCLUDE rpcdatg0.
    INCLUDE rpc2cd00.                      "Cluster Directory defns.
    INCLUDE rpc2ps00.                      "Cluster: Generierte Schematas
    INCLUDE rpc2pt00.
    INCLUDE rpcfdc10.
    INCLUDE rpcfdc00.
    INCLUDE rpppxd00.
    INCLUDE rpppxd10.
    INCLUDE rpcfvp09.
    INCLUDE rpcfvpg0.
    INCLUDE rpppxm00.
    TYPES: BEGIN OF t_salrate,
        seqnr    TYPE pc261-seqnr,
        begda    TYPE p2001-begda,
        endda    TYPE p2001-endda,
        split(2) TYPE c,
        val      TYPE p DECIMALS 2,
       END OF t_salrate.
    DATA: it_salrate TYPE STANDARD TABLE OF t_salrate INITIAL SIZE 0,
          wa_salrate TYPE t_salrate.
    *Selection screen
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: so_awart FOR p2001-awart.
    SELECTION-SCREEN END OF BLOCK block1.
    *START-OF-SELECTION.
    START-OF-SELECTION.
    GET pernr.
    get payroll results data
      rp-init-buffer.
      CLEAR rgdir. REFRESH rgdir.
      CLEAR rt. REFRESH rt.
      CLEAR: rx-key.
    set key to current pernr
      MOVE pernr-pernr(8) TO cd-key-pernr.
    retrieves payroll results for specific pernr(personnel number)
      rp-imp-c2-cd.
      IF rp-imp-cd-subrc = 0.                                "rgdir success
        rx-key-pernr = pernr-pernr.
        SORT rgdir BY seqnr ASCENDING.
        CLEAR rgdir.
      ENDIF.
      SORT rgdir BY fpbeg fpend ASCENDING seqnr DESCENDING.
    RGDIR the table where all payroll results periods are stored
      LOOP AT rgdir WHERE  abkrs IN pnpabkrs        "pay area
                      AND  srtza EQ 'A'
                      AND  void  NE 'V'.
        IF sy-subrc NE 0.
        set key to specific payroll results period(current RGDIR loop pass)
          UNPACK rgdir-seqnr   TO   rx-key-seqno.
        Retrieves data for specific payroll results period (current RGDIR
        loop pass)
          rp-imp-c2-rg.
        Loop at wpbp data for specific payroll results period
          LOOP AT wpbp.
            wa_salrate-seqnr = rgdir-seqnr.
            wa_salrate-begda = wpbp-begda.
            wa_salrate-endda = wpbp-endda.
            wa_salrate-split = wpbp-apznr.
          loop at rt data for specific payroll results period
            LOOP AT rt WHERE lgart EQ '/010' AND             "wage type
                             apznr EQ wpbp-apznr.            "payroll split
              wa_salrate-val = ( rt-betpe * ( wpbp-adivi / wpbp-kdivi ) ).
              APPEND wa_salrate TO it_salrate.
            ENDLOOP.
          ENDLOOP.
        Process BT table
          LOOP AT BT.
          ENDLOOP.
        Process NIPAY table
          LOOP AT NIPAY.
          ENDLOOP.
        etc................
        ENDIF.
      ENDLOOP.
    *END-OF-SELECTION.
    END-OF-SELECTION.

    Hi,
    Have you put a Logical Database in the attributes of the program that you have created ?
    Regards,
    Samson Rodrigues.

  • Report for time log on detail for each employees in SAP ABAP-HR report

    hi experts,
          please help me .how to create a report for time log on detail for each employees in SAP ABAP-HR report.please help me.
                                                      thank you

    Hi,
    For Time Management Infotypes , If you want to read the data using macro you need to use the Macro called RP_READ_ALL_TIME_ITY
    Example:
    DATA: BEGDA LIKE P2001-BEGDA, ENDDA LIKE P2001-ENDDA.
       INFOTYPES:  0000, 0001, 0002, ...
                         2001 MODE N, 2002 MODE N, ...
         GET PERNR.
       BEGDA = '19900101'. ENDDA = '19900131'.
       RP_READ_ALL_TIME_ITY BEGDA ENDDA.
       IF PNP-SW-AUTH-SKIPPED-RECORD NE '0'.
          WRITE: / 'Authorization for time data missing'.
          WRITE: / 'for personnel number', PERNR-PERNR. REJECT.
       ENDIF.

  • MATMAS01 IDOC not reaching to SAP XI via report program.

    Dear Experts,
    WE are facing small challenge.
    I searched on SDN on scenarios: IDOC not reaching to SAP XI. But could not find exact solution t oour scenario.
    Problem:
    MATMAS01 IDOC is not reaching to SAP XI via report program and is in status of 03 on SAP system. And there are not entries under SM58.
    Under SAP XI system IDOC entry is not reflecting under IDX5 transaction, I tried to delete meta data of MATMAS01 thru IDX1 and uploaded again but still IDOC is not reaching to SAP XI.
    The strange is that MATMS01 IDOC is reaching to XI via WE19 test tool. So PORT and RFC destination settings betweeen R3 and XI is also correct.
    What could be the wrong ?
    Thanks
    Divyesh

    When sending Idoc from R/3,
    Settings at R/3
    create one port at WE21,
    Create Partner Profile for Outbound Message type in WE20.
    settings at XI
    Create one port in IDX1
    Import Matadata in IDX2.
    Create complete scenario in ESR for Idoc sender, also import IDoc in Imported Objects.
    Check these settings & send test idoc using WE19.

  • SAP CRM Interactive Reports in Interaction Center

    Hi
    I am trying to use SAP CRM Interactive reports. I am aware that we don't need a separate  BW serve for it. Do we need a separate local BI client or can we just use them through the IC_MANAGER Role?
    What are the settings to enable interactive reports?
    How can I create Interactive reports through the Analytics role?
    All help is greatfully appreciated.
    Thanks
    Tarang

    Take a look at  [SAP Help Topic 'CRM Interactive Reports'|http://help.sap.com/saphelp_crm70/helpdata/en/61/553f78fc3c48c894c082d0fb23ef0f/frameset.htm]
    Also you can refer to best practice building block [C41: CRM Interactive Reporting|http://help.sap.com/bp_crm70/BBLibrary/HTML/C41_EN_DE.htm].

  • SAP Record-to-Report in SAP FI

    Hi SAP Gurus,
    I want the details of SAP Record-to-Report and any configuration steps also.
    Help me ASAP.
    Regards
    Shruthi

    Bashir,
    Report to Report Interface doc
    This is called "opendocument", which is a special facility within the software that allows you to build a hyperlink on a value in the "parent" report, then click on that link and it passes a response to the "child" report that would be prompting for the same.  Once the parameter is passed the "child" report appears.  Depending on the version (XI R2 or XI 3) determines how the hyperlink is built.  Please refer to the appropriate documentation for the version you are working under for the correct syntax/workflow to create the hyperlink.
    Thanks,
    John

  • How to Include JAVA script code in SAP BI7 web Reporting?

    How to Include JAVA script code in SAP BI7 web Reporting?

    In nw2004s there is a new web item called "Script" web item which lets you add javascript code. When you add javascript code in this web item, you don't need the opening and closing <script> tags...
    Hope it Helps
    Chetan
    @CP..

  • Save view button in SAP BW Query Report view

    Dear all,
    When SAP BW Query report iview is called in portal, u will get Save view, Bookmark, variableSreen...etc buttons.. When u click on saveview button...it will ask u to save as a view of that report with specfic name.
    My question is, where it will get stored.?
    If u give the BEx analyzer for users, u will be able to see the saved views.....but i dont want to give BEx analyzer to the enduser...
    Kindly suggest me
    Rgds
    Pradeep
    Message was edited by: Pradeep Reddy
    Message was edited by: Pradeep Reddy

    I hava the same doubt. Other portal web  has a "Open View" link button, how can i config it?

  • SAP Executive HR Reporting rapid-deployment solution

    Hi,
    I am trying to install the SAP Executive HR Reporting rapid-deployment solution, but I can only find the Configuration Guides and install files to the Solution Manager in the SAP Software download center.
    What I can't find is the .lcmbiar file with the pre-configured dashboards. Can anyone in here help me?
    Br
    Martin

    Hello, Martin,
    We are facing the same problem, did you manage to find anything?

  • SAP HR Headcount Reporting

    Hi Experts,
    We are consolidating our system and looking for optimal ways to identify the correct headcounts.
    SAP provides standard reports S_PH9_46000219 for headcount. Can someone help me in identifying what is considered as a headcount from SAP standard point of view. I know different organizations may have different criteria for calculating headcount but I'm primarily interested in standard behavior. Accordingly we will decide if we can make use of this standard report.
    Thanks & Regard,
    Ravi

    Hi Ravi,
    I found an interesting read on this report. Sharing link with you. Hope this will help!!!
    http://scn.sap.com/community/erp/hcm/blog/2013/04/04/headcount-reporting-as-easy-as-one-two-three
    Regards,
    Jitendra

  • How to activate SAP Visual Composer Reporting on ABAP Side

    Hello,
    How can we activate SAP Visual Composer Reporting on ABAP Side in ECC 6?
    It is not in BI or in Portal.
    And I have some problem to find documentation about it.
    Thank you a lot!
    Manu

    Hi Manish, Is not posible to migrate iviews, you need to do a new deploy in the new server.
    Regards.
    Ignacio.

  • SAP User Audit Report

    Hi Expert,
    I want to download SAP user audit report through USMM.
    but whenever i run USMM and click on system measurement its goes on background job.
    I need this report in PDF format. plz help 

    Hi Kumar
    1.  Once you’re all system measurement are getting over collect those data in to one system.
           Refer the PPT 's which provided the steps
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&cad=rja&uact=8&ved=0CC8QFjAD&url=https%3A%2F%2Fsupport.s…
    2 Transaction code  LAW perform a consolidation of user records and then send the information to SAP direct or email
    SAP Library - License Administration Workbench
    BR
    SS

  • SAP Report Painter - SAP tables for report items and hierarchy

    Hello,
    can you pls. help me with an information about the list of SAP tables for Report Painter, particularly the tables where the report items/positions and report hierarchy are stored?
    for example, for the Report Writer report items and report hierarchy can be found in T8* tables.
    What are these tables for Report Painter?
    thank you in advance for any info.
    Regards,
    Jasminka
    Edited by: Jasminka Vlahovic on Dec 29, 2010 8:53 PM

    Hi  Jasminika ,
    Could you please share with me those tables names where report items  and hierarchy are saved
    Regards
    Neeraj

  • Advantages of EP over SAP BI Web Reporting

    Dear Experts
    Can you please share your inputs on Advantages of EP over SAP BI Web Reporting?
    Appreciate if you could share any presentations or documents on this.
    Thank you in advance.
    Best Regards
    PKC

    Hi,
    They are absolutely different environments. With EP, you can develop WebDynpro Applications, using ABAP or Java, integrate Internet Service, develop applications with Visual Composer, ... It's much more than a reporting environment. You can integrate BI reports on EP, using iviews portal components.
    Look these threads:
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/6ee85d99506fcfe10000000a1553f6/frameset.htm
    Hope this helps,
    Ivá

  • Is there any SAP standard HUM report

    Hi Guys
    Is there any SAP standard HUM report
    which can have the fields like Contents of HU field and HU identification2 field
    Please help
    Thanks in advance

    HI
    Run T code HUMO

Maybe you are looking for

  • Bug in Oracle Forms 9i triggers

    I've found a bug in oracle forms 9i. It happens when you have a select query inside a when-validate-item trigger and in that query you opt to show an alert when the query has encountered an exception... When that trigger is fired, the alert will show

  • Boot Camp Black Screen

    Hi, I recently tried to use boot camp on a mac pro (MacPro2,1) and got the windows support files from a 3rd party website and put the contents of the dmg onto a thumb drive and plugged it in and inserted the windows 7 disc, ran boot camp assistant an

  • Why do I depend on a carrier for 10.2.1 update if I bought the phone from an electronics shop, unlocked

    I am mad on Blackberry for this, because I don't undestand why ! I bought the my phone, a Z10 from an electronics shop, so it is unlocked and not dependable on any carrier, and I paid premium. The first time I turned on the phone, BB Link did update

  • How to create desktop application for simple server program using netbeans?

    Hi,can anyone help me on this one?? I'm am very new to java,and I already trying different example program to create desktop applications for simple server program but it's not working. This is the main program for the simple server. import java.io.*

  • Internal WLAN vs Guest WLAN

    Hello I have a Cisco AIR-CT5508-K9 running revision 7. Can anyone explain to me the differences between a guest type WLAN and a WLAN type WLAN please? I have searched a fair bit but can't actually find an explanation. Also, can any one please let me