Publishing a Report in the SAP Portal

Hi,
I am able to create a report using Web Application Designer. I am also able to publish it. Once logging into SAP BW, I can see a shortcut of my web report in the SAP Menu. When I click on this report, it redirects me to a site, opening my web browser automatically, and opening a link to my created report.
My question is: Is there a general site wherein I can log in and access my report? I want users to access a single link and choose their reports from there; instead of them logging into SAP BW, and clicking on the shortcut to access the report
My follow up question is: the link to my report appears to be a long link. Can I change the link to my report to make it more easier to memorize for my users?
I am looking forward to your reply experts!
Regards
Ramon

Hi,
If u have an access to the portal u cn directly log on to the portal and there u can executer the reports which are assigned to u.
http://help.sap.com/saphelp_nw04/helpdata/en/a3/7b583c2439e66fe10000000a114084/content.htm
Hope this information helps u........
Assigning Points is the way of saying Thanks in SDN
Regards
Ramakrishna Kamurthy

Similar Messages

  • How to add a report into the SAP-SCRIPT .using PERFORM ......ENDPERFORM

    My question is that How to add a report into the SAP-SCRIPT .
    by using PERFORM ......ENDPERFORM
    I don't know how to used it .

    Hi Sandeep,
    Please check this link
    http://help.sap.com/saphelp_40b/helpdata/en/d1/803279454211d189710000e8322d00/content.htm
    http://www.allinterview.com/showanswers/37425.html
    Calling ABAP Subroutines: PERFORM
    You can use the PERFORM command to call an ABAP subroutine (form) from any program, subject to the normal ABAP runtime authorization checking. You can use such calls to subroutines for carrying out calculations, for obtaining data from the database that is needed at display or print time, for formatting data, and so on.
    PERFORM commands, like all control commands, are executed when a document is formatted for display or printing. Communication between a subroutine that you call and the document is by way of symbols whose values are set in the subroutine.
    Syntax in a form window:
    /: PERFORM <form> IN PROGRAM <prog>
    /: USING &INVAR1&
    /: USING &INVAR2&
    /: CHANGING &OUTVAR1&
    /: CHANGING &OUTVAR2&
    /: ENDPERFORM
    INVAR1 and INVAR2 are variable symbols and may be of any of the four SAPscript symbol types.
    OUTVAR1 and OUTVAR2 are local text symbols and must therefore be character strings.
    The ABAP subroutine called via the command line stated above must be defined in the ABAP report prog as follows:
    FORM <form> TABLES IN_TAB STRUCTURE ITCSY
    OUT_TAB STRUCTURE ITCSY.
    ENDFORM.
    The values of the SAPscript symbols passed with /: USING... are now stored in the internal table IN_TAB . Note that the system passes the values as character string to the subroutine, since the field Feld VALUE in structure ITCSY has the domain TDSYMVALUE (CHAR 80). See the example below on how to access the variables.
    The internal table OUT_TAB contains names and values of the CHANGING parameters in the PERFORM statement. These parameters are local text symbols, that is, character fields. See the example below on how to return the variables within the subroutine.
    From within a SAPscript form, a subroutine GET_BARCODE in the ABAP program QCJPERFO is called. Then the simple barcode contained there (u2018First pageu2019, u2018Next pageu2019, u2018Last pageu2019) is printed as local variable symbol.
    Definition in the SAPscript form:
    /: PERFORM GET_BARCODE IN PROGRAM QCJPERFO
    /: USING &PAGE&
    /: USING &NEXTPAGE&
    /: CHANGING &BARCODE&
    /: ENDPERFORM
    / &BARCODE&
    Coding of the calling ABAP program:
    REPORT QCJPERFO.
    FORM GET_BARCODE TABLES IN_PAR STUCTURE ITCSY
    OUT_PAR STRUCTURE ITCSY.
    DATA: PAGNUM LIKE SY-TABIX, "page number
    NEXTPAGE LIKE SY-TABIX. "number of next page
    READ TABLE IN_PAR WITH KEY u2018PAGEu2019.
    CHECK SY-SUBRC = 0.
    PAGNUM = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018NEXTPAGEu2019.
    CHECK SY-SUBRC = 0.
    NEXTPAGE = IN_PAR-VALUE.
    READ TABLE IN_PAR WITH KEY u2018BARCODEu2019.
    CHECK SY-SUBRC = 0.
    IF PAGNUM = 1.
    OUT_PAR-VALUE = u2018|u2019. "First page
    ELSE.
    OUT_PAR-VALUE = u2018||u2019. "Next page
    ENDIF.
    IF NEXTPAGE = 0.
    OUT_PAR-VALUE+2 = u2018Lu2019. "Flag: last page
    ENDIF.
    MODIFY OUT_PAR INDEX SY-TABIX.
    ENDFORM.
    Best regards,
    raam

  • I Published a report on the report server but it's not showing in the internal application we use to access reports

    Hi, 
    I Published a report on the report server but it's not showing in the internal application we use to access reports. The name of the application we use is called MAMA and this application has access to all the reports on the SQL report server. My email is
    [email protected] my cell phone number is 201-888-7952. 
    Thanks. 

    Hi Roger,
    Based on my understanding, you publish a report on the report server. When you access reports with internal application, the report doesn’t display, right?
    In your scenario, since you mentioned you have published the report to report server, please go to report manager, check if you can see the published report and open the report properly. If the published report is displayed on report manager, it should not
    be the issue in Reporting Services. In this scenario, since the MAMA application has established connection with on report server, it may not update items on report server after you publish your report onto report server. So please try to “refresh” in MAMA
    or reconnect the report server. If issue persists, I suggest you contact the MAMA application vendor to get some more effective advices.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • How to  include a report  into the  SAP-SCRIPT

    plz tell me 
    How to  include a report  into the  SAP-SCRIPT
    ASAP

    creat a z report like this....................
    REPORT  zmmgl_picklist1.
    TABLES : likp,ltap,ltak.
    data : lv_NUM1 type c .
    data : lv_NUM type c.
    *&      Form  get_data1
          text
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data1 TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
    READ TABLE in_data WITH KEY name = 'LTAP-VBELN'.
    lv_NUM = lv_NUM1 + 1.
    out_data-name = 'lv_NUM'.
      out_data-value = lv_NUM .
    APPEND out_data.
    endform.
    *&      Form  get_data
          This form is to read  details from  LIKP    *
         -->IN_DATA    text
         -->OUT_DATA   text
    FORM get_data TABLES in_data STRUCTURE  itcsy
                         out_data STRUCTURE itcsy.
      READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single bldat from likp into likp-bldat where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-BLDAT'.
      out_data-value = likp-bldat.
      APPEND out_data.
       READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single vstel from likp into likp-vstel where lgnum = ltak-lgnum .
      out_data-name = 'LIKP-VSTEL'.
      out_data-value = likp-vstel.
      APPEND out_data.
    READ TABLE in_data WITH KEY name = 'LTAK-VBELN'.
      Select single kunnr from likp into likp-kunnr where lgnum = ltap-lgnum.
      out_data-name = 'LIKP-KUNNR'.
      out_data-value = likp-kunnr.
      APPEND out_data.
    ENDFORM.                    "get_data.
    after this go to the script editor......
    /: perform get_data in program zmmgl_picklist1.
    /: using &ltap-vbeln&                 (Reference field.this field          should be there in both program and script.....)
    /:changing &likp-bldat&         
    /:changing &likp-vstel&
    /:changing &likp-kunnr&
    \[removed by moderator\]
    Regards
    Anbu
    Edited by: Jan Stallkamp on Jun 10, 2008 2:26 PM

  • Import and export MDM with the SAP Portal

    Hi,
    Would you have any clue on how to handle import and export from the SAP portal ?
    I need your help because I haven't found any standard iView to perform these functions
    The only information i got were some explanations on WebDynpro Java iViews using events to export from the Portal.
    Thank you in advance

    Hi,
    MDM iViews are only meant to perform MDM Data Manager operations but on limited basis. EP-MDM scenario has been designed for end users only which should not allow to perform complex data manager operations and they need not install MDM Clients.
    Thats why importing and exporting functionalities are not possible in standard MDM iviews.
    Regards,
    Jitesh Talreja

  • Can we release a report in the SAP BOR ?

    How to release a report in the SAP BOR ?
    tell me the steps.

    Hi,
    The report you get in BOR is accessible through SE38 also. You can work with it as usual reports.
    Regards,
    Renjith Michael.

  • Publish Crystal Reports to the web

    I have to see about using Microsoft Services to publish Crystal Reports to the web.One method would be to use Visual Studio.
    What are the ways in which to publish Crystal Reports to the web, besides this Visual Studio?

    You can use Crystal Reports Server, Edge or BusinessObjects Enterprise.  You can also use www.crystalreports.com

  • How to configure GB P60s in the SAP Portal?

    How to configure GB P60s in the SAP Portal, so that they can be viewed and printed/reprinted by the employee themeselves? Will HMRC accept P60s printed on any stationeries? Also, Client does not want employee address to be available in the address section, but just the office location.

    Hello
    Please refer SAP note 1542870 -Electronic P60 ,where  HMRC have given employers the option of providing an electronic P60 to their employees.
    Please let us know incase you know any further information.
    Thanks and Kind Regards
    Ramana

  • Can we achieve SSO in the SAP Portal without a third party tool

    Can we achieve SSO in the SAP Portal without a third party such as Netegrity?

    Kirk,
    Sorry I misunderstood what you were trying to setup. 
    If you want to connect the Portal to a Non-SAP Application then I believe that you would need to use a third party tool like Netegrity Siteminder.
    We have a portal that is protected by Siteminder and then we have a .NET application that is also protected by Siteminder and SSO is setup between the two since Siteminder is used.
    Hope that helps,
    Keith

  • TIME on ESS/MSS with the SAP Portal, release ERP2005 ECC6.

    Hello,
    I need to implement TIME (Leave request) on ESS/MSS with the SAP Portal, release ERP2005 ECC6.
    Any informations about the customizing for a proof of concept would be appreciated.
    All the back-end (R/3) as allready been customized.
    Thanks for your responses.
    Olivier

    Hello,
    If you already have all the templates and such configured then its easy. We don't have ESS and only one MSS scenario. However we support the web environment via BSP HAP_DOCUMENT. You can include our list pages in an Iview and assign that to the ESS or MSS scenario in the portal.
    They also run stand alone, so you can test it as well without configuring the portal.
    See also <a href="/people/sap.user72/blog/2007/02/20/objective-setting-appraisals-the-web-environment bloggy</a> on OSA and the web Environment, especially the last part will be of interest for you.
    Regards and Groetjes,
    Maurice

  • How to publish an App to the SAP Store

    Is there a presentation that outlines the steps to publish an App to the SAP Store?
    I searched and found this wiki page, which has the request template and a good high-level overview:
    http://wiki.sdn.sap.com/wiki/x/lgMjDg

    Hello Peter,
    You might also find this process description interesting: [Lifecycle Management|https://my020062.sapbydesign.com/sap/a1s/cd/wkt/doc/ktp/Products/A1S_PDI/GettingStarted/ESS_PROC_LCMScalableSolutions.xml?ptc=text%2fhtml&prof=X&COMPONENT=A1S_PDI&INDUSTRY=&LANGUAGE=en&REGION=&RELEASE=300&TASK=CR_VIEW].
    You can find it in the [SAP Business ByDesign Studio Library |https://my020062.sapbydesign.com/sap/ap/ui/repository/SAP_BYD_WEKTRA/CP/sapLSUIContentPlayerTestPage.html?manifest=067D03A7602B1D490899DF46B5082089&COMPONENT=A1S_PDI&RELEASE=300&LANGUAGE=en&REGION=&INDUSTRY=&TASK=CR_VIEW&sap-language=EN] documentation (https://www.sme.sap.com, under Community u2192 Wiki u2192 Categories: SAP Business ByDesign Studio  u2192 Topics in Detail).

  • How to publish crystal report designed using SAP Add-on toolbar

    we have installed the crystal report designer V10 and the SAP add-on on the desktop.
    we have designed a formatted report in crystal report designer using an existing BW report that was created using Bex query designer. After this we saved the crystal report back in BW to a role.
    We have not published the report to crystal enterprise server, since the connection to same is not in place.
    We would like to know how to publish this report in Enterprise portal ?
    Can we bypass publishing the report to crystal enterprise server and publish the report on browser or through EP ?

    hi
    Check on this help page if it can help you
    http://help.sap.com/saphelp_erp2004/helpdata/en/f1/0a569ae09411d2acb90000e829fbfe/frameset.htm
    REgards
    Alain

  • Issue with Crystal Report integration with SAP Portal

    Hi,
      Crystal Report using Crystal Reports 2008 trail version is created.This .rpt file is present on my desktop and I would like this report to be published on SAP Portal.Can anyone please let me know steps to do so?
    Regards,
    Madhu.

    You need to install SAP integration kit. There are some configurations you need to do.Please go through the below URLs for more details:
    [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00ee3b2-5283-2b10-f1bf-8c6413e0898f;jsessionid=(J2EE3414800)ID0872910550DB10406683879540656926End]
    [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/004aacbb-4983-2b10-8da7-cdff5dcbb948;jsessionid=(J2EE3414800)ID0872910550DB10406683879540656926End]
    Publishing:
    [http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414800)ID0872910550DB10406683879540656926End?blog=/pub/wlg/11144]
    [http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414800)ID0872910550DB10406683879540656926End?blog=/pub/wlg/11146]
    [http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3414800)ID0872910550DB10406683879540656926End?blog=/pub/wlg/11147]
    Hope this helps!!!

  • How to open Crystal Report from the SAP GUI ?

    Hi experts,
        We have developed some reports for our ECC 6.0 system by using Crystal Report 2008 and SAP integration kit , these reports are published to BO edge 3.1 server.  To view the report, our user have to open IE and login Infoview first.
       For convenience, we want to open Crystal report from SAPGUI directly without login BOE, How can we do it? 
    Thanks.

    Hi
    please take a look here
    Crystal Reports
    Regards,
    STratos

  • How to show a crystal report in a SAP Portal?

    Hi
    I am trying to show a crystal report in SAP Portal. I did a crystal enterprise report iview, and in SAP portal I got this error when I trying to show it:
    404 Missing Page
    The page you requested is not available on this web server for one of the following reasons:
    The address you typed may be inaccurate. For example, a character was missing. To correct this issue, double-check the address and make sure that it is spelled correctly.
    If you clicked on a link or button, the web application that generates this link may be experiencing a temporary problem. Close and restart your browser and try the link again at a later time.
    Then I test ce_url service, and got this error:
    Service cannot be reached
    What has happened?
    URL http://portalsap:8002/sap/bw/sap-client=100_cmsname=ipmachinebo call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BTP with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:mars_BTP_02-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    I reviewed a Ingo's blog, and I have the configuration like he mentioned. With this handler
    /CRYSTAL/CL_BW_HTTP_HANDLER
    In http tab, I have
    Protocol: http
    Web server host and port: ipmachinebo:8080
    Path: SAP
    Viewer application: reportView.do
    can someone help me please?
    Regards,
    Paulina

    Hi Ingo
    Thank you for your response,
    I changed the 2 items, but I got this error when I executed the report in portal
    HTTP Status 400 - Invalid path /viewreport was requested
    type Status report
    message Invalid path /viewreport was requested
    description The request sent by the client was syntactically incorrect (Invalid path /viewreport was requested).
    And  when I tested the ce_url service I got this error:
    Service cannot be reached
    What has happened?
    URL http://mars.penitus.com:8002/sap/bw/sap-client=100_cmsname=192.168.0.35 call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BTP with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:mars_BTP_02-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    Regards,
    Paulina

Maybe you are looking for

  • Buy my problem of camels Store Lee games possible solution for me my problem?

    Buy my problem of camels Store Lee games possible solution for me my problem?

  • XSL and string truncation

    Hello i am creating a XSL to transform some XML information into a CiscoIPPhoneMarkupLanguage document (CIPML). CIPML's schema restricts several element's lenght. For instance, a CiscoIPPhoneMenu/MenuItem/Name must be no more than 64 characters long.

  • Missing account description

    Hello everyone, I have a question in regards to FDM & ERPi. I try to have the account description loaded into FDM, we lost it since we use ERPI, before we used trial balance in flat file and the source account description appeared in FDM. In my origi

  • DSL+No STATIC IP: I'm confused HELP

    I know this has been answered I am sure but, I can't seem to find the right post.... If I have a MacPro laptop and I am traveling with it and I want to connect to my home Mac G5 & G4's to control them and share files, what EXACTLY do I have to do IF.

  • 10.4.11 client don't authenticate on replica server 10.5

    We' ve got a 10.5 OD Master and a 10.5 OD Replica. 10.5 Clients (mobile) can log on on master, on the replica (if the master is down) and also locally (if all servers are down) 10.4 Clients (mobile) can log on on master and locally (if all servers ar