BODS Management Console link in WEBI Report

Hi All,
Need help, can we create a link for BODS Management Console in WEBI report ? Is it possible? I created one but it is not working for me. Ideally, when we click on the link, it should take the user to the login page of Management Console but that is not happening.
Please suggest.
Thanks,
Purnima

It worked Sathish. Some server issue earlier I guess. Thanks Much .
Have a few questions :
1. Is it possible to create a link, in WEBI, to a document (.txt file) which is stored on BODS server?
2. Does BODS store error and warning description in BODS system tables? I know that it stores error log file path but I am not sure if it stores error description anywhere.
3. AL_SCHED_INFO table contains Job Scheduling information. But does this table contain the next scheduled time anywhere in this table?
Please help.
Thanks Much,
Purnima

Similar Messages

  • How to link a webi report from crystal report

    Hello everyone,
                          I am trying to link a webi report from crystal XI.
    In my crosstab, the data is divided grouped by periods.
    So for every country it shows data along a period of time.
    The details for the value of the crosstab are in a webi report.I am trying to pass the period value and country name as a prompt from crystal to webi but it is not picking them correctly.
    can we pass prompts from a crystal report to a webi url??

    Try to use OpenDoc URL to pass the parameter values from crystal to webi. To use OpenDoc URL you need to publish these reports in server. See the following example
    http://server name:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sType=wid&sPath=[folder name]&sDocName=Child&iDocID=4804&lsSEnter+State:=California
    Regards,
    Raghavendra
    Edited by: Raghavendra Gadhamsetty on Nov 14, 2008 8:51 PM

  • Document/hyper link among webi reports

    Hi Gurus,
    I am trying to link webi documents,
    I hav 2 options
    1.)hyperlink and
    In hyper link I am using this link but i am not able open the target document..
    https://bodev.pg.com/BOE/OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=ATjA2dUY7u1Hldh9n6imWmM&lsSR=[Run Date]
    2.) document link
    I am  not able to see the document link tab  in report elements (as in attachments). I would like to know how to view that option
    regards
    mahi

    Hello Victor,
    I am able to apply doc linking on horizontal/vertical  tab successfully but I want to apply doc linking on crosstab..
    And the linking should be row wise linking.. I have 7 rows in my main rep where when i click on each row it should get navigated to respective detailed report.
    Please advice me..
    thanks
    mahi
    Document/hyper link among webi reports 

  • BODS Management console : Adapter configuration Error

    Hi all,
    I have created an custom adapter.But while configuring it in BODS management console it's giving error.
    Error :
    Could not find element '' in file 'C:\ProgramData\SAP BusinessObjects\Data Services/adapters/install/Custom_adapter.xml'. Error while processing XML configuration files 'C:\ProgramData\SAP BusinessObjects\Data Services/adapters/config/templates/Custom_adapter.xml' or 'C:\ProgramData\SAP BusinessObjects\Data Services/adapters/install/Custom_adapter.xml'.
    I am not understanding what is the cause of this error.
    Please tell me why this error is coming...
    Please help me.

    Hello,
    How did you fix this issue?
    I am getting similar issue and not able to understand the reason behind the issue.
    Regards,Ashwin

  • Linking a webi report to xcelsius

    Hi,
    My requirement is, I want to link a webi report to xcelsious, once the user clicks the xcelsius report it should link tom webi report how I can do this.
    Please help.
    Regards
    Aflal

    Hi aflal,
    This is the answered Thread.
    Xcelsius drill down down to webi report
    I have tried this once. Its working fine.
    Thanks to vamsee,
    regards,
    Sriramvijay.R

  • Linking a WEBI report through hyperlink in a webpage using open document

    Hi All,
    I have a hyper link in a web page which when clicked should open a WEBI report. I created it using the open document feature.
    Once clicking on the link, InfoView login credential page is displayed. After logging in the report runs.
    My client does not want the login page to be displayed since most of the users does not remember their password (since SSO is implemented).
    He wants to bypass this login page so that most of the users can directly view the reports.
    Question:
    Is there a way to achieve this i.e without asking for login credentials or by passing this?
    Possibilities :
    1: To create ID's for all the people (which I think is not a feasible option in my project)
    2: Create a guest account with minimum privileges and share the password with all the users.
    Note:
    1: I use BO XI R 3.1.
    2: No SDK is installed to do any programming.
    Any suggestion are most welcome.
    Thanks in advance
    Shreyas

    Hi Shreyas,
    Manual Easy Way for doing the activity in SAP Business Objects 4.0:
    This method is useful if we have a special system account that we want everyone to use.
    You will notice that all we do is generate a logon token using the appropriate username, password and CMS variables. Then we append the token onto ivsLogonToken.
    Note: The numbers on the url after /BOE/portal represents the timestamp of the last patch or install.  You can put whatever you want under the number section and Business Objects will automatically redirect to the appropriate start.do
    Step I:
    Go to the SAP BusinessObjects\Tomcat6\webapps\BOE\WEB-INF\eclipse\plugins\webpath.InfoView directory and edit custom.jsp
    Step II:
    You can copy the contents from the custom.jsp that I’ve provided below to your custom.jsp.
    Cutom.JSP File
    <%@ page import="com.crystaldecisions.sdk.exception.SDKException" %>
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.crystaldecisions.sdk.occa.security.*"%>
    <%@ page import="java.net.*"%>
    <%@ page import="com.crystaldecisions.enterprise.*"%>
    <%@ page import="com.crystaldecisions.sdk.plugin.admin.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="com.businessobjects.webutil.Encoder" %>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <%
    //BO Session and redirect to Infoview
    IEnterpriseSession enterpriseSession;
    /* * Set Enterprise Logon credentials. */
    final String BO_CMS_NAME = "bi4server";
    final String BO_AUTH_TYPE = "secEnterprise";
    final String BO_USERNAME = "Daya";
    final String BO_PASSWORD = "admin@123";
    ILogonTokenMgr logonTokenMgr;
    String defaultToken = "";
    * Log onto Enterprise
    boolean loggedIn = true;
    try {
    //Create session token
    enterpriseSession = CrystalEnterprise.getSessionMgr().logon(Daya,admin@123, BI4SERVER,Enterprise);
    logonTokenMgr = enterpriseSession.getLogonTokenMgr();
    defaultToken = logonTokenMgr.createWCAToken("", 20, 1);
    //Redirect with token attached to the ivsLogonToken parameter
    response.sendRedirect("http://"+BO_CMS_NAME+":8080/BOE/portal/1205291547/InfoView/logon/start.do?ivsLogonToken="+Encoder.encodeURL(defaultToken));
    catch (Exception error)
    loggedIn = false;
    out.println(error);
    %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    </body>
    </html>
    Edit the username,Password & BOBJ Server Name'in BOLD Letter
    Step III:
    Stop tomcat, then delete contents in the SAP BusinessObjects\Tomcat6\work directory.
    Then start tomcat again and the work directory will be regenerated with new code.
    Step IV:
    Trusted Authentication:
    Trusted Authentication is a component of Enterprise authentication that integrates with third-party single sign-on solutions, including Java Authentication and Authorization Service (JAAS). Applications
    that have established trust with the Central Management Server can use Trusted Authentication to allow users to log on without providing their passwords.
    This method is really cool because users don’t even have to know their passwords.  Basically with this method you can log into another system and if that system has the appropriate user name, you can pass it to the custom.jsp and then it will log you into BI Launchpad.
    In addition, you don’t need to create any java code for the enterprise token setup.
    Step V:
    In the CMC, go to Authentication, then select Enterprise.  Check Trusted Authentication is enabled, then click on New Shared Secret.  Finally download the shared secret key and keep it somewhere secure
    Step VI:
    Copy global.properties from <INSTALLDIR>\SAP BusinessObjects Enterprise XI 4.0\warfiles\webapps\BOE\WEB-INF\config\default into <INSTALLDIR>\SAP BusinessObjects Enterprise XI 4.0\warfiles\webapps\BOE\WEB-INF\config\custom.  Then using Notepad or another text editing utility, edit the following properties
    sso.enabled=true
    trusted.auth.user.retrieval=WEB_SESSION
    trusted.auth.user.param=UserName
    trusted.auth.shared.secret=<secret code from properties file you created in step 2>
    Step VII:
    Go to the SAP BusinessObjects\Tomcat6\webapps\BOE\WEB-INF\eclipse\plugins\webpath.InfoView directory and edit custom.jsp
    <\!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page language="java" contentType="text/html;charset=utf-8" %>
    <%
    //custom Java code
    request.getSession().setAttribute("MySecret","32efbfbd35efbfbdefbfbd4363efbfbdefbfbd694aefbfbdefbfbd227530efbfbd5742efbfbd13efbfbd2befbfbd1fefbfbdefbfbdefbfbdefbfbd4e49efbfbd41550cefbfbd15703619d8b8efbfbd6cefbfbdefbfbd57efbfbd0defbfbdefbfbdefbfbd0605efbfbd6dc59b2728efbfbd");
    request.getSession().setAttribute("UserName", "Daya");
    %>
    <html>
    <head>
    <title>Custom Entry Point</title>
    <script type="text/javascript">
    function goToLogonPage() {
    window.location = "logon.jsp";
    </script>
    </head>
    <body>
    <a href="javascript:goToLogonPage()">Click this to go to the logon page of BI launch pad</a>
    </body>
    Edit the username(Daya) variable
    Step VIII:
    Stop tomcat, then delete contents in the SAP BusinessObjects\Tomcat6\work directory.
    Then start tomcat again and the work directory will be regenerated with new code.
    Hope this help you as well.
    Thanks,
    Daya

  • Facing problem which starting a real time services BODS Management Console

    Hello All ,
    I am facing a issue while starting the real time services from managment console
    Error Log
    Log: error_10_05_2011.log 
    (12.2) 10-05-11 11:05:55 (E) (1700:2324) Unknown: SP(NewService2, INDRMD36Q2:3501):flowThread() could not start real time job (BODI-300101)
    List of congiurations done
    1) Access Server configured and able to ping as well
    2)Real time job create in BODS designer and can see that in management console
    Note :
    ETL tool : BODS
    DB : Oracle
    Any help is highly aprreciated
    Thanks,
    Rishi

    Rishi -
    I think below URL can help you for the same.
    https://wiki.sdn.sap.com/wiki/display/BOBJ/Settingupthe+Service
    thx
    Deep

  • Linking 2 WebI reports and passing values

    Hi All,
              I have an issue here.As I have 2 reports in WebI created and report1 will be a summary report and i have a object in report1   which is like a hyperlink like for eg 2001,2002,2003 and when i click on 2001  it should open up the report2 and give the Quarter,Q2,Q3,Q4.
    Regards
    Prashant

    Hi Prashant,
    U will have to use the concept of OpenDocument API.
    Following are the steps for your question/difficulty.
    1. Open a report in webi having an object year.
    2.Open another report and have the objects year and quarter.
    Type  the below link in the Formula toolbar. The syntax is as follows.
    ="<a href=http://Server Name/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sType=wid&sDocName=Name Of The Second Reprt Try save this without space&s&lsSEnterYear:="[Year]">"[Year]+"</a>"
    and in the properties window in the Read Cell Content As choose hyperlink.
    You will get exactly what your ver looking for.
    Hopefully this solves your problem.
    Regards,
    Bernard.
    Edited by: Florencio Sequeira on Jun 20, 2008 2:24 PM

  • [Forum FAQ] Configuration Manager Console shows nothing if you change SSRS to using SSL after Reporting Service Point is installed

    If the SSRS is changed to SSL mode and http binding is removed after Reporting Service Point is installed. The Configuration Manager Console shows nothing in Reporting Pane. After digging into this problem, the cause is that the SSRS information has not
    been updated in Configuration Manager Database. The following steps are taken for finding the root cause.
    1. After changing to SSL, the Reporting Service Point log shows the error as shown in Figure 1.
    The request failed with HTTP status 404: Not Found.
    (!) SRS not detected as running
    Failures reported during periodic health check by the SRS Server DB2.SCJIZHO.COM.
    Figure 1
    From the error, seems the cause was the Reporting Service Point detected a wrong port. We digged around in Registry and found the information is a Registry key named ReportServerUri at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\SRSRP. After changing the Report
    Server address to https. The error is gone as shown in Figure 2. But the issue remains, the Console still shows nothing. It is not a right direction.
    Figure 2
    2. Open the Console log file, it also shows some valuable information.
    instance of __ExtendedStatus
                    Operation = "ExecQuery";
                    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'PRI'";
                    ProviderName = "WinMgmt";
    \r\n
    [1, PID:3136][04/24/2014 01:46:00] :Property: 'LastModifiedTime'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)\r\nManagementException details:
    [52, PID:3136][05/11/2014 20:14:15] :[ReportProxy] - User-specified default Reporting Point [PRI.scjizho.com] could not be found, [DB2.scjizho.com] is now the default Reporting Point (Figure 3).
    Figure 3
    It seems the Console wants to access the old http site and it fails to get into the site for sure. Actually, the Site Configuration information is come from Site Control File and as we all know that ConfigMgr 2012 doesn’t store the Site Control file in the
    file system. However, it’s stored in the SQL database (as XML file). The XML file is stored in a view named vSMS_SC_SiteControlXML. This view is a read-only view. We cannot edit it directly. The related table stored the SSRS information for this view is SC_SysResUse_Property.
    Running the following query will list the SSRS address. We can see the address is still the old one. This is why the Console shows nothing.
    SELECT
    name,
    value2
    FROM dbo.SC_SysResUse_Property
    where name
    ='ReportServerUri'
    or name=
    'ReportManagerUri'
    Remarks:
    This article is just to let you know why the Console cannot show the Reports after changing to SSL mode. We do not intend to make you change the table in Database, if you want to change it, you will be at your own risk. The real solution to this situation
    is to reinstall your Reporting Service Point.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Ok, but how do you solve this problem? Does uninstalling the RP and adding it back solve this problem?
    http://www.enhansoft.com/

  • Link from BOBJ Webi report to CRM webUI screen

    Hi experts,
    I was wondering, if there's a way to create a link from Webi report (based on CRM data) to webUI content in CRM? For example, Webi report will have opportunity numbers. User will be able to click on the opportunity number and get to webUI screen where he could see opportunity details and maybe even modify it.
    Best regards,
    Vlad

    Hi,
    You can link Webi Document to webUI content in CRM with help of Hyperlink based on particular column then you need to parse the data.
    Once Parse button is clicked, it displays with the parts of the URL parsed into sections depending on parameters specified in OpenDocument URL.
    for more information kindly go through following document.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0daee1d-0e38-2d10-0c91-8bb4ab5aa266?QuickLink=index&overridelayout=true&47467978778722
    Best Regards,
    Pushkar Dhale

  • Link to Child Webi report from Parent Webi report

    Hi All,
    I have child link for webi report in my parent webi report.
    But, when i click on URL for child report, its again asking for logon credentials.
    Is there any way to avoid asking logon credentials, instead it should pick credentials from parent.
    Please reply.
    Thanks,
    Bhanu

    Hi
          If your link contains different host that is, after clicking the link if you want to redirect to another document with another BO server that time you have to supply credential (Login info of this server).
    Case of same server no need to supply credential.
    Thanks

  • Webi report publication with org unit personalization mapping

    Hi everyone,
    I have an HR Webi report whose source is a Bex query and is scheduled (published) weekly. The report is meant for managers so in the dynamic recipient report (another webi report) I have manager's name, email and org unit. Right now the bex query does not restrict by organizational unit, the filtering by unit is done in webi through the 0employee's org unit attribute. This works, each manager only sees data of her own employees.
    However, managers would like to see not only their direct people (employees belonging to her own org unit) but also submanagers, ie, managers of subordinate org units. I tried filtering through the org unit of 0ORGUNIT, not the employee's o.unit attribute, but that doesn't work. The same manager shows up multiple times in the report.
    Has anyone managed to publish a webi report (or Crystal if that's possible) that shows the chief hat's subhierarchy?
    thanks

    Hi Graham,
    The publication should work in the same way for a user or a group.
    Can you please elaborate on u201Cassigning a user to the groupu201D, I believe this is probably where you go wrong. 
    Please test same workflow I suggested yesterady, but instead of user, use the group:
    1. create the profile
    2. add the group to the profile
    3. assign the profile value to the group for that profile
    4. add the group to the publication as Recipient
    Does it work or not?  If so, then do as follow for the user and group:
    1. create the profile
    2. Add user and group to the profile
    3. assign the profile value to the user and group for that profile
    4. add the user and group to the publication as Recipient
    Please note that in the above steps, you donu2019t have to assign the user to the group.
    Regards,
    Jeff

  • Images as Hyperlinks in webi reports

    Hi,
    I’m trying to link two webi reports (summary through Details) through Open doc syntax using Images in a cell.
    We have a requirement to link two webi reports (summary through Detail) using buttons (like Back & email) as images which will be embedded in to the cell and made hyperlink.
    I found many articles on "Hyper linking on the images" between 2 webi reports (summary to detail) using open doc syntax which did not help much. So I am starting a new thread. 
    I’ve 2 scenarios happening, after the images being placed on the server - (…/usr/bobj/<installation Directory>/enterprise/images) –
    1st Scenario – Right click on the cell contents, make it read as “hyperlink” and set appearance to “boimg://image-name.png”
    Result: Image appears and there is no link. Cursor does not changes or no place to click.
    2nd Scenario – Read the image directly into Ahref tag as - <img src=\” boimg://image-name.png\”>
    Result: The link works perfectly fine. But, in the image place holder, a big “RED X” appears.
    The steps -
    - Placed a blank cell
    - Right click -> Appearance -> Image from Address:  boimg://image-name.png
    - Read contents as "Hyperlink" (at this point, tested the cell, image appears fine, but no link appears!)
    - Right Click on the same cell -> Document Link -> pass the values of the related objects -> Parse
    - Also Include the <img src=\” boimg://image-name.png\”> in the AHref tag generated by the system after open doc call
    - In the cell, both the image and the big RED X appears - image does not have a link and the big red X has link but no image. So basically nothing works!
    We are on BO 4.1 SP1.
    Experts please help!

    Hi Fahid,
    You can try the below steps which are pretty simple. It worked fine for me. For this I used an image object placed in ROOT directory of a web application server.
    1.
    Add a blank cell
    2.
    Right-click on the blank cell and select “Format cell”
    3.
    Under “General” specify Read content as “Hyperlink”
    4.
    Apply >> OK
    5.
    Right click on the cell >> "Edit Formula" >> Use the following formula
    ="<html><a href='http://localhost:8080' target='_blank'><img src = 'http://localhost:8080/sample.png' /></a></html>"
    Hope this helps.
    Regards,
    Niraj

  • Drill to webi report from a Linechart

    Hi Experts,
    We are showing regionwise no.of orders for each product in a line chart .
    My user want to drill down to next city level webi report for that selected region and product.
    If they click on any series or bubble on the line i have to pass those values to a webi report.
    My problem is how can i capture those selected values.I am anle to capture selected series (Product) but not the Category label(region).
    Any idea please share....
    Is it possible to drill like this?
    Thank you

    Hi Sri,
    You can drilldown to webi report using opendoc URL concept. Please refer below threads for details.
    [Linking a webi report to xcelsius;
    [http://www.forumtopics.com/busobj/viewtopic.php?p=623345]
    Hope it helps you.
    Regards,
    Nikhil Joy

  • Data services management console deployment on weblogic

    I have installed SAP installation platform services 4.1 sp2 without Tomcat server. I have deployed BI applications using Weblogic 11 and they are working fine.
    I have installed SAP data services on top of it. Installation runs fine.
    I am not able to find Data services management console link in the start menu.
    I think its not coming in the menu as tomcat is not installed. But isn't there a way where I can deploy management console on weblogic 11.
    Please help

    HI Arun Kumar
    Thanks for your reply.
    I checked the service Property and path to which it is executing it was correct and i didn't find any file call .conf in the Conf folder
    Can you please elaborate me where to check this, this is very much needed for my task.
    Thanks in advance
    Ajit

Maybe you are looking for

  • Can I create a new iFS schema by command line ?

    For creating a new iFS Schema you have to run ifsconfig and this is a GUI tool. Is there a way to specify all the parameters to this command by input file so that it can create the schema without popping up the GUI ? If yes how can one catch errors i

  • Best value for optimizer_mode

    In my production environment we have to move from Rule based optimizer to cost based optimizer . We work with oracle 10g but until now our application before run queries execute an alter session set optimizer_mode=rule. What is the best value for thi

  • Custom Filter for Date on UWL iview

    Hello Experts- I want to display previously approved tasks and current tasks in a UWL iview. As of now in the iview the taks which are displayed are the one which are pending. For this I am planning to add a custom filter to my UWL iview. Can anyone

  • How to establish communication between dynpro and Applet running in Portal

    Hello SDN, I have a problem with concept of my app and would be glad if You can help me.  -  I needed a graphics engine to draw a map during a dynpro runtime, and i made applet for it because dynpro don't offer suitable api. Map have to show some dat

  • Immediate feedback in drag & drop

    Hello - I am using the Drag and Drop Interaction Wizard in Captivate 7.  I have 5 targets and 5 dragable objects on my slide with each target having only one correct match. I would like to provide immediate feedback for the learner after each drag, i