Multi-key dimension handling in OTBI report design - How?

In OTBI reporting (i.e. from transactional DB) design , how to handle multi-key dimensions? I don't have option to have a staging/DW area where I can generate surrogate key for dimensions & use it in facts. Currently we are thinking creating Views on top of transactional tables and use it as dimensions & facts. What is the best way to tackle?

In OTBI reporting (i.e. from transactional DB) design , how to handle multi-key dimensions? I don't have option to have a staging/DW area where I can generate surrogate key for dimensions & use it in facts. Currently we are thinking creating Views on top of transactional tables and use it as dimensions & facts. What is the best way to tackle?

Similar Messages

  • Report designer requirement

    hi,
    in query data is displaying in this way
    matno     salesno       matquan        price
    m001        s001             10             1000
        -                s002             11             2000
        -                s003             12             3000
         -                s004             16             4000
    this requirement i am achieving by clicking on check box
    <b>'hide repaeted key values'</b>
    but in report designer level i am getting
    matno     salesno       matquan        price
    m001        s001             10             1000
    m001        s002             11             2000
    m001        s003             12             3000
    m001        s004             16             4000
    i want the same output which i am getting in query designer
    but i didnt find any option like <b>'hide repeated key values'</b>
    in the report designer level i want to know is it possible?
    or i will be possible in future release?

    can any expert or moderator tell me how to proceed further
    regards
    vishal

  • Placing table and chart side by side in report designer

    Dear Expert,
                     In report designer how do I place table and chart side by side? I mean table in the left hand side and chart in the right hand side.
    Thanks and Regards,
    Rajib

    Hi,
    create two reports in WAD
    table reports - assign DP_1 with query X
    chart - assign DP_1 with query X
    go to Report designer and create table with two columns.
    add your chart and table
    thanks
    Edited by: Bhat Vaidya on Oct 15, 2008 2:15 PM

  • Report designer - Saving to portal

    In report designer, how to I save a view to portal? Does the save to ROLE option save to a portal role?

    Hi,
    we have an option of saving an report as a view.
    We may ask the portal guys to assign it to any role in the portal providing them with the technical name of the view.
    Regards,
    Kishore

  • XL Reporter Designer

    Hi Friends,
    We have some queries with XL Reporter Designer.
    1) Using XL Reporter Designer, How can we get all Table names. For eg: I want the interest table which is part of sales opportunity under potential tab. How can i know that specific name of table. since the table names in xl reporter are different from sap b1 system information visible in status bar. I want to retrieve information from interest table in xl reporter designer.
    2) Using XL Reporter Designer, How can i mention a specific column name which is not visible in formula builder.
    3) Using XL Reporter Designer, How to mention the udf fields?
    Any help will be appreciated.
    Thanks
    Ravi

    All the table names are listed in the Designer on the left hand side. If you want to use these tables in the formula builder, you must include them in your definition. (a * will allow retrieval of all records from the table).
    To make the UDF's visible, use the tools menu in the Organiser, open the list and tick the ones you want, you will need to restart XL Reporter, then they will appear in the formula builder in the appropriate table

  • Multi key (or composite key) dimension for operational reporting

    Hi, I am creating operational reports in OBIEE 11g with PeopleSoft FSCM as source. As they are straight forward reports, I am planning to use OLTP tables directly for my OBIEE reporting.
    Here is the simplified scenario - ACCOUNT_TBL_VW is dimension table which has BUSINESS_UNIT & ACCOUNT_ID as keys.
    I have LEDGER Fact that has BUSINESS_UNIT, ACCOUNT_ID & other dimension keys with amount measures.
    How do I link my LEDGER Fact with ACCOUNT Dimension?
    Can I join multiple keys of Dimension with multiple keys of Fact? like this
    ACCDIM.BUSINESS_UNIT ---> LEDGFACT.BUSINESS_UNIT
    ACCDIM.ACCOUNT_ID ---> LEDGFACT.ACCOUNT_ID
    As it is operational reporting, I don't have any ETL type process to prepare single column primary key(surrogate key) in Dimension Table & modifying Fact Table with dimension surrogate key value.

    Hi,
    on the principal of how (in the absence of ETL); -
    1. Physical layer should reflect the actual physical joins, in some cases you may need the same table more than once to reflect self joins
    2. The business model layer is where you transform the physical into your desired star schema, hence here you will frequently (when using RDBMS tables) have numerous physical tables forming the source for a single logical table - this is also where you flatten the snowflake (or worse) into a star
    Make sense?
    regards,
    Robert.

  • SSAS report action to pass multi-value list of dimention key values to a SSRS report parameter

    This was originally posted on StackOverflow and suggested I try here as well.
    I want to create a report action in an SSAS OLAP cube that generates a list of formatted values to pass into an SSRS report parameter that accepts a multi-valued parameter list.  This would be applied at the
    cell level in the SSAS action.  I have found a solution that gets me most of the way:
    How to Pass Multiple Values from an SSAS Report Drill Through Action to an SSRS Multi-Value Parameter, but not quite.  The action does appear in Excel and works
    if I run the action from a cell that is at or below the dimension attribute I am generating the list for, in this case,
    Account Key.
    Below is a link to a screen capture (unable to embed it due to lack of reputation) showing the action and dimension structure in Excel.  The action works as long as I run it at the
    Account Key level or below.  I want to be able to run it at higher levels, such as
    Account Major and still have it generate all then related Account Key values for the SSRS report parameter.  Running it at the higher
    Account Major level does not trigger the report to run.
    Excel Action Screen Shot:
    http://i.stack.imgur.com/QCGSp.png
    Below is the MDX I am using to generate the value for the report parameter:
    UrlEscapeFragment(
    GENERATE(
    DESCENDANTS(
    [Account].[Account Key].CurrentMember,
    [Account].[Account Key].[Account Key]
    [Account].[Account Key].CURRENTMEMBER.Name,
    "&rp:Account="
    I am hoping that I can somehow modify the MDX above to make it return all the
    Account Keys for any attribute of the Account dimension when ran from any measure cell, not just when ran at self and children of
    Account Key in the pivot table.
    Also, if it helps, I can execute the following MDX query on the cube and get the results I am looking for.
    WITH MEMBER [Measures].[Account Key List] as
    GENERATE(
    DESCENDANTS([Account].[Account].CurrentMember, [Account].[Account].[Account]),
    [Account].[Account].CURRENTMEMBER.NAME,
    "&rp:Account=")
    SELECT {[Measures].[Account Key List]} on 0,
    ([Account].[Account Company Number].[Account Company Number],[Account].[Account Major].[Account Major]
    ) on 1
    FROM [Company 10 Action Demo]
    Below are partial results:
    10.116&rp:Account=10.116.010
    10.117&rp:Account=10.117.010&rp:Account=10.117.020
    10.120&rp:Account=10.120.005&rp:Account=10.120.006&rp:Account=10.120.010&rp:Account=10.120.020&rp:Account=10.120.030&rp:Account=10.120.040&rp:Account=10.120.050&rp:Account=10.120.060&rp:Account=10.120.380&rp:Account=10.120.999
    10.123
    Questions
    Any ideas what I might need to do to get Account Key to be returned for any attribute of the
    Account dimension?
    Would I possibly have to alter my Account dimension in the cube to get this to work?
    Thanks in advance.
    Edit 1 - Adventure Works Cube Version
    I was unable to get the suggested answer with the "Exists" function to work.  To better demonstrate this issue, I have recreated it using the Adventure Works Cube.
    I will focus on the Customer dimension, specifically the Customer and
    Education attributes.  I created a report action called Test Report Action.  Below is the XML created for it in the cube.
    <Action xsi:type="ReportAction" dwd:design-time-name="f35ad5ee-5167-4fb8-a0e0-0a74cc6e81c6">
    <ID>Report Action 1</ID>
    <Name>Test Report Action</Name>
    <TargetType>Cells</TargetType>
    <Target></Target>
    <Type>Report</Type>
    <ReportServer>SQLSERVER</ReportServer>
    <Path>ReportServer?/Test Report</Path>
    <ReportParameters>
    <ReportParameter>
    <Name>Test Customer Existing</Name>
    <Value>UrlEscapeFragment(
    GENERATE(
    EXISTING DESCENDANTS(
    [Customer].[Customer].CurrentMember,
    [Customer].[Customer].[Customer]
    [Customer].[Customer].CURRENTMEMBER.Name,
    "&amp;rp:Customer="
    )</Value>
    </ReportParameter>
    </ReportParameters>
    <ReportFormatParameters>
    <ReportFormatParameter>
    <Name>rs:Command</Name>
    <Value>Render</Value>
    </ReportFormatParameter>
    <ReportFormatParameter>
    <Name>rs:Renderer</Name>
    <Value>HTML5</Value>
    </ReportFormatParameter>
    </ReportFormatParameters>
    </Action>
    Below are the steps to re-create the issue.
    Connect to the cube in Excel
    Add dimension Customer -> More Fields -> Customer
    Add measure Internet Sales -> Internet Sales Amount
    Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action" and see customer values created for URL 
    When the action is ran at this point with Customer, I see the values created in the URL shown message box (since there is no SSRS report server at location specified).
    Now the part I'm unable to resolve
    Remove the Customer dimension and add Customer -> Demographic -> Education
    Right-click Internet Sales Amount cell, select "Additional Actions" -> "Test Report Action"
    Nothing happens. If I ran the action on the cell next to "Bachelors", I would want it to build up all the list of all the "Customers"  that make up the "Bachelors" in the
    Customer dimension as part of the report parameter.  If no attributes where used in the cube from the
    Customer dimension for that cell, then I would like it to return "All Customers", or something similar to show that all customers are included in the aggregations.
    I am not too MDX savvy, thus far.  I think I need to somehow join the
    Customers to Internet Sales Amount in the Generate function portion.  I have tried several different combinations of the
    Customer dimension and Internet Sales Amount, along with various functions to see if I could get this to work with no success.  I am hoping that someone more knowledgeable the me will have a solution.   If you need more details,
    please ask and I will provide them.

    Simon,
    Thanks for you help with this.  This morning I found a workaround.  Below describes what that is.
    What I ended up doing was getting a list of values from a degenerate dimension that I could use to pass to SSRS to get a list of transactions for a report.  Below is how I did this, in relation to the Adventure Works cube using the degenerate dimension
    Internet Order Details.
    WITH MEMBER [Measures].[Order Param List] AS
    GENERATE(
    EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
    "Internet Sales"),
    [Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
    "&rp:OrderNum=")
    SELECT {[Measures].[Order Param List], [Measures].[Internet Sales Amount]} ON 0
    ,([Date].[Calendar].[Date]) ON 1
    FROM [Adventure Works]
    This will get a list of Sales Order Number in a text string, separated by "&rp:OrderNum=" for each measure of
    Internet Sales. This would allow me to create an SSRS report to bring back detail information for each
    Sales Order Number. Below are some sample results.
    May 16, 2007 SO50493&rp:OrderNum=SO50494&rp:OrderNum=SO50495&rp:OrderNum=SO50496&rp:OrderNum=SO50497&rp:OrderNum=SO50498&rp:OrderNum=SO50499&rp:OrderNum=SO50500 $12,157.80
    May 17, 2007 SO50501&rp:OrderNum=SO50502&rp:OrderNum=SO50503&rp:OrderNum=SO50504&rp:OrderNum=SO50505&rp:OrderNum=SO50506&rp:OrderNum=SO50507&rp:OrderNum=SO50508 $13,231.62
    May 18, 2007 SO50509&rp:OrderNum=SO50510 $4,624.91
    With this, I can then create a Report Action in SSRS with a Parameter Value of
    UrlEscapeFragment(
    GENERATE(
    EXISTS([Internet Sales Order Details].[Sales Order Number].[Sales Order Number].Members, ,
    "Internet Sales"),
    [Internet Sales Order Details].[Sales Order Number].CurrentMember.Name,
    "&rp:OrderNum=")
    The way I was going about it before was flawed, as I was trying to get a list of the granular values from each dimension used to build the measure value and pass each one of those as separate parameters. I just needed to set something unique for each fact
    measure transaction that represents the value and uses that in a query parameter for the SSRS report.

  • Space btw Key & Text in Report Designer

    Hi All
      I have joined the key & text in a single column in Report Designer..But I need to give a space btw the KEY & TEXT of  Charateristic Object.
    Anyone give me some ideas to achieve this.
    Thanks
    BI Learner

    Hi
    To be totally honest this could be any number of things.  I have had many
    issues with report designer and find it to be not the most user friendly of tools, although with
    some effort it does do a job.
    Unfortunately I have not had this particular problem, but I'm not sure what you mean by adding
    custom text then reopening the report.  My thoughts were to already have the query open in RD,
    right click in the small white space next to the relevent characteristic then use the Insert Custom Text option.
    This should add in a box with [Custom Text] in it which you can overwrite and create your space with the
    space bar.
    If you are making certain changes to the BW query like adding in additional characteristics then I believe that when reopening RD you will find that the changes you have made will not be replicated unless the the BW query is static (structures only) and not navigational.
    I apologise if I am going over old ground and you already know this.
    I hope that this may be of some use to you.
    Kind Regards
    Nick

  • Report Designer Key value

    Hi,
    I'm using Repor Designer but I can use only the text information of the characteristic. Do you know if it's possible to use the key in the Report Designer.
    My uesr want always the Key in the report
    Thanks A Lot.
    Eric

    We had this same problem.  This problem happens on all compounded characteristics ... i.e. Fund, Cost Center, etc.  The key never came into Report Designer, regardless of the setting in the query.
    We had opened an OSS Message about this problem.  SAP told us to install the latest Front-End Patches.  The highest patch level as of today is 903.  This fixed our problem immediately!
    Thanks,
    Anne

  • Bex report designer

    when i try to insert a query i get this error:
    This report desinger  does not support this query dridown column axis may contain  one structure only, remove  any additional dimensions.
    The report design is :
    columns:
    fiscal year/period
    kf1
    kf2
    ck1
    ck2
    Rows:
    Structure: liquidity items
    Free charac:
    sem_creation date
    liqudity item
    Note: The values of liqudity are used in the structure.
    so i do have  two  structure. so  due to the above error its allowing me to insert the query in report desinger.

    thanks a lot.
    so what i udnerstand is that because  we using a char. and key fig in columns we are not able of insert the query that being  a drawback of the report desinger.
    i need to insert space in the column:
    Say i want the output to be
    Receipts
    SSfunds
    ss payables
    ss stands for sapce. so that the structure should like a hiearchy.

  • Bypass a prompt for broadcasted reports-designer only

    Dear All,
    I'm having a little question concerning @prompt, as I used it in WHERE clause
    to force users to choose only dimension value at a time ('mono' option) to lower
    down number of datas.
    But as reports designer I'd like to bypass this prompt .. is-it possible through
    standard option ? or should I implement a technical trick like create 'ALL' in lov
    and make this value available only for designer?
    I noticed an optional value user:0 in @prompt syntax but coulnd find any documentation
    related to this, does anybody know how to use it ?
    Thanks for your help,
    Rgds,
    Nicolas

    By bypassing the prompt do you mean that the users should not be prompted to enter values in the prompt rather it should pick up a default value and generate the report on the basis of that.
    There is no such way in Designer to bypass a prompt. We can add ALL in the LOVs of the object but still user's will be prompted for the value, here they can select ALL from the LOVs. You can also specify to Keep the Last Values Selected in the prompt. Hence everytime the report the prompt will appear with the Last Value that was passed. You can either change it if you want or can refresh the report with the same value.
    To achieve this you can use "Persistent" parameter.
    This parameter keeps the last entry in the prompt as the default value when reusing the prompt.
    The syntax of @prompt then becomes:
    @prompt('prompt','Data Type','LOV',Mono or Multi,Free or Constrained,Persistent or Not_Persistent,,User:0)
    Here the User:0 or User:1 is used to specify the order of prompts as they should appear in the report.
    BO XI 3.0 also has a feature of "Optional Prompt". You can define a prompt as optional, hence its not mandataory for the user to enter a value in the prompt.
    I hope this should help.

  • Key field not available in report

    Hi,
    I have a DSO and in that I have 1 key field and 20 data fields.
    I was able to load the data successfully in the DSO. And I am creating a report based on this DSO.
    But when I create a report, I was unable to view the key field in the report.
    I went to the query designer and checked, I could not see that particular key field also in my query designer, I could only see the data fields.
    Could someone please guide me in this regard???
    Would definitely assign points for the solution...
    Thanks & Regards.

    Hi,
    Please uncheck the Attribute only check box in the General tab of that Keyfield info Object.
    If any info Object checked as Attribute only then those objects wont display in the Query Designer.
    dont forget to give me the points..
    thanks,
    CK

  • Report Designer - Binding Error

    Hi Guys,
    I am trying to use the report designer to build some reports. When I assign any dataprovider to my report - query/query view, I am getting an error "Binding Error for Characteristics"/"Binding Error for Key Figures". Can you please let me know if someone has faced this error and what can be the possible resolution. This is kind of urgent because none of the queries seem to work. We are on SPS 9 which I know is not the best.
    Thanks,
    Pratik.

    is it an DROPDOWN you trying to add dataprovider??
    Hope it Helps
    Chetan
    @CP..

  • Report designer is not coming up

    Hi all,
    We have BI dual stack and we trying to activate Bex front end , i am able to execute Query designer but when i am opening report designer and trying to load any infocube i am getting Run time Java :.SS0 error.
    SSO is configured and betweeb Java and ABAP and ABAP and JAVA....
    Please suggest what i am missing...
    Default trace Log is as below>.....
    #1.5#0017A451D046001A0000000D0000A3A8000452DD2FB57056#1217009848502#com.sap.ip.bi.base.service.localization.impl.BIResourceAccessor#sap.com/irj#com.sap.ip.bi.base.service.localization.impl.BIResourceAccessor#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Threadimpl:3_25##0#0#Error#1#/Applications/BI#Plain###Missing resource: "com.sap.ip.bi.bics.exceptions.localization" "en" "InvalidVariableValues"#
    #1.5#0017A451D046001A0000000E0000A3A8000452DD2FB5C854#1217009848522#com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException#sap.com/irj#com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Threadimpl:3_25##0#0#Fatal#1#/Applications/BI/BI Consumer Services#Plain###Exception thrown: com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
    com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.initializeState(ProviderSelectionObject.java:497)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.queryview.ProviderQueryView.initializeState(ProviderQueryView.java:95)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.hasDefaultView(ProviderSelectionObject.java:990)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.initializeState(SelectionObject.java:361)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QueryView.initializeState(QueryView.java:169)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.getSelectionState(SelectionObject.java:532)
    at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.unlinkDataprovider(DropDownItem.java:153)
    at com.sap.ip.bi.webapplications.ui.items.dataprovider.SelectorReferenceItem.doUiItemDestroy(SelectorReferenceItem.java:91)
    at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.doUiItemDestroy(DropDownItem.java:497)
    at com.sap.ip.bi.webapplications.ui.items.UiItem.doDestroy(UiItem.java:233)
    at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
    at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.doDestroyItemCommand(Page.java:3237)
    at sun.reflect.GeneratedMethodAccessor260.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:90)
    at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:339)
    at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:273)
    at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommand(Page.java:1207)
    at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.destroy(TemplateAssembler.java:655)
    at com.sap.ip.bi.webapplications.runtime.base.Template.doDestroy(Template.java:162)
    at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
    at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroy(Page.java:4217)
    at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.destroyPage(Controller.java:603)
    at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:320)
    at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#0017A451D046001A000000110000A3A8000452DD2FB65C1C#1217009848562#com.sap.ip.bi.base.application.message.impl.MessageBase#sap.com/irj#com.sap.ip.bi.base.application.message.impl.MessageBase#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Threadimpl:3_25##0#0#Error#1#/Applications/BI#Plain###A message was generated:
    ERROR
    com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException InvalidVariableValues
    Log ID: 0017A451D046001A0000000E0000A3A8000452DD2FB5C854
    Message:
    Stack trace: com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.initializeState(ProviderSelectionObject.java:497)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.queryview.ProviderQueryView.initializeState(ProviderQueryView.java:95)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.hasDefaultView(ProviderSelectionObject.java:990)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.initializeState(SelectionObject.java:361)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QueryView.initializeState(QueryView.java:169)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.getSelectionState(SelectionObject.java:532)
    at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.unlinkDataprovider(DropDownItem.java:153)
    at com.sap.ip.bi.webapplications.ui.items.dataprovider.SelectorReferenceItem.doUiItemDestroy(SelectorReferenceItem.java:91)
    at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.doUiItemDestroy(DropDownItem.java:497)
    at com.sap.ip.bi.webapplications.ui.items.UiItem.doDestroy(UiItem.java:233)
    at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
    at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.doDestroyItemCommand(Page.java:3237)
    at sun.reflect.GeneratedMethodAccessor260.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:90)
    at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:339)
    at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:273)
    at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommand(Page.java:1207)
    at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.destroy(TemplateAssembler.java:655)
    at com.sap.ip.bi.webapplications.runtime.base.Template.doDestroy(Template.java:162)
    at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
    at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
    at com.sap.ip.bi.webapplications.runtime.impl.Page.destroy(Page.java:4217)
    at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.destroyPage(Controller.java:603)
    at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:320)
    at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
    at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
    at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
    at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
    at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException InvalidVariableValues#
    #1.5#0017A451D046001B000000000000A3A8000452DD308F89C6#1217009862791#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Threadimpl:3_11##0#0#Error##Plain###com.sap.engine.services.security.exceptions.BaseLoginException: Authentication failed.#
    #1.5#0017A451D046001B000000010000A3A8000452DD308F8B44#1217009862791#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Threadimpl:3_11##0#0#Error##Plain###com.sap.engine.services.security.exceptions.BaseLoginException: Authentication failed.
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:170)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:177)
    at com.sap.engine.system.SystemLoginModule.login(SystemLoginModule.java:90)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
    at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:70)
    at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156)
    at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7785)
    at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405)
    at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728)
    at com.sap.mw.jco.JCO$Server.listen(JCO.java:8145)
    at com.sap.mw.jco.JCO$Server.work(JCO.java:8265)
    at com.sap.mw.jco.JCO$Server.loop(JCO.java:8212)
    at com.sap.mw.jco.JCO$Server.run(JCO.java:8128)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.security.core.server.jaas.DetailedLoginException: Authentication failed: Issuer of SAP Logon Ticket is not trusted. Authentication stack: evaluate_assertion_ticket
    at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:167)
    ... 26 more
    #1.5#0017A451D046001B000000030000A3A8000452DD308F952F#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine#J2EE_GUEST#0##SBW#XSGADDE #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Threadimpl:3_11##0#0#Error#1#/System/Server#Plain###call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.#
    #1.5#0017A451D046001B000000040000A3A8000452DD308F996C#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Threadimpl:3_11##0#0#Error##Plain###java.lang.RuntimeException: call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.#
    #1.5#0017A451D046001B000000050000A3A8000452DD308F9A9C#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Threadimpl:3_11##0#0#Error##Plain###java.lang.RuntimeException: call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.
    at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:79)
    at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156)
    at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7785)
    at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405)
    at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728)
    at com.sap.mw.jco.JCO$Server.listen(JCO.java:8145)
    at com.sap.mw.jco.JCO$Server.work(JCO.java:8265)
    at com.sap.mw.jco.JCO$Server.loop(JCO.java:8212)
    at com.sap.mw.jco.JCO$Server.run(JCO.java:8128)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Thanks,
    Subhash.G

    Thanks

  • Bex Report designer  is not working,

    Hi all,
    We have  BI dual stack and  we trying to activate Bex front end , i am able to  execute Query designer   but when i am  opening report designer  and trying to load any infocube  i am getting   Run time Java :.SS0 error.
    SSO is configured and betweeb Java and ABAP and ABAP and JAVA....
    Please suggest  what i am missing...
    Default trace Log is as below>.....
    #1.5#0017A451D046001A0000000D0000A3A8000452DD2FB57056#1217009848502#com.sap.ip.bi.base.service.localization.impl.BIResourceAccessor#sap.com/irj#com.sap.ip.bi.base.service.localization.impl.BIResourceAccessor#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Thread[impl:3]_25##0#0#Error#1#/Applications/BI#Plain###Missing resource: "com.sap.ip.bi.bics.exceptions.localization" "en" "InvalidVariableValues"#
    #1.5#0017A451D046001A0000000E0000A3A8000452DD2FB5C854#1217009848522#com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException#sap.com/irj#com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Thread[impl:3]_25##0#0#Fatal#1#/Applications/BI/BI Consumer Services#Plain###Exception thrown: com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
    com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.initializeState(ProviderSelectionObject.java:497)
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.queryview.ProviderQueryView.initializeState(ProviderQueryView.java:95)
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.hasDefaultView(ProviderSelectionObject.java:990)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.initializeState(SelectionObject.java:361)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QueryView.initializeState(QueryView.java:169)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.getSelectionState(SelectionObject.java:532)
         at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.unlinkDataprovider(DropDownItem.java:153)
         at com.sap.ip.bi.webapplications.ui.items.dataprovider.SelectorReferenceItem.doUiItemDestroy(SelectorReferenceItem.java:91)
         at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.doUiItemDestroy(DropDownItem.java:497)
         at com.sap.ip.bi.webapplications.ui.items.UiItem.doDestroy(UiItem.java:233)
         at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
         at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.doDestroyItemCommand(Page.java:3237)
         at sun.reflect.GeneratedMethodAccessor260.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:90)
         at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:339)
         at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:273)
         at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommand(Page.java:1207)
         at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.destroy(TemplateAssembler.java:655)
         at com.sap.ip.bi.webapplications.runtime.base.Template.doDestroy(Template.java:162)
         at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
         at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroy(Page.java:4217)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.destroyPage(Controller.java:603)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:320)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#0017A451D046001A000000110000A3A8000452DD2FB65C1C#1217009848562#com.sap.ip.bi.base.application.message.impl.MessageBase#sap.com/irj#com.sap.ip.bi.base.application.message.impl.MessageBase#J2EE_ADMIN#101##NBCDSSQLS10.corp_SBW_24896250#J2EE_ADMIN#cf85f8805a7511dd987b0017a451d046#SAPEngine_Application_Thread[impl:3]_25##0#0#Error#1#/Applications/BI#Plain###A message was generated:
    ERROR
    com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException InvalidVariableValues
    Log ID: 0017A451D046001A0000000E0000A3A8000452DD2FB5C854
    Message:
    Stack trace: com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException:
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.initializeState(ProviderSelectionObject.java:497)
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.queryview.ProviderQueryView.initializeState(ProviderQueryView.java:95)
         at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.ProviderSelectionObject.hasDefaultView(ProviderSelectionObject.java:990)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.initializeState(SelectionObject.java:361)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.queryview.QueryView.initializeState(QueryView.java:169)
         at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.SelectionObject.getSelectionState(SelectionObject.java:532)
         at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.unlinkDataprovider(DropDownItem.java:153)
         at com.sap.ip.bi.webapplications.ui.items.dataprovider.SelectorReferenceItem.doUiItemDestroy(SelectorReferenceItem.java:91)
         at com.sap.ip.bi.webapplications.ui.items.filteritems.dropdown.DropDownItem.doUiItemDestroy(DropDownItem.java:497)
         at com.sap.ip.bi.webapplications.ui.items.UiItem.doDestroy(UiItem.java:233)
         at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
         at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.doDestroyItemCommand(Page.java:3237)
         at sun.reflect.GeneratedMethodAccessor260.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:90)
         at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:339)
         at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:273)
         at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommand(Page.java:1207)
         at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.destroy(TemplateAssembler.java:655)
         at com.sap.ip.bi.webapplications.runtime.base.Template.doDestroy(Template.java:162)
         at com.sap.ip.bi.webapplications.runtime.base.PageObject.destroy(PageObject.java:390)
         at com.sap.ip.bi.webapplications.runtime.base.Container.destroy(Container.java:53)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroyPageObject(Page.java:2734)
         at com.sap.ip.bi.webapplications.runtime.impl.Page.destroy(Page.java:4217)
         at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.destroyPage(Controller.java:603)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:320)
         at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:645)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    com.sap.ip.bi.bics.exceptions.BicsBaseRuntimeException InvalidVariableValues#
    #1.5#0017A451D046001B000000000000A3A8000452DD308F89C6#1217009862791#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE                         #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Thread[impl:3]_11##0#0#Error##Plain###com.sap.engine.services.security.exceptions.BaseLoginException: Authentication failed.#
    #1.5#0017A451D046001B000000010000A3A8000452DD308F8B44#1217009862791#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE                         #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Thread[impl:3]_11##0#0#Error##Plain###com.sap.engine.services.security.exceptions.BaseLoginException: Authentication failed.
         at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:170)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:177)
         at com.sap.engine.system.SystemLoginModule.login(SystemLoginModule.java:90)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at javax.security.auth.login.LoginContext.invoke(LoginContext.java:675)
         at javax.security.auth.login.LoginContext.access$000(LoginContext.java:129)
         at javax.security.auth.login.LoginContext$4.run(LoginContext.java:610)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.invokeModule(LoginContext.java:607)
         at javax.security.auth.login.LoginContext.login(LoginContext.java:534)
         at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:70)
         at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156)
         at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7785)
         at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405)
         at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728)
         at com.sap.mw.jco.JCO$Server.listen(JCO.java:8145)
         at com.sap.mw.jco.JCO$Server.work(JCO.java:8265)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8212)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8128)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.security.core.server.jaas.DetailedLoginException: Authentication failed: Issuer of SAP Logon Ticket is not trusted. Authentication stack: evaluate_assertion_ticket
         at com.sap.engine.services.security.login.ModulesProcessAction.run(ModulesProcessAction.java:167)
         ... 26 more
    #1.5#0017A451D046001B000000030000A3A8000452DD308F952F#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine#J2EE_GUEST#0##SBW#XSGADDE                         #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Thread[impl:3]_11##0#0#Error#1#/System/Server#Plain###call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.#
    #1.5#0017A451D046001B000000040000A3A8000452DD308F996C#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE                         #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Thread[impl:3]_11##0#0#Error##Plain###java.lang.RuntimeException: call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.#
    #1.5#0017A451D046001B000000050000A3A8000452DD308F9A9C#1217009862801#com.sap.engine.services.rfcengine##com.sap.engine.services.rfcengine.handleRequest#J2EE_GUEST#0##SBW#XSGADDE                         #EA755ADDD4E4F19E947A0017A451D046#SAPEngine_Application_Thread[impl:3]_11##0#0#Error##Plain###java.lang.RuntimeException: call FM BICS_CONS_GET_VIEW_DEF_J_PROXY to ProgId SBW_PORTAL on host NBCDSSQLS10 with SSO not authorized: Authentication failed.
         at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:79)
         at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequest(RFCJCOServer.java:156)
         at com.sap.mw.jco.JCO$Server.dispatchRequest(JCO.java:7785)
         at com.sap.mw.jco.MiddlewareJRfc$Server.dispatchRequest(MiddlewareJRfc.java:2405)
         at com.sap.mw.jco.MiddlewareJRfc$Server.listen(MiddlewareJRfc.java:1728)
         at com.sap.mw.jco.JCO$Server.listen(JCO.java:8145)
         at com.sap.mw.jco.JCO$Server.work(JCO.java:8265)
         at com.sap.mw.jco.JCO$Server.loop(JCO.java:8212)
         at com.sap.mw.jco.JCO$Server.run(JCO.java:8128)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Thanks,
    Subhash.G

    Hi All,
    We set the Tracelevel to 10 in VA at JCo and below is  the trace info:
    SYSTEMS: 0 row(s)
    UCLASSSYS: 0 row(s)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:434]: [JAV-LAYER] Record() [>>> 375f1617]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:434]: [JAV-LAYER] Record() [>>> 43a35c67]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] setDsrPassport for connection with handle 1  [enter]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] JCO.Client.beginCall(): cannot get jDSR passport for call 'SUSR_GET_ADMIN_USER_LOGIN_INFO', because of com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] JCO.Client.execute (SUSR_GET_ADMIN_USER_LOGIN_INFO) on handle [1]
    Input:
    INPUT (uc)
       ALIASNAME                       -                               CHAR      0       40      0       80      ioASU
       AUTHORITY_CHECK                 -                               CHAR      40      1       80      2       ioA
       USERID                          -                               CHAR      41      12      82      24      ioA
    content:
    00000000
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000020
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000040
    0058004A003200450045 005F00410044004D0049 004E00200020
    XJ2EE_ADMIN
    Input tables: null
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Executing SUSR_GET_ADMIN_USER_LOGIN_INFO for handle 1
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Execute before RfcCall(1, SUSR_GET_ADMIN_USER_LOGIN_INFO, 2, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Sent Parameter AUTHORITY_CHECK
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Sent Parameter USERID
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Execute after RfcCall(1, SUSR_GET_ADMIN_USER_LOGIN_INFO, 2, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Execute before RfcReceive(1, SUSR_GET_ADMIN_USER_LOGIN_INFO, 4, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Expecting Parameter LAST_LOGON_DATE
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Expecting Parameter LOCK_STATUS
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Expecting Parameter PASSWORD_STATUS
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Expecting Parameter USER_ID
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Execute after RfcReceive(1, SUSR_GET_ADMIN_USER_LOGIN_INFO, 4, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] JCO.Client.execute (SUSR_GET_ADMIN_USER_LOGIN_INFO) on handle [1] returns after 0 ms
    Output:
    OUTPUT (uc)
       LAST_LOGON_DATE                 -                               DATE      0       8       0       16      eA
       LOCK_STATUS                     -                               INT1      8       1       16      1       eA
       PASSWORD_STATUS                 -                               INT       9       2       17      4       eA
       USER_ID                         -                               CHAR      11      12      21      24      eA
    content:
    00000000
    00320030003000380030 0037003200370000FFFF FFFE004A003200450045 005F00410044004D0049
    20080727...J2EE_ADMI
    00000020
    004E00200020
    N
    Output tables: null
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: [JAV-LAYER] JCO.Pool.releaseClient([1]) in pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:444]: Reset before RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: Reset after RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] Record() [>>> 1a0790e2]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] Record() [>>> 66b8f2c7]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] JCO.Pool.getClient(false)  from pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1    [enter]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] JCO.Pool.getClient(false) returns [1]     [leave]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] setDsrPassport for connection with handle 1  [enter]
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] JCO.Client.beginCall(): cannot get jDSR passport for call 'SUSR_CHECK_LOGON_DATA', because of com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:454]: [JAV-LAYER] JCO.Client.execute (SUSR_CHECK_LOGON_DATA) on handle [1]
    Input:
    INPUT (uc)
       ALIASNAME                       -                               CHAR      0       40      0       80      ioASU
       AUTH_DATA                       -                               STRING    40      0       80      8       ioASU
       AUTH_METHOD                     -                               CHAR      40      1       88      2       iA
       EXTID_TYPE                      -                               CHAR      41      2       90      4       ioASU
       LANGUAGE                        -                               CHAR      43      2       94      4       ioASU
       PASSWORD                        -                               CHAR      45      40      98      80      ioA
       USERID                          -                               CHAR      85      12      178     24      ioA
       USE_NEW_EXCEPTION               -                               INT1      97      1       202     1       ioA
    content:
    00000000
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000020
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000040
    00500020002000200020 00730031006400330044 00300030007200200020 00200020002000200020
    P    s1d3D00r
    00000060
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000080
    00200020002000200020 004A003200450045005F 00410044004D0049004E 002000200100
    J2EE_ADMIN  Ā
    AUTH_DATA: null
    Input tables: null
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Executing SUSR_CHECK_LOGON_DATA for handle 1
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Execute before RfcCall(1, SUSR_CHECK_LOGON_DATA, 4, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Sent Parameter AUTH_METHOD
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Sent Parameter PASSWORD
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Sent Parameter USERID
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Sent Parameter USE_NEW_EXCEPTION
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Execute after RfcCall(1, SUSR_CHECK_LOGON_DATA, 4, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Execute before RfcReceive(1, SUSR_CHECK_LOGON_DATA, 5, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Expecting Parameter ALLOW_PWD_DELETION
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Expecting Parameter PWDSTATE
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Expecting Parameter PWD_CHANGE_SSO
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Expecting Parameter TICKET
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:464]: Expecting Parameter USER_ID
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:474]: Execute after RfcReceive(1, SUSR_CHECK_LOGON_DATA, 5, null, null)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:474]: [JAV-LAYER] JCO.Client.execute (SUSR_CHECK_LOGON_DATA) on handle [1] returns after 20 ms
    Output:
    OUTPUT (uc)
       ALLOW_PWD_DELETION              -                               CHAR      0       1       0       2       eA
       PWDSTATE                        -                               INT       1       2       2       4       eA
       PWD_CHANGE_SSO                  -                               INT1      3       1       6       1       eA
       TICKET                          -                               STRING    4       0       7       8       eA
       USER_ID                         -                               CHAR      4       12      15      24      eA
    content:
    00000000
    0020FFFFFFFE0100004A 003200450045005F0041 0044004D0049004E0020 0020
    ..ĀJ2EE_ADMIN
    TICKET:
    Output tables: null
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:474]: [JAV-LAYER] JCO.Pool.releaseClient([1]) in pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:474]: Reset before RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_27 [20:10:48:474]: Reset after RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] Record() [>>> 31ebb3fb]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] Record() [>>> 69753d57]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] Record() [>>> 100e50d8]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] JCO.Pool.getClient(false)  from pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1    [enter]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] JCO.Pool.getClient(false) returns [1]     [leave]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] setDsrPassport for connection with handle 1  [enter]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:954]: [JAV-LAYER] com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: [JAV-LAYER] JCO.Client.beginCall(): cannot get jDSR passport for call 'BAPI_USER_EXISTENCE_CHECK', because of com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: [JAV-LAYER] JCO.Client.execute (BAPI_USER_EXISTENCE_CHECK) on handle [1]
    Input:
    INPUT (uc)
       USERNAME                        BAPIRET2                        CHAR      0       12      0       24      iA
    content:
    00000000
    004A003200450045005F 00410044004D0049004E 00200020
    J2EE_ADMIN
    Input tables: null
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Executing BAPI_USER_EXISTENCE_CHECK for handle 1
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Execute before RfcCall(1, BAPI_USER_EXISTENCE_CHECK, 1, null, null)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Sent Parameter USERNAME
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Execute after RfcCall(1, BAPI_USER_EXISTENCE_CHECK, 1, null, null)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Execute before RfcReceive(1, BAPI_USER_EXISTENCE_CHECK, 1, null, null)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:964]: Expecting Parameter RETURN
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:974]: Execute after RfcReceive(1, BAPI_USER_EXISTENCE_CHECK, 1, null, null)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:974]: [JAV-LAYER] JCO.Client.execute (BAPI_USER_EXISTENCE_CHECK) on handle [1] returns after 20 ms
    Output:
    OUTPUT (uc)
       RETURN                          BAPIRET2                        STRUCTURE 0       0       0       6       eA
    BAPIRET2 (uc)
       TYPE                            -                               CHAR      0       1       0       2       A
       ID                              -                               CHAR      1       20      2       40      A
       NUMBER                          -                               NUM       21      3       42      6       A
       MESSAGE                         -                               CHAR      24      220     48      440     A
       LOG_NO                          -                               CHAR      244     20      488     40      A
       LOG_MSG_NO                      -                               NUM       264     6       528     12      A
       MESSAGE_V1                      -                               CHAR      270     50      540     100     A
       MESSAGE_V2                      -                               CHAR      320     50      640     100     A
       MESSAGE_V3                      -                               CHAR      370     50      740     100     A
       MESSAGE_V4                      -                               CHAR      420     50      840     100     A
       PARAMETER                       -                               CHAR      470     32      940     64      A
       ROW                             -                               INT       502     2       1004    4       A
       FIELD                           -                               CHAR      504     30      1008    60      A
       SYSTEM                          -                               CHAR      534     10      1068    20      A
    RETURN:
    00000000
    00490030003100200020 00200020002000200020 00200020002000200020 00200020002000200020
    I01
    00000020
    00200030003800380055 0073006500720020004A 003200450045005F0041 0044004D0049004E0020
    088User J2EE_ADMIN
    00000040
    00650078006900730074 00730020002000200020 00200020002000200020 00200020002000200020
    exists
    00000060
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000080
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000100
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000120
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000140
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000160
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000180
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000200
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000220
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000240
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000260
    00200020002000200030 00300030003000300030 004A003200450045005F 00410044004D0049004E
    000000J2EE_ADMIN
    00000280
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000300
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000320
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000340
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000360
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000380
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000400
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000420
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000440
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000460
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000480
    00200020002000200020 00200020002000200020 00200020002000200020 00200020002000200020
    00000500
    00200020000000000020 00200020002000200020 00200020002000200020 00200020002000200020
    00000520
    00200020002000200020 00200020002000200020 00200020002000200053 004200570043004C004E
    SBWCLN
    00000540
    0054003200300030
    T200
    Output tables: null
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:974]: [JAV-LAYER] JCO.Pool.releaseClient([1]) in pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:974]: Reset before RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:974]: Reset after RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] Record() [>>> 44f54d22]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] Record() [>>> 449b168c]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] Record() [>>> 21e56484]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] Record() [>>> 5b2a277e]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] JCO.Pool.getClient(false)  from pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1    [enter]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] JCO.Pool.getClient(false) returns [1]     [leave]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] setDsrPassport for connection with handle 1  [enter]
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] JCO.Client.beginCall(): cannot get jDSR passport for call 'PRGN_J2EE_USER_GET_ROLENAMES', because of com.sap.mw.jco.JCO$Exception: (152) JCO_ERROR_DSR_PASSPORT_NOT_VALID: Dsr passport is not valid.
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: [JAV-LAYER] JCO.Client.execute (PRGN_J2EE_USER_GET_ROLENAMES) on handle [1]
    Input:
    INPUT (uc)
       IF_REPLACE_DERIVED              -                               CHAR      0       1       0       2       iASU
       IF_UNAME                        -                               CHAR      1       12      2       24      iA
    content:
    00000000
    0020004A003200450045 005F00410044004D0049 004E00200020
    J2EE_ADMIN
    Input tables:
    TABLES (uc)
       ET_AGR                          J2EE_AGRNAME                    TABLE     0       0       0       6       AU
       ET_RETURN                       BAPIRET2                        TABLE     0       0       6       9       AU
    J2EE_AGRNAME (uc)
       AGR_NAME                        -                               CHAR      0       30      0       60      A
    BAPIRET2 (uc)
       TYPE                            -                               CHAR      0       1       0       2       A
       ID                              -                               CHAR      1       20      2       40      A
       NUMBER                          -                               NUM       21      3       42      6       A
       MESSAGE                         -                               CHAR      24      220     48      440     A
       LOG_NO                          -                               CHAR      244     20      488     40      A
       LOG_MSG_NO                      -                               NUM       264     6       528     12      A
       MESSAGE_V1                      -                               CHAR      270     50      540     100     A
       MESSAGE_V2                      -                               CHAR      320     50      640     100     A
       MESSAGE_V3                      -                               CHAR      370     50      740     100     A
       MESSAGE_V4                      -                               CHAR      420     50      840     100     A
       PARAMETER                       -                               CHAR      470     32      940     64      A
       ROW                             -                               INT       502     2       1004    4       A
       FIELD                           -                               CHAR      504     30      1008    60      A
       SYSTEM                          -                               CHAR      534     10      1068    20      A
    ET_AGR: 0 row(s)
    ET_RETURN: 0 row(s)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: Executing PRGN_J2EE_USER_GET_ROLENAMES for handle 1
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: Execute before RfcCall(1, PRGN_J2EE_USER_GET_ROLENAMES, 1, null, 2)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: Sent Parameter IF_UNAME
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:984]: Sent Table ET_AGR
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Sent Table ET_RETURN
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Execute after RfcCall(1, PRGN_J2EE_USER_GET_ROLENAMES, 1, null, 2)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Execute before RfcReceive(1, PRGN_J2EE_USER_GET_ROLENAMES, null, null, 2)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Expecting Table ET_AGR
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Expecting Table ET_RETURN
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Execute after RfcReceive(1, PRGN_J2EE_USER_GET_ROLENAMES, null, null, 2)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: [JAV-LAYER] JCO.Client.execute (PRGN_J2EE_USER_GET_ROLENAMES) on handle [1] returns after 10 ms
    Output: null
    Output tables:
    TABLES (uc)
       ET_AGR                          J2EE_AGRNAME                    TABLE     0       0       0       6       AU
       ET_RETURN                       BAPIRET2                        TABLE     0       0       6       9       AU
    J2EE_AGRNAME (uc)
       AGR_NAME                        -                               CHAR      0       30      0       60      A
    BAPIRET2 (uc)
       TYPE                            -                               CHAR      0       1       0       2       A
       ID                              -                               CHAR      1       20      2       40      A
       NUMBER                          -                               NUM       21      3       42      6       A
       MESSAGE                         -                               CHAR      24      220     48      440     A
       LOG_NO                          -                               CHAR      244     20      488     40      A
       LOG_MSG_NO                      -                               NUM       264     6       528     12      A
       MESSAGE_V1                      -                               CHAR      270     50      540     100     A
       MESSAGE_V2                      -                               CHAR      320     50      640     100     A
       MESSAGE_V3                      -                               CHAR      370     50      740     100     A
       MESSAGE_V4                      -                               CHAR      420     50      840     100     A
       PARAMETER                       -                               CHAR      470     32      940     64      A
       ROW                             -                               INT       502     2       1004    4       A
       FIELD                           -                               CHAR      504     30      1008    60      A
       SYSTEM                          -                               CHAR      534     10      1068    20      A
    ET_AGR: 4 row(s)
    row 0
    00000000
    005300410050005F0042 0043005F004200410053 00490053005F00410044 004D0049004E00200020
    SAP_BC_BASIS_ADMIN
    00000020
    00200020002000200020 00200020002000200020
    row 1
    00000000
    005300410050005F0042 0043005F004200410053 00490053005F004D004F 004E00490054004F0052
    SAP_BC_BASIS_MONITOR
    00000020
    0049004E004700200020 00200020002000200020
    ING
    row 2
    00000000
    005300410050005F0042 0043005F004A00530046 005F0043004F004D004D 0055004E004900430041
    SAP_BC_JSF_COMMUNICA
    00000020
    00540049004F004E005F 0052004F002000200020
    TION_RO
    row 3
    00000000
    005300410050005F004A 003200450045005F0041 0044004D0049004E0020 00200020002000200020
    SAP_J2EE_ADMIN
    00000020
    00200020002000200020 00200020002000200020
    ET_RETURN: 0 row(s)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: [JAV-LAYER] JCO.Pool.releaseClient([1]) in pool com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo640Proxy_1217213625244_1
    SAPEngine_Application_Thread[impl:3]_0 [20:10:48:994]: Reset before RfcCleanupContext(1)
    SAPEngine_Application_Thread[impl:3]_0 [20:10:49:004]: Reset after RfcCleanupContext(1)
    JCoRequestDispatcher [20:10:50:104]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:10:50:104]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:10:53:723]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:10:53:723]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:10:55:723]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:10:55:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:10:57:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:10:57:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:10:59:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:10:59:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:01:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:01:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:03:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:03:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:05:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:05:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:07:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:07:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:09:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:09:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:11:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:11:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:13:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:13:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:15:733]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:15:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:17:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:17:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:19:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:19:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:21:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:21:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:23:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:23:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    JCoRequestDispatcher [20:11:25:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) = RC_RETRY_LISTEN leave
    JCoRequestDispatcher [20:11:25:743]: [JAV-LAYER] Dispatcher.waitForRequest(2000) enter
    SAPEngine_Application_Thread[impl:3]_38 [20:11:26:593]: [JAV-LAYER] JCO.setProperty(jco.trace_level, 0)
         at com.sap.mw.jco.JCO.setProperty(JCO.java:464)
         at com.sap.mw.jco.JCO.setTraceLevel(JCO.java:633)
         at com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.setStaticProperties(RFCRuntimeInterfaceImpl.java:1354)
         at com.sap.engine.services.rfcengine.RFCRuntimeInterfaceImpl.changeBundleConfiguration(RFCRuntimeInterfaceImpl.java:654)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.pj.jmx.introspect.DefaultMBeanInvoker.invoke(DefaultMBeanInvoker.java:58)
         at com.sap.pj.jmx.mbeaninfo.AdditionalInfoProviderMBean.invoke(AdditionalInfoProviderMBean.java:289)
         at com.sap.pj.jmx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:944)
         at com.sap.pj.jmx.server.interceptor.MBeanServerWrapperInterceptor.invoke(MBeanServerWrapperInterceptor.java:288)
         at com.sap.engine.services.jmx.CompletionInterceptor.invoke(CompletionInterceptor.java:409)
         at com.sap.pj.jmx.server.interceptor.BasicMBeanServerInterceptor.invoke(BasicMBeanServerInterceptor.java:277)
         at com.sap.jmx.provider.ProviderInterceptor.invoke(ProviderInterceptor.java:258)
         at com.sap.engine.services.jmx.RedirectInterceptor.invoke(RedirectInterceptor.java:340)
         at com.sap.pj.jmx.server.interceptor.MBeanServerInterceptorChain.invoke(MBeanServerInterceptorChain.java:330)
         at com.sap.engine.services.jmx.MBeanServerSecurityWrapper.invoke(MBeanServerSecurityWrapper.java:287)
         at com.sap.engine.services.jmx.MBeanServerInvoker.invokeMbs(MBeanServerInvoker.java:131)
         at com.sap.engine.services.jmx.ClusterInterceptor.invokeMbs(ClusterInterceptor.java:212)
         at com.sap.engine.services.jmx.ClusterInterceptor.invoke(ClusterInterceptor.java:766)
         at com.sap.engine.services.jmx.MBeanServerInterceptorInvoker.invokeMbs(MBeanServerInterceptorInvoker.java:102)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImpl.invokeMbs(P4ConnectorServerImpl.java:61)
         at com.sap.engine.services.jmx.connector.p4.P4ConnectorServerImplp4_Skel.dispatch(P4ConnectorServerImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:320)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:198)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:129)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Please suggest..
    Thanks,
    Subhash.G

Maybe you are looking for

  • VPN connection - Firewall Log

    Hi there! I got VPN setup and running. But when connected, I get a huge list of denied acces in my server firewall log. This is just a small part of the list, its displaying a huge amount of ports: ipfw[3352]: 65534 Deny UDP 192.168.0.102:63189 192.1

  • SQL Developer not accepting certain characters from the keyboard

    Hello, I have been using SQL Developer for 5 or 6 months now, with minor issues and great satisfaction. A few days ago, just out of the blue, in the middle of the day, SQL developer started not accepting the following characters: Ctrlv, Ctrl + c, F5,

  • Can't make phone call to Taiwan

    Can't make phone call to Taiwan now. But I paid for world unlimited call, and still active now.

  • Grainy photos in iOS8

    Since downloading iOS8 (big mistake) onto my iPad the photos taken with the camera are terrible quality, very grainy.  With iOS7 they were lovely and clear.  Having most of the problems everyone else is having also.

  • Novell Service Desk Android App is now available

    No matter whether you are at your desk or at a remote location, you can now manage and support your customer requests using your favorite Android mobile device. We are pleased to announce that Novell Service Desk Android mobile app is now available f