Microsoft Reporting Services with BW

Hi,
I have posted it in a Reporting Services forum, but seems no one can answer it.
We use Microsoft Reporting Services as the front end, to render data extracted from BW 7.0. The communication between Reporting Services and BW is based on Web Services, XMLA. And the username/password used for the connection is saved at Reporting Services side. The connection is fine, and everything works. However, we have got an issue at BW side, that every time a query request creates a session in BW system, and the session is never expired! So after a period of time, the memory will run out and BW server is not able to accept any new request. We have to manully log out those sessions, and then the BW server becomes available again.
My question is how to set up the account in BW for Reporting Services request, so that it won't exhaust the server?
Thanks.

Just a quick addition.
by transaction SM04, what i found in bw system is that when a report is run from Reporting Services side, the BW system actually creates more than 10 sessions under the same user name, with type Plugin HTTP. And even after I close the request from the Reporting Services side, the sessions are still there until you manually log them out.
Shouldn't the session type RFC rather than Plugin HTTP?
Edited by: huaxianz on Jun 22, 2010 6:52 AM

Similar Messages

  • Integrating Microsoft Reporting Service with SAP running on SQL Server 2K5

    Hi All,
    I am new to SAP R3 and I need the help for Integrating Microsoft Business Intelligence Report Services with SAP R3 4.6 C running on SQL Server 2005? Also how Biztalk Adapter is use full for this process?
    Thanks in Advance

    Hello Madhav,
    you might want to post this to the "SAP on Windows" forum as well.
    Regards,
    Marc
    SAP Techology RIG

  • Implementing SQL Server Reporting Services with a Java EE Application

    Hi All,
    I need to find some tutorial on
    "Implementing SQL Server Reporting Services with a Java EE Application"
    for my j2EE application.
    Until now i have searched a lot of sites but have not any thing related to this topic.
    I am using apache axis along with SQL Server Report Manager for creating the sql server reports.
    I have done upto :
    Creating the webservice with the help of report manager.
    Now i want to connect it through my j2EE application and want to retrieve some data from that web service.
    I have got stuck on the following BOLD lines in my code .
    code:
    public CatalogItem[] getData(String res, String searchStr) throws RemoteException     {
                  ReportingService2005Soap port = null;
                  ReportingService2005Locator loc = new ReportingService2005Locator();
                  // Retrieve a port from the service locator
                  try {
                       port = loc.getReportingService2005Soap(new java.net.URL(res));
                  } catch (MalformedURLException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  } catch (ServiceException e) {
                       // TODO Auto-generated catch block
                       e.printStackTrace();
                  org.apache.axis.client.Stub stub = (org.apache.axis.client.Stub) port;
                  stub.setUsername("localhost\\Administrator");
                  stub.setPassword("servWIN@2007");
                  // Retrieve a port from the service locator
                  SearchCondition condition = new SearchCondition();
                  condition.setCondition(ConditionEnum.Contains);
                  condition.setName("Name");
                  if (searchStr != null)
                  condition.setValue(searchStr);
                  else
                  condition.setValue("");
        //           Create an array of SearchConditions which will contain our single search condition
                  SearchCondition[] conditions;
                  conditions = new SearchCondition[1];
                  conditions[0] = condition;
        //           Call the Web service with the appropriate CatalogItem[] returnedItems;
                  CatalogItem[] returnedItems = null;
                  port.findItems("foldername",BooleanOperatorEnum.Or, conditions);
                  return returnedItems;
             }i.e. while executing the findItems() method i got the following exception :
    System.Web.Services.Protocols.SoapException: The item '/reportingservices' cannot be found. ---> Microsoft.ReportingServices.Diagnostics.Utilities.ItemNotFoundException: The item '/reportingservices' cannot be found.
    at Microsoft.ReportingServices.Library.RSService.FindItems(String folder, String operation, SearchCondition[] properties)
    at Microsoft.ReportingServices.WebServer.ReportingService2005Impl.FindItems(String Folder, BooleanOperatorEnum BooleanOperator, SearchCondition[] Conditions, CatalogItem[]& Items)
    Any any body has any idea please help me.
    I need it urgently.
    Regards.

    The above example is mentioned in msdn virtual lab that teaches how to connect to reporting services from a j2ee application.
    I have done the same thing .. but i am not able to render the report programmatically .. if anybody knows pls let me know the solution.

  • Microsoft Reporting Services

    Hi
    We are using SQL 2005 as a database for PCM v12.1 and plan to upgrade to PCM v13 SP1.
    Has anybody using Microsoft Reporting Services for preparing reports ?
    could you please guide on the same ? How good it is ? Is it easy to prepare report (in comparison to Infomaker) ? (i know it can not be shown like infomaker report within CM)
    Please give your suggestions.

    I simply find infomaker a bit stiff and not that user friendly.
    examples of reports in a big summary:
    - sysadmin > all reports if something is wrong (like some custom fields are not filled in, or one person approved as another user, etc).
    - construction reports > field force (to trace or by site/project or by subcontractor history of workforce based on daily reports), some audit of new revisions of drawings, new transmittals etc
    - communication > Report of minutes of meeting to trace by responsible person from our team and/or contractor what are the current issues, if there are any new notices, any letters (which we barely use);
    - project review > each projects financial details - how much was contracted, changed, protocoled all in accordance to what was budgeted (on contract and/or items level);
    - management reports > status with KPIs of all projects with devision into cost splits and cost per net m2.
    what reports are you thinking of? Perhaps we could share some ideas.
    If migrating to Oracle you will just have to change the data sources and if you are using some custom views () you will have to change the way its generated. It shouldn't be a lot of work.

  • Use parameters in SQL Server reporting services with sharepoint lists

    I want to make report from sharepoint 2010 list and forms library in sql server reporting services.
    but also want to apply parameters.
    I tried but parameters but it is not working.
    How I can apply sharepoint lists parameters in sql server reporting services ?
    How to run or view report of sharepoint lists or form library in sqlserver reporting services with required parameters?

    Hi John,
    When we use SharePoint list as datasource in SSRS it has two method to add parameter. Suppose we have a dataset (DataSet1) get data from SharePoint list. Please refer to the methods below.
    Method 1: We can add parameter in the Query Designer dialog box to add parameter.
    Click “Add Filter” icon in the “Applied filters” dialog box in Query Designer.
    Select the corresponding field (Title), fill with specific conditions, and select Parameter option in the end of the row.
    Create a dataset (DataSet2) fill with Title field.
    Double click the parameter we create above, set the available values from DataSet2 field Title.
    (Note: In the situation, we are get the single-value parameter.)
    Method 2: It is a general method to add parameter in SSRS report.
     Create another dataset (DataSet2) in the report fill with Title field.
    Add a parameter (Title) get available values from DataSet2 Title field.
    Add filter in the DataSet1.
    (Note: This method, we can configure multi-values parameter.)
    Reference:
    http://technet.microsoft.com/en-us/library/aa337432(v=sql.105).aspx
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Using SQL reporting services with java

    how can i use Microsoft SQL Server reporting services with java? The idea is that we create the reports using Microsoft SQL Server reporting services. Then we have our web application where user will select one of those report, pass 0 or more arguments and then we will show the report.

    nobody is using Microsoft SQL Server reporting
    services with java?Found this in 0.01 seconds with Google http://www.javaworld.com/javaworld/jw-01-2005/jw-0110-sqlrs.html
    Handy tool that Google.

  • Microsoft Reporting Services portlets

    Hello Everyone
    We created some portlets that show some nice charts from Microsoft Reporting Services.
    The issue that we are having is the Export option
    When we select the Export option, the javascript includes the root call
    For example, the Reporting Services website has http://servername/Reports/Default.aspx
    The charts on the portlet shows OK
    When we are trying to use the Export function there is some javascript there that includes /Reports/ExportFunction.aspx?OUTPUT=PDF
    When I have the gateway, I end up with http://portalserver/Reports/ExportFunction.aspx?OUTPUT=PDF instead of the gateway call.
    Do you know how to fix this?

    do you have the ability to modify the javascript file? if so, you'll need to ensure that all links in external js files contain links that are gatewayed properly.
    i'm not sure i do it the most official way, but what I usually do is just have a hidden link somewhere in the portlet that will get gatewayed, and then grab the base url of that in javascript and use it to create gatwayed links.
    (in portlet)
    a href=/myapp/ id="mycoollink"
    (in js)
    var mylink = document.getelementbyid('mycoollink').href + "\xsrf.js"
    ..or soemthign liek that
    OR move all the JS to the imageserver and point to it there

  • Select multiply value in Microsoft Report Service

    Hi everyone!
    I'm in the process of creating
    a report in Microsoft Report Services and I have a one problem. My report is to show max, min, avg temperature in
    specified room. I need to make such a
    filter values: when I select one value of parameter (e.g. min temperature) must to show this one value in
    the chart and table, when I select two value (e.g. min and max temperature) must to show this two values etc. On the screen is choice values of parameter "Rodzaj wykresu" http://pl.tinypic.com/view.php?pic=f0x9ad&s=8#.U_o4p2OaKyE
    . I have a problem with Expression. My parameter have a multiply values and when I write sign "=" is error. I have no idea how this show or hidden values...
    This Expression  http://i62.tinypic.com/2s6m4o7.png is ok, when in parameter properties is http://pl.tinypic.com/?t=postupload and isn't move when I choice allow multiply values...

    I thought, when
    I want to make
    a window to select my values (this: http://i61.tinypic.com/11hv5n9.jpg) I must have a multiple values (in parameter properties select "allow multiple values"). I try your idea tommorow morning (I'm
    not working now).
    I'm a beginner in sql (I know him
    from 18. August). Thank You.
    Yep
    Once you check allow multiple values then you'll get parameter dropdown as per screenshot and you will be able to select multiple values which gets passed as a comma separated list and then you will be able to use In operator in filter expression.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to set a default date as a parameter in Microsoft Reporting Services 2008 to January 1st

    How can I set a default parameter for date for 01/01/yyyy.

    Hi Giss68,
    If I understand correctly, you want to set the first day of current year as a default value of a parameter in Microsoft Reporting Services 2008 report.
    If in this scenario, we can use the expression below as the default value in the parameter:
    =DateAdd("d",-DatePart(DateInterval.DayOfYear,Today,0,0)+1,Today)
    The following document about DateAdd function is for your reference:
    http://technet.microsoft.com/en-us/library/aa337194(v=sql.100).aspx
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    If you have any feedback on our support, please click
    here.
    Katherine Xiong
    TechNet Community Support

  • SQL Reporting Services with Java EE

    I have developed a Java application for calling the SQL Reports. A couple of reports are made in the server. This SQL Reporting server is deployed and the client is made in the java using Werb services. Whenever a search is done from the Java application, reports are displayed on the JSP page using the web service methods. But the problem is the entire report is displayed. Is there any way to display the report based on the particular item search. Suppose, if search is made on "Australia" in the coulumn Country, the report should contain only Australian related data. Currently the search is based on the report name itself.

    bobz wrote:
    jschell wrote:
    bobz wrote:
    Is there any book on SQL Reporting services with Java
    [http://www.javaworld.com/javaworld/jw-01-2005/jw-0110-sqlrs.html]
    This looks hopeful.I have already developed a java EE for calling reports with the help of ---"MSDN Virtual Lab: Implementing SQL Server Reporting Services with a Java Enterprise Edition (EE) Application (ID:1032315323)". Now I need to find out the parametrized reports(passing parameters to the report calls and more customization using java). In .NET, reportviewer controller is available for this purpose. I want to achieve the same type of thing using java.The protocol of controlling the Report Server is a feature of the Report Server.
    To control it you learn the protocol. To use it you program it in java.
    The first has nothing to do with java. The second obviously does.

  • Where is the forum for Fusion Report Service with Oracle Reports?

    Where is the forum for Fusion Report Service with Oracle Reports?

    You could try this one, maybe post your question.

  • Installing Forms&Report  Services with Oracle Application Server 10g Rel 3

    Can I Install Forms & Report Services with Oracle Application Server 10g Release 3 some how?
    I am thinking of installing Forms & Reports Services in separate home with Oracle Application Server 10g Rel 3.
    Does any body has any different idea so that they both can run more smoothly together.
    Thanks
    Raj
    www.oraclebrains.com

    They WILL NOT RUN TOGETHER. We have discussed this many times before. They must be in separate homes.
    Check the search function for this forum to find the previous discussions.

  • Error in sql 2008 reporting services with sharepoint 2013

    i have database sql 2008r2 and sharepoint 2013 enterprise
    database is in cluster server and sharepoint have 2 servers one for webfront end and one for services.
    im tring to configer ssrs in the web front end server for sharepoint and i install sql 2008 add on for sharepoint 2010  but still have this error
    The configuration parameter SharePointIntegrated is set to True but Share
    Point Object Model cannot be loaded. The error was:
    System.IO.FileNotFoundException: Could not load file or assembly
    'Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c' or one of its dependencies. The system cannot
    find the file specified. File name: 'Microsoft.SharePoint, Version=14.0.0.0,
    Culture=neutral, PublicKeyToken=71e9bce111e9429c' at
    Microsoft.ReportingServices.SharePoint.Objects.RSSPImpSecurity.set_StaticCatchAccessDeniedException(Boolean
    value) at
    Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelper..ctor() at
    Microsoft.ReportingServices.SharePoint.Server.SharePointServiceHelperFactory.get_ServiceHelper()
    WRN: Assembly binding logging is turned OFF. To enable assembly bind failure
    logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog]
    (DWORD) to 1. Note: There is some performance penalty associated with assembly
    bind failure logging. To turn this feature off, remove the registry value
    [HKLM\Software\Microsoft\Fusion!EnableLog]. .
    (rsSharePointObjectModelNotInstalled)
    and befour that i was install sql 2012 add on for sharepoint 2013 but was the same error so i did uninstall for it
    this error when i try to open reporting services url
    Thanks for any help :) my blog is: http://www.waelk.com

    SharePoint 2013 only supports SSRS 2012 SP1 - http://msdn.microsoft.com/en-us/library/gg492257.aspx. You'll need to upgrade your SSRS instance to 2012 SP1.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Reporting Services with out national character after export to PDF

    I have problem with exported report to PDF(sended by job)on some devices(pc, mobile, tablets),i dont see any text correctly, only undefinied symbols, problem only exists on exported reports, on SSRS by WEB looks correctly, 
    WIN 2008 R2 (eng)
    SQL 2008 (eng)
    Region: Poland.

    Hello,
    According to your description, it is contains non-English characters in your report. This problem occurs because the glyph IDs for some non-English characters have changed in some font files.
    In Cumulative Update #1 for SQL Server 2008 is automatic full font embedding and subsetting for Unicode characters in Reporting Services 2008 PDF rendering. Please update SSRS 2008 to SSRS 2008 CU1 to resolve the issue.
    There is a KB article about Incorrect characters appear in a SQL Server Reporting Services report after you export it to a PDF file, you can refer to it.
    http://support.microsoft.com/kb/955495
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Reporting services with R2 on DPM2012 - Could not establish trust relationship for the SSL/TLS secure channel

    Hi everyone,
    A somewhat similar question has been asked before by others but none of the answers given has helped me.I am attempting a DPM 2012 installation, which is failing at the "deploying reports" stage.My analysis of logs seems to point me in the direction of an SSL
    error, which does not make sense since the configuration files say SSL is disabled (or at least, should be).
    Here are the symptoms:
    1.I am able to browse http://FQDN/Reports_MSDPM2012 folder from internet explorer
    2.I am also able to browse http://FQDN/ReportServer_MSDPM2012 from internet explorer
    3.The information given in the logs and relevant config files is shown below:
    <<RSREPORTSERVER.CONFIG>>
    <ConnectionType>Default</ConnectionType>
    <LogonUser></LogonUser>
    <LogonDomain></LogonDomain>
    <LogonCred></LogonCred>
    <InstanceId>MSRS10_50.MSDPM2012</InstanceId>
    <InstallationID>{d9b1c335-5842-4a81-9148-79184c38bf09}</InstallationID>
    <Add Key="SecureConnectionLevel" Value="0"/>
    <Add Key="CleanupCycleMinutes" Value="10"/>
    <Add Key="MaxActiveReqForOneUser" Value="20"/>
    <Add Key="DatabaseQueryTimeout" Value="120"/>
    <Add Key="RunningRequestsScavengerCycle" Value="60"/>
    <Add Key="RunningRequestsDbCycle" Value="60"/>
    <Add Key="RunningRequestsAge" Value="30"/>
    <Add Key="MaxScheduleWait" Value="5"/>
    <Add Key="DisplayErrorLink" Value="true"/>
    <Add Key="WebServiceUseFileShareStorage" Value="false"/>
    <!--  <Add Key="ProcessTimeout" Value="150" /> -->
    <!--  <Add Key="ProcessTimeoutGcExtension" Value="30" /> -->
    <!--  <Add Key="WatsonFlags" Value="0x0430" /> full dump-->
    <!--  <Add Key="WatsonFlags" Value="0x0428" /> minidump -->
    <!--  <Add Key="WatsonFlags" Value="0x0002" /> no dump-->
    <Add Key="WatsonFlags" Value="0x0428"/>
    <Add Key="WatsonDumpOnExceptions" 
    4.The DPM log file still appears to be using SSL even though i used reporting services configuration to remove SSL bindings:
    running.Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.BackEndErrorException: exception ---> Microsoft.Internal.EnterpriseStorage.Dls.Setup.Exceptions.ReportDeploymentException:
    exception ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.Net.WebException: The underlying connection was closed: Could
    not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException:
    The remote certificate is invalid according to the validation procedure.
       at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest,
    Exception exception)
    5:I do have an SCCM site on the default web site used by SMS clients but on different ports
    I am stumped.Somebody please give some advice
    Thank you

    Hi
    This is an old post but did you come right?

Maybe you are looking for

  • Urgent!!!!!!!!!!!Reg retrieving data from a view in the data base

    Hi All,    My problem is that i need to retrieve some data from V_TTDS which is a VIEW in the ABAP-Dictionary.How can i accomplish this task.

  • Syncing Notes between Iphone 3GS and Macbook Pro

    I've read all the forums I can about this, but can't seem to find the answer. I want to sync my notes between my Iphone 3GS and my Macbook Pro. Right now when I add a note in my Iphone it automatically is added in my mail account in the Macbook. Howe

  • IMac & iPad mini syncing

    I purchased an iPad mini and would like to upload music from iTunes to it.  When I attach it to my iMac OS X 10.5.8, it says I must have a different version of iTunes, but I can't upload the updated iTunes onto my iMac without 10.6.8.  So I tried to

  • Reading EAN128 Barcodes

    I'm trying to read barcode from some LTxx or LM (rf) transaction. That barcode has the EAN application identifyer 10 (batch) plus the batch number: (10)1234123412. I did setup in SPRO>Logist.Exec>Mobile data Entry>Barcode> Assign barcode types to WH,

  • IDM: Implementing Password Synchronization only

    Hello to everyone. We are currently implementing IDM (7.2) by phases. For the first phase, we are planing to cover u201Cpaswword synchronizationu201D only. Therefore we are going to continue administrating user accounts in a descentralized way (Activ