SSO not working for BW reports as iview in Portal

Hi,
I have setup SSO for netweaver portal 7.0 and BI 7.0 as backend system.
I have used SAPLOGONTICKET for SSO.
1. Now if I create iView for some transaction , its working fine. UserID and password is not asked and i'm getting into BW sytem.
2. But if I create an iView for BW report type 3.x and pull a report from BI system, it is showing a login screen to me. now I have to give clientno, userID and password to get into the system.
Can please some help me in this issue.
is there some specific configuration I need to make..?
Thanks in Advance.
Regards,
Saurabh

Hi Kiran,
Thanks for your reply.
My problem is now solved. Actually transaction iViews use connectors to connect to the backend system, where as BW reports iviews use WAS to connect to the backend system.
while accessing the portal i was not giving the fully qualified name in URL.
while accessing the portal correct way is to use the URL is :
http://hostname.domain:port/irj/portal ...I was missing the domain portion.
Use the fully qualified name so that both EP and backend systems comes in same domain.
Regards
Saurabh

Similar Messages

  • Security option is not working for PDF Report

    security option is not working for PDF Report , e.g password , bug??

    what version of SQL Developer are you using?

  • Tabular form validation(Checkbox) is not working for Interactive report

    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.

    Saroj Nayak wrote:
    Hi,
    I am using the oracle apex 4.0 and oracle 11g.
    I have written a below select query on interactive report as
    select
    apex_item.checkbox(1,RESIDD)||apex_item.hidden(2,RESIDD) row_selector,
    apex_item.text(3,RESNUM) as resnum
    from "PDRRES"
    and written the validation to display the error message( Function returning error text ) as
    DECLARE
    vRow BINARY_INTEGER;
    BEGIN
    -- apex_application.g_print_success_message := NULL;
    FOR i IN 1 .. apex_application.g_f01.COUNT
    LOOP
    vRow := apex_application.g_f01(i);
    apex_application.g_print_success_message := apex_application.g_f01(i)||'-'|| apex_application.g_f03(vRow) ;
    END LOOP;
    END;
    Output : No data found error message
    As far as it work for sql report with above logic because apex built in row selector
    but it fails in case of interactive report for some reason.
    Please suggest.NO DATA FOUND usually occurs when an i mplicit select does not find anything. It can also occur when referencing a collection element that has not been defined.
    You have 2 collectinons in the code you posted, apex_application.g_f01() and apex_applciation.g_f03. Since you are looping therough the COUNT attribute of g_f01 its reference ("I") is probably okay and the value store in vRow is probably not right. You can check this by using RAISE_APPLICTION_ERROR to see the value something like
    raise_application_error(-20000,'vRow="'||vRo2||'"');Remember that working with checkboxes is tricky. If the box is not checked nothing will be sent. You may need to define a default value when no value is submitted.

  • SSO not working for a custom WDA application that runs in the Portal

    I have a Portal system (Java stack, NW04s) that has an iView of type webDynpro ABAP. The custom Web Dynpro ABAP application resides on another system (ABAP stack, running ECC6). We have configured the trust relationship between the Portal and the ECC system as per
    http://help.sap.com/saphelp_nw04s/helpdata/en/61/42897de269cf44b35f9395978cc9cb/content.htm
    We know this is working since we are able to run ESS. However, for the custom WebDynpro ABAP application, when calling it for the first time, a logon screen shows up. How can we get rid of it? what are we missing to have SSO work for the custom WebDynpro application?

    Please check this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d35bb690-0201-0010-988a-d669c8530518
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.highlightedcontent?documenturi=%2fhelp%2fsdn_help_nw04s%2fsaphelp_nw04s%2fhelpdata%2fen%2f5e%2f6c85c3edf942f39349a1e337434d29%2fcontent.htm
    Hope it helps.
    Regards,
    Mona

  • Highligh current row not working for classic report in 4.1

    Hello experts,
    One of our customers is migrating applications from APEX 3.0 to 4.1.
    All their applications use classic reports because interactive reports didn't exist in 3.0.
    The end users of the applications like the row color changing when they hover there mouse over the rows (highlight current row) and they insist on keeping this "functionality" in the applications.
    For some reason, this "functionality" doesn't work anymore after the migration to APEX 4.1.
    I thought it was something theme related so I created a new application with a classic report, tried some APEX built-in themes, and with none of them, I manage to get the highlight current row working.
    For interactive reports it is not an issue.
    Is this an undocumented no-longer-available feature of APEX 4.x or has there changed something which caused this functionality to stop working??
    Regards,
    Bart

    Hi,
    I created a service request for this issue, and the support analyst that helped me confirmed that this is a bug:
    "I have created the bug :
    Bug 13584762 - ROW HIGHLIGHTING NO MORE WORKS IN CLASSIC REPORT IN APEX 4.1
    While working on the problem , I have found the following solution in order to make the Row HighLightng work in APEX 4.1
    In the apex_4_1.min.js (file located in images\javascript ) , Search for :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("hover",function(b)
    and replace "hover" by "mouseover mouseout" :
    After the modification :
    function setRowHighlight(a){apex.jQuery("#report_"+a+" .highlight-row").live("mouseover mouseout",function(b)
    A refresh in the browser may be necessary in order to "reload" the file apex_4_1.min.js"
    I implemented the suggested workaround and this solved the problem!
    HTH,
    Matthias Hoys

  • CAS SSO not working for VPN Group

    Hello,
    I am trying to get SSO working for a CAS/CAM in a inband virtual gateway for VPN users coming in off a ASA5520. There are two VPN groups each with its own group policy and tunnel group. One group uses a Windows IAS Radius Server and the other a token based RADIUS RSA device.
    Users use the AnyConnect client to connect to the ASA where they are dumped into a vlan. SSO works for the group that uses the Winodws radius server. On the CAS the Cisco VPN Auth server has the Unauthenticated Group as the default group, and then I use mapping rules (Framed_IP_Address) to get the different vpn groups into the right roles. This works for the one group, but since SSO is not working on the second group the CAS never gets the chance to assign them into the correct role.
    The only thing I got is this from the ASA:
    AAA Marking RADIUS server billybob in aaa-server group cas_accounting as ACTIVE
    AAA Marking RADIUS server billybob in aaa-server group cas_accounting as FAILED
    I am so close but cant call this done yet....

    Hey Faisel,
    Thanks for the question.
    This is the stange thing. For days Group A (Windows Radius Server) was working and Group B (RSA Radius Server)  would not work. Then for some reason I had to reboot the CAS and BOOM...Group B started working and Group A STOPPED working.
    So on the ASA I now get these:
    AAA Marking RADIUS server cas2-hvn-3515 in aaa-server group cas_accounting2 as ACTIVE
    AAA Marking RADIUS server cas2-hvn-3515 in aaa-server group cas_accounting2 as FAILED
    Where cas_accounting2 is the AAA server group for Group A
    On the ASA I can see that the FW sends a packet to the cas:
    "send pkt cas2-hvn-3515/1813"
    but the FW never gets an answer back from the CAS for Group A whereas with Group B I can see the response from the CAS.
    "rad_vrfy() : response message verified"
    What can I look for in the CAS logs to see where the problem is. I will try and setup a packet capture on the CAS and debug it too.

  • Sample Custom SSO not working for external userid mapped in userprofile in 11.1.1.8

    Hi,
    WebCenter sites v: 11gR1 (11.1.1.8)
    I am in the process of validating Custom SSO Behaviour. I am facing hurdles. I have mentioned below the steps I preformed.
    1. Deployed customizable-sso-11.1.1.8.0 .jar in cas/WEB-INF/lib
    2. Copied SampleLoginform.jsp file to cas/fatwire
    3. Copied the customSampleSSObeans.xml configuration file into cas/WEB-INF/spring-configuration folder.
    4. Modified the following bean
            <bean id="customUserConfiguration" class="com.fatwire.wem.sso.cas.sample.SampleConfiguration"
                    p:casLoginUrl="http://xyz.com:7001/cas/login"
                    p:resolverUrl="http://xyz.com:7001/cs/custom/customCsResolver.jsp"
                    p:resolverCredential-ref="resolverCredential"
                    p:traceFlag="false"
                    p:sampleDomain="mydomain"
                    p:sampleFormUrl="http://xyz.com:7001/cas/fatwire/SampleLoginForm.jsp"
                    />
      Note: p:resolverCredential - I found it new in this bean, as it is not referenced anywhere in the WCS documentation. This resolverCredentail is actually another bean configured in customResolverCredentail.xml under spring-configuration folder. Also, I am not sure if p:sampleDomain has to be modified to suit the environment. Currently I have retained the default value of "mydomain".
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
            xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
            <description>
                    This defines the SitesCS username/password credentials needed for identity resolution
            </description>
            <bean id="resolverCredential" class="com.fatwire.security.common.SecurityCredential">
                    <property name="username" value="fwadmin" />
                    <property name="password" value="xceladmin" />
                    </bean>
    </beans>
    The default value mentioned for property name username and password were "@username@" and "@password@" respectively. I changed them to fwadmin/xceladmin as in the file above.
    5. In WCS Admin UI, I added a user atribute "samplesso" and assigned unique value for couple of users
    6. Restarted CAS.
    7. On accessin wcs url, I am now redirected to custom sample login page(SampleLoginform.jsp)
        Following are the form fields: username, password, domain, external userid
    8. It works fine, if I submit wcs credentails for username,password and default domain (mydomain) and I am taken to the WCS Admin UI
    9. But if I submit domain(mydomain) and mapped user(unique value in sep 5) against userid, I get an error page. Following is the error
    org.springframework.webflow.engine.ActionExecutionException: Exception thrown executing [AnnotatedAction@5f82e73 targetAction = com.fatwire.wem.sso.cas.web.CustomLoginViewAction@68b18314, attributes = map[[empty]]] in state 'viewLoginForm' of flow 'login-webflow' -- action execution attributes were 'map[[empty]]'; nested exception is java.lang.SecurityException: java.lang.NullPointerException
    What is the cause and fix for the problem. Am I supposed to perform any other step?
    Is there anything specific to p:resolverUrl="http://xyz.com:7001/cs/custom/customCsResolver.jsp" ? I did not do any deployment corresponding to this, as there was no such step mentioned in documentation.
    Thanks

    I just recently implemnted this for my current client.
    http://xyz.com:7001/cs/custom/customCsResolver.jsp
    The context "cs" here is important. For my current client, we installed 11G with context "cm". So for us the the resolver URL is:
    http://xyz.com:7001/cm/custom/customCsResolver.jsp  and when we login into FatWire we use:
    http://xyz.com:7001/cm/login.
    If you look in your Sites application folder you should see <Sites App/Context>/custom/customcsResolver.jsp. In the Jsk it's located at:
    C:\Oracle\WebCenter\Sites\11gR1\App_Server\apache-tomcat-6.0.32\webapps\cs\custom\customCsResolver.jsp
    Regards,
    Robert Jackson

  • PDF preview in workspace not working for Financial Reporting

    I have an issue in workspace with doinga PDF preview on a Financial Reporting report. PDF preview works fine via workspace but only FR has the problem, here is the error that is displayed. I am running FR server on AIX and the print servers are on windows platform. We have two installations pointing to same windows box for print server. The 1st if FR for HFM running all on windows, the 2nd is FR on AIX for an Essbase installation. The HFM FR install works great via workspace but the the 2nd produces the following error:
    Error 500--Internal Server Error
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.5.1 500 Internal Server Error
    The server encountered an unexpected condition which prevented it from fulfilling the request.
    We made the port for the print server static(it is normally dynamic) so we could open the firewall port to the print server and have verifed it is open.
    Does anyone have a suggestion of what could be producing the Internal Server Error. I should mention that we use Weblogic for the web deployment of workspace if that should have any bearing on the issue.

    Firewall issues were preventing this problem.

  • Global Temporary table is Not working For Pdf Reports

    Hi all
    we are using oracle db-10g, developer suite-10g.
    While generating the Report for the satisfying several conditions we are fetching the data into
    Global temporary table
    On commit preserve rows
    from this temp tables excel is generated properly. but pdf is not generating can anybody exaplain why it is not generating and what to do for that
    Thank you

    query and view are not possible
    here i am giving one of the requirement
    my project is belongs to inventory project.
    report should be generated on the different selection criteria like
    1)user can select one or more product codes
    2)for that product code one or more item codes can select
    like this so many different selection are there more than 12 selections from different tables
    For this each different selection product code into gtt_prod_cd and item_cd into gtt_item_cd. after that performed the query and in where clause we are comparing the values with gtt.
    can you please suggest me what to do for PDF Reports

  • Complete Book in PDF is not working for one report

    <p>It's strange.  All of the other books run fine.  If wecreate another copy of this troublesome book, still have the sameproblem.  All of the reports in the book can be readindividually.  Is there a limitation to the number of reportsin a book to Complete Book in PDF?</p><p> </p><p>Thanks</p>

    Its working now. We just kept trying to reinstall the tools and restarting indesign. On the 4th time the buttons started working. I can't explain why it finally worked, just that it is working now.

  • Export in Query Ready mode not Working.for FR reports in HTML view

    Hi,
    When we run the FR reports in HTML view in Workspace,there is an option at the bottom to "Export in Query Ready mode",it's not exporting the report in Smart view excel .
    But some of our users are able to export the report in SV.We are using EPM 11.1.1.3. I have checked the IE 7 settings with other users and it's same.
    Does anybody has any idea what could be the cause?
    Thanks in advance.
    BC

    It is the behavior, Query ready mode will only pulls the members which are in Essbase (no FR calculated fields)
    Regards
    Celvin
    http://www.orahyplabs.com

  • Keyshield SSO not working for Vibe 4.0

    Hi All,
    Using keyshield from a long time ago (version 5.4 Build 2014-09-30 16:46:30).
    I was using it with previous version of Vibe and Filr (by installing the java servlet).
    Now Keyshield is included in Vibe 4.0 and Filr 1.2.
    With Filr, everything is fine. With Vibe 4.0, it doesn't work.
    Keyshield configuration parameters are the same in both products and are accepted as Valid by the administration page in both products also.
    But, even with a keyshield client in green state, it works fine with Filr but it doesn't work with Vibe 4.0.
    I try to find tracks in the logs but i've got nothing (logs, catalina.out, etc ...).
    Did somebody test keyshield ? Is there a special way to try to debug it ?
    Many thanks in advance

    worked! :)

  • SSO is not working for SAPGUI for HTML

    Hi Experts,
    We have configured SSO between EP and ECC.SSO is working fine for SAPGUI for windows.But it is not working for SAPGUI for HTML.
    Workflow iViews are getting error.
    "SWITCH to HTTPS does not occur."
    The domain names are different for EP and ECC.
    Please let me know ,is there any settings need to check.
    Regards,
    Bala.

    Hi
    The point here is that your Portal server is on a different domain, so you have to configure the logon ticket issuer (portal) to generate logon ticket for multiple domains.
    http://help.sap.com/saphelp_nw04s/helpdata/en/a0/88a340fa432b54e10000000a1550b0/frameset.htm
    Best regards
    Johann

  • LOVs not working in Webi Report for SAP BO 4.1 SP 2 Patch 3

    Hello ,
    I have developed reports and universes in SAP BO 4.0 SP 5 and i have migrated those reports to higher version of BO which is 4.1 SP2 Patch 3.
    My universe is working fine with LOVs but when i run the webi report , the LOVs arent working.
    have anyone facing the same issue. any idea why the LOVs arent working on higher version.?

    Hi Victor,
    The List of values we will assign in universe in order to get filtered data works on universe query panel
    but the same objects when i am using in report(webi report) , the List of values are not working .i.e
    they are not getting displayed in webi report.
    for ex: i have country object having country names as LOVs and state objects having state names as LOVs . Now when i select Country value , the LOVs of state objects should get filtered and shows only states which belongs to country .
    the above logic is not working in webi report , i am only able to select country and when i go for state, the state names do not get filtered.
    please let me know why this is happening in the SP2 patch 3 version and its working fine for SP2  , but the chrome issue gets solved after applying patch 3 and not if we only upgrade to SP2.
    the webi reports are not working in chrome browser if we using SAP B04.1 SP2 and lower version
    but the LOVs are not working in SAP BO 4.1 SP 2 patch 1, 2,3.
    kindly help me with the issue

  • Portal buttons not working for transaction type iviews

    Our buttons on our portal transaction programs quit working.  We are currently on ecc6,ehp5, portal 7.02.  The buttons still work on our test and production systems, so it's not a browser issue.  The buttons work on the newer webdynpro programs in our dev portal.  Please get back with me if you have any ideas on how to fix this button problem.  Thanks, Mike

    Hi Ajay,
    Double posting
    [ITS services not working for Transaction iview with gui for html -;
    Thanks
    Siva

Maybe you are looking for

  • Workspace Configuration HTTP Server: Apache, IIS or others?

    When I configure workspace under Hyperion Foundation, it asks me to configure the HTTP Server and gives me a choice of using Apache or IIS. My question is, are these the only two choices of HTTP Server for workspace? What if I had say Oracle HTTP Ser

  • [OIM] Assignment task adapter, need howto

    Hello people, I am trying to do a dynamic assign of a process task. I create the Assignment task adapter, and it appears with two return value. Someone can tell me how to manipulate this variables? I know that one is for storing type (user or group)

  • OS X 10.4.10 MacAlly RFKey Incompatibility?

    When 10.4.10 installed, my RFKey stopped working. Multiple attempts to install it, or remove and re-install it did nothing. Has anyone also had this problem? Has anyone found a fix? MacAlly has not responded to my request for assistance.

  • USERID is transfered as empty .....

    Hi all, I am working on the File2 Proxy Interface..... My Interface is working good, except I have a field as user Id coming from Legacy and when the File XML Data is transferred to Proxy is coming as empty for USERID Field..... Did anyone get this t

  • ITSMobile00 test service keep asking to logon

    Hi, We are on ECC 6.0 With Basis SP 13. I published ITSMOBILE and ITSGENMOBILE in SE80 to INTERNAL. In SICF, when I perform a test service on itsmobile00, it gives me a logon screen, I enter the data but it does not move from there. It keeps asking m