REP-50171 Authentication Failed running report under portal

i am trying to run a 6i report via rwservlet using 9ias reports services.
i am running it from the command line successfully [rwclient server=test1
userid=test/test@testdb report=c:\reports\myreport.rdf destype=cache
desformat=html]. i am not able to migrate this report at this time.
i defined the report server to the portal
[http://hostname:port/reports/rwservlet], defined the report to the portal
[myreport.rdf] and associated the two. i am getting the following
error:
REP-50171 Authentication Failed
i tried commenting out the [security id="rwSec...] entry in the
test1.conf under my 9ias_mid_tier_home/reports/conf, but the error
still occurs. i cannot find the error documented anywhere. can
anyone tell me what it means?

It's not clear to me how you run the report when you got the error message -- from Portal or from URL directly?
Anyway please check if you have provided valid user name/password, and in Reports server config file, It is connecting to the same portal which you have registered Reports server/rdfs.
-Jeff

Similar Messages

  • REP-50171 Authentication Failed

    i am trying to run a 6i report via rwservlet using 9ias reports services.
    i am running it from the command line successfully [rwclient server=test1
    userid=test/test@testdb report=c:\reports\myreport.rdf destype=cache
    desformat=html]. i am not able to migrate this report at this time.
    i defined the report server to the portal
    [http://hostname:port/reports/rwservlet], defined the report to the portal
    [myreport.rdf] and associated the two. i am getting the following
    error:
    REP-50171 Authentication Failed
    i tried commenting out the [security id="rwSec...] entry in the
    test1.conf under my 9ias_mid_tier_home/reports/conf, but the error
    still occurs. i cannot find the error documented anywhere. can
    anyone tell me what it means?

    It's not clear to me how you run the report when you got the error message -- from Portal or from URL directly?
    Anyway please check if you have provided valid user name/password, and in Reports server config file, It is connecting to the same portal which you have registered Reports server/rdfs.
    -Jeff

  • Error while running reports in Portal

    Hi ,
    While running a crystal reports in portal a pop-up appears with the following error message
    " Sorry = you are not logged into this server. Ensure that your user name and password, as well as the APS name are correct. "
    Can anyone help on this?

    Can you provide more information about the SDK, product version, application server, etc. that you are using?
    That error message indicates that you are trying to retrieve a report from BusinessObjects Enterprise without entering the authentication information.

  • Unable to run report on portal

    Hi,
    I was able to run a BI report on portal until somedays back.
    When I click on the link instead of the selection window a blank screen appears and nothing happens.
    I hav checked my role with the security team and there has been no changes.
    I have reinstalled my SAPGUI and also reformated my PC but all in vain.
    Please suggest what can be the reason or how can I overcome this issue.

    thanx a lot for ur response
    Problem is resolved now by implementing your solution
    i had some queries
    1-what is purpose of setting CacheDir parameter ?
    set as <property name="cacheDir" value="D:\cache"/>
    2-I had 2 projects like proj1 and proj2 in separate directories with their own forms and reports in separate directories under parent directory proj1 and proj1
    e.g.
    parent directory proj1 contains forms reports,menus etc
    parent directory proj2 contains forms reports,menus etc
    i manage to configure proj1 forms configuration by making some modification to formsweb.cfg
    1-WorkingDirectory=d:\proj1\forms
    2-form=login.fmx
    and configure report for proj2 by making some modification to rep_shakeel.conf
    <property name="sourceDir" value="D:\proj1\reports"/>
    proj1 is working fine but how to configure proj2 at the same application server ?
    please suggest!

  • Running reports in Portal- URL vs RDF

    I've got a content area in portal 3.0.8 which contains two items-- a URL link to my report, and an Application Component which is the same report registered in portal as an RDF. The report runs fine with the URL link, but hangs when I try to run the RDF component.
    My URL link is defined as follows: http://greap004:7777/dev60cgi/rwcgi60?server=reportserver+report=reportname.rdf+destype=cache+desformat=htmlcss+userid=username/password@DBname+paramform=yes
    However, the registered RDF does not prompt for a DB login or bring up the parameter form. It just hangs for about 5 minutes and then returns the following error:
    Error: The requested URL was not found, or cannot be served at this time. Oracle Reports CGI - Report Job was cancelled upon user request.
    I want to be able to register reports as RDF's rather than using URL links.

    hello,
    you should take a look at our whitepapers in the Internet Deployment and Security section of our product area http://otn.oracle.com/products/reports
    there you find a walkthrough of the configuration for running registered reports in portal.
    regards,
    the oracle reports team

  • REP-300 Error while running report using App Server

    Hi,
    I am currently trying to run a report using the Application Server.
    This report is being called from a form.
    I am able to connect to the report server and all configurations seems to be correct.
    But when I execute the report from the form, I am getting error "Unable to run report"
    When I look at the error message in the Report Server queue, I find
    "REP-300 Table or View does not exist.."
    But that table does exist in the database.
    What could be be the problem ?
    Please help.
    The code in the form that calls the report is
    report_id := FIND_REPORT_OBJECT( report_name );
    vc_user_name:=get_application_property(username);
    vc_user_password:=get_application_property(password);
    vc_user_connect:=get_application_property(connect_string);
    vc_connect:=vc_user_name||'/'||vc_user_password||'@'||vc_user_connect;
    SET_REPORT_OBJECT_PROPERTY(report_id ,REPORT_OTHER, 'paramform=yes     p_user_connect='||vc_connect ||' p_servername=repsrv'||' p_action=<host>/reports/rwservlet?' );
    v_rep := RUN_REPORT_OBJECT(report_id, parmlist_id);

    The report is working perfectly fine when I run it from the Report Builder. I get the correct output.
    I am getting this error when I try to run the report through a Report server.
    I run the form from the Forms 10g builder. This form has a button "Run Report". When I click on the button the report is run using the Report server.
    This is when I get the error.
    There are other forms that are also called via the same form. Those work fine. The only difference between those forms and this one is that this one has user parameters passed to it. This one also has an attached library attached to it.
    The code in the Form to call the report is
    report_id := FIND_REPORT_OBJECT( report_name );
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_EXECUTION_MODE, BATCH);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_DESTYPE, FILE);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_DESFORMAT, 'pdf');
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_SERVER, 'rep-vena01-xp');
    v_rep      := RUN_REPORT_OBJECT(report_id, parmlist_id );
    v_jobid := substr( v_rep, length( v_reportserver) + 2, length(v_rep) );
    v_repstatus := REPORT_OBJECT_STATUS( v_rep );
    IF ( v_repstatus = 'FINISHED' ) THEN
    v_url := '/reports/rwservlet/getjobid' || v_jobid || '?server=' || v_reportserver ;
    web.show_document( v_url, '_BLANK' );
    END IF;

  • Reading Crystal Report under Portal 8.1

    Hi,
    Does anyone try to use crystal report api to read the report in portal
    8.1? We try the sample but it's not working.
    Andy

    Not answered, just close the post.
    However, if anyone encounter problem on parameter token as described, try upgrade to patch 10.  i was informed multiple value with non standard fields are fixeed in that patch, however, i have not tested yet.

  • REP-56048 Error while running report

    Hi,
    While generating output to excel file the report crashed with the following error.
    REP-56048: Engine rwEng-0 crashed, job Id: 1081
    It however executes fine with PDF. Please suggest a solution.
    Report Server Version: (10.1.2.0.2)
    Thanks and Regards
    Babar Baig

    To prevent the error:
    REP-1247: Report contains uncompiled PL/SQL
    recompile the rdf file on the staging application server. use the following command to recompile it.
    rwconverter.sh userid=scott/tiger@test source=sample.rdf batch=yes dtype=rdffile stype=rdffile overwrite=yes
    This will takes the source rdf file and recompile it to an rdf file of same format as the operating system of the app server.
    For example, if I use reports builder on windows pc to create the rdf file and then move it to a unix box that is hosting the app server. Some reports will get this error for the first time they are run. The subsequent times, they might not get the same error. The above given syntax will prevent this from happening.
    I have tried it in my production env and it works like a charm. If you need further help, email me at [email protected]

  • Error while running wad report in portal

    Hi,
    when we try to run report from portal we get the following error
    " Label has specified invalid InfoObject = '0RPM_IHGU__0RPM_PFGU' "
    On double clicking i get the following :
    Diagnosis
    You have assigned an invalid attribute IOBJNM to the label. You cannot drag text to this InfoObject. The invalid value is 0RPM_IHGU__0RPM_PFGU
    System Response
    Procedure
    Assign a valid InfoObject to the Web item in the Web Application Designer, or override the specification in the Web template by assigning a valid value assignment to the parameter IOBJNM. All characteristics and structures are valid that are available in the query from which the query view obtains its data.
    Procedure for System Administration
      Notification Number RSR_WWW 101 
    The link will be calling 1 business content web template.
    It was working fine in Development system. We faced this problem after transporting to quality.
    Please provide pointers to resolve this error.
    Thanks & Regards,
    Rathy

    Hi,
    The system is unable to identify the InfoObject which has been assigned to the Web Item,
    Check if the InfoObject has been deactivated or is still available in the Query, the object seems to be a Navigational Attribute also check if anybody has changed the setting of the object to some thing else say display.  I get this message very often in development because of specifying wrong Structure Element to the IOBJNM
    Cheers.
    Ranga.

  • Error while Executing reports in Portal

    Hello All,
    We are facing the following Error message while running reports in Portal.
    We have recently updated the EP Patch to 17..  since then we are facing the issue.
    500 Internal Server Error
      BEx Web Application
    Failed to process request; contact your system administrator
    Error Summary
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail was:
    com/sap/portal/services/api/connectorgateway/IConnectorGatewayService
    Log ID
    001A4B0717C8005E0000014900002E07000498168CA315E3
    While checking the KM Content, we are getting the following error:
    Runtime Error
    An exception occured while processing the request.
    Additional information: com/sapportals/wcm/util/uri/RID
    Exception ID = 7004f63e-daf3-2d10-689e-add88da33d97      Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 06:27_27/12/10_0014_49226950
    Refer to the log file for details about this exception.

    Hi Sneha,
    Please check the default trace log file in NWA. Also verify that BI System and portal system should be same SP level.
    If there is any mismatch in the SP level then issue might comes. So check SP level for Bi and Portal.
    Regards, Arun Jaiswal

  • As I see the "Command denied" in Failed Attempts report

    Hello.
    In Failed Attempts report, under "Author-Failure-Code" I get "Command denied". Is there any way to record the commands that the user wanted to enter?
    Thanks!.

    Thanks for responding.
    failed in the report do not show me the Command denied . attached configuration.
    I am using
    CiscoSecure ACS
    Release 4.2(0) Build 124 Patch 13
    ***Tacacs+ Configuration
    aaa new-model
    aaa authentication attempts login 1
    aaa authentication login default group tacacs+ local
    aaa authentication enable default group tacacs+ enable
    aaa authorization console
    aaa authorization config-commands
    aaa authorization exec default group tacacs+ local
    aaa accounting exec default start-stop group tacacs+
    aaa accounting commands 0 default start-stop group tacacs+
    aaa accounting commands 1 default start-stop group tacacs+
    aaa accounting commands 15 default start-stop group tacacs+
    aaa accounting connection default start-stop group tacacs+
    aaa accounting system default start-stop group tacacs+
    tacacs-server directed-request
    tacacs-server key Presharedciscoxx
    tacacs-server host 192.168.1.10
    ip tacacs source-interface Loopback0
    aaa authorization commands 15 default group tacacs+ if-authenticated

  • Granting Run Report permissions on a specific report only

    Guys,
    Is there a way to grant access to users only on a specific report so that users can run that report.
    For example, we want to give access to a user group on a report "All deployments for a specified package and program".
    Environment: SCCM 2012 R2
    Steps Performed:
    1. Created a security role called "Run specific reports"
    2. Selected permissions for this role are ONLY, "Run Report" under Packages node
    2. Added user group TB\XYZ in this role
    As a result:
    - User groups TB\XYZ were added in the security of all the reports in category "Software Distribution - Package and Program..."
    - Users run the report "All deployments for a specified package and program" but don't see any values in Package drop down list. If we supply report parameter (package ID) in the report URL, it still does not work and shows incorrect
    parameter value.
    - Users can see all other reports and folders in SSRS e.g. when they access
    http://servername/reports - this is not what we want.
    Requirements:
    1. What we want is to grant user group access only on one report "All deployments for a specified package and program" and all the related reports so that users can drill down further reports.
    2. User cannot read data using SCCM console
    3. User should not see/run other reports (we want to provide users direct report URL passing package/program ID as a paramter)
    -- S Ahmad

    How is granting read permission only to those object that you want them you have access to giving them too much permissions?
    The permission in CM12 R2 are far better (from a reporting stand point) than in CM12.
    Exactly which report are you trying to grant accces too and why?
    What is the business case for this?
    I just want to grant permissions on "All deployments for a specified package and program" report in such a way that users can further drill down to following three reports:
    -Status of a specified package and program deployment
    -All system resources for a specified package and program deployment in a specified state
    -Package and program deployment status messages for a specified client and deployment
    So total of 4 reports. In SCCM 2007, it was easy to give access in the properties of the reports only (asp based reporting). However in CM12 (or R2), reporting is based on SSRS and what I've found is that we have to grant rights on objects those are part
    of above reports e.g. packages, collections, workstations etc.
    Giving "Run Report" rights to users does not grant access on view the information related to packages, collection or workstatons so report shows as blank. Another problem with "Run Report" permission for "Packages" in Security role is that it grants "Run
    Report" access to all the reports in Software Distributions section.
    -- S Ahmad

  • Running reports: "REP-0238: Security server authentication failed"

    Good afternoon,
    I installed Oracle9iAS Release 2 v.9.0.2 (Application Server) on Sun-Solaris as well as
    Oracle 9iAS Reports Services module. I simply want to run a report from a command line
    rwserver.sh. I constantly get the message "REP-0238: Security server authentication failed".
    What is to be done to enable authentication?
    Thanks.
    GM.

    hello,
    a) rwserver.sh is the script to start a reports server. if you want to run a reports-job you should either use the command rwclient or use the servlet via a web-browser.
    b) when installing iAS R2 the reports server is running in secure mode. this means when you run a report via the browser you will get a login-screen where you have to provide a vaild SSO username/password. if you are running from the commandline, you have to provide the paramter AUTHID passing a valid SSO username/password.
    regards,
    philipp

  • Unable to run a report through Portal.

    Hi All,
    I am not able to run a particular BEX report through portal.
    I get a white screen and no pop-up for selections and later nothing happens.
    I have checked my Roles but no changes has been made.
    My other colleagues are able to run the report.
    Please let me know what could be the possible reason/solution for such an issue.

    are different roles assigned?
    i.e., for you and for your colleagues.  Please try login with your id in their PCs and vice versa.
    let check the compatibility. if you are failed to execute in that PCs also, then it should be authorization issue. Ask your basis folks to add that particular info area and info cubes to your role.
    Hope this would give you clear pic.

  • Authentication failed on device 3 times. Failed to detect SSH version running on the device. PRIMARY-STARTUP config Fetch Operation failed for TFTP

    I have devices loaded but new devices keep getting this error "Authentication failed on device 3 times. Failed to detect SSH version running on the device. PRIMARY-STARTUP config Fetch Operation failed for TFTP" - which trying to get configurations. I am using LMS 3.0.1
    I tried to TELNET on devices via Putty port 22 no good. Please help?
    Name Version License Status Size CiscoWorks  Common Services 3.1.1 Licensed Not applicable  Campus  Manager 5.0.3 Purchased 1500  CiscoView 6.1.7 Licensed Not applicable  CiscoWorks  Assistant 1.0.1 Licensed Not applicable  Device  Fault Manager 3.0.3 Purchased 1500  Internetwork  Performance Monitor 4.0.1 Purchased 1500  Integration  Utility 1.7.1 Licensed Not applicable  LMS  Portal 1.0.1 Licensed Not applicable  Resource  Manager Essentials 4.1.1 Purchased 1500

    Showing 1-1 of 1 records
    Go to page:
    of 1 pages
    Device Name
    SysObjectID
    Model
    Device Status
    Inventory Status
    Inventory Last Updated Time
    Config Status
    Config Last Updated Time
    1.
    R2020012_01
    .1.3.6.1.4.1.9.1.576
    Cisco 2811 Integrated Services Router
    Normal
    Success
    Jan 13 2011 10:43:49 EST
    Failed
    Jan 13 2011 10:37:24 EST
      Rows per page:
    20 50 100 500
    Go to page:
    of 1 pages

Maybe you are looking for

  • ARTWORK AND PICTURES QUESTION

    I've been importing photos into my IPOD, but it seems everytime I bring in a new folder of pictures, it REPLACES the pictures I already have instead of just adding to them. Also, I've been selecting all my music and clicking the Get Artwork button. B

  • Runtime in Java- Beans

    I have the requirement to write a Java- Bean, which calls a command line Application on the Client. The Problem is: if I call a command- line Application, it seems that Java grabs the Input and Output- streams (I dont see anything in the command line

  • CS5 Misinterprets Layered PSDs with Spot Channels

    I haven't seen this mentioned yet; if you routinely use layered Photoshop files with spot channels, and might be opening older files into CS5 be warned that CS5 appears to misinterpret the tonal values in the spot channels of these documents. Steps t

  • Equium P200 problem with WLAN networking

    I have recently bought Equium P200-1ED. When Im disconnected from wireless network the laptop cant reconnect itself and it cant see any networks available. I have to restart my laptop to connect again. I have checked the settings and everything seems

  • Explain Plan doesn't show predicates.

    Not sure what I'm not doing correctly but I don't see predicates in my explain plan. I'm using 1.1.2.25 and 9.2.0.5 Ent Ed with optimizer = choose. my compatible param is at 8.1.0 though, could that be the problem?