Unable to open the reports as url using web.show_document

Hi experts,
I am trying the access the oracle reports from oracle forms. my forms is running at port 9001 and my report is configured at port 9002.
While trying to open the report using web.show_document(), the web page opens with port 9001 and returns 404 error. But when i change the port number to 9002 in the url it opens the report sucessfully.
Please find the forms and reports link below:
http://10.180.218.158:9001/forms/frmservlet?config=kvb11g
http://10.180.218.158:9002/reports/rwservlet/getjobid97?server=rptsvr_mohadam-in_adam2unst
i tried changing the machine name to ip address in the forms.conf and reports_ohs.conf as suggested in the link below. but it dint work out.
url -
https://forums.oracle.com/thread/1105289
http://prasadmadhasi.com/2011/11/19/changing-presentation-services-port-number-in-obiee-11g/
my reports_install.properties is given below,
#Reports Install Properties
#Fri Sep 13 16:10:59 IST 2013
WLS_USER=weblogic
USE_REPORTS_BUILDER=true
OHS_COMPONENT_NAME=ohs1
REPORTS_MANAGED_WLS_PORT=9002
SERVER_NAME=RptSvr_MOHADAM-IN_adam2unst
REPORTS_MANAGED_WLS_HOST=10.180.218.158
FORMS_CONFIGURED=true
ORACLE_INSTANCE_NAME=adam2unst
REPORTS_APP_DEPLOYMENT_DIR=C\:\\Oracle\\Middleware\\user_projects\\domains\\kvbdomain\\servers\\WLS_REPORTS\\tmp\\_WL_user\\reports_11.1.2\\uxabaw
INPROCESS_SERVER_NAME=RptSvr_MOHADAM-IN_adam2unst
MANAGED_SERVER_NAME=WLS_REPORTS
OHS_PORT=8891
DOMAIN_HOME=C\:/Oracle/Middleware/user_projects/domains/kvbdomain
COMMON_COMPONENTS_HOME=C\:\\Oracle\\MIDDLE~1\\ORACLE~1
ORACLE_INSTANCE=C\:\\Oracle\\Middleware\\adam2inst
REPORTS_APP_CONFIGURATION_DIR=C\:\\Oracle\\Middleware\\user_projects\\domains\\kvbdomain\\config\\fmwconfig\\servers\\WLS_REPORTS\\applications\\reports_11.1.2\\configuration
OHS_HOST=MOHADAM-IN.in.oracle.com
DOMAIN_NAME=kvbdomain
ORACLE_HOME=C\:\\Oracle\\Middleware\\Oracle_FRMHome
USE_OID=false
REPORTS_APP_VERSION=11.1.2
USE_SSL_FOR_APP_LDAP=false
INSTALL_MODE=deployment
SSO_CONFIGURED=false
Looking forward for your help.
Regards,
Syl

Hello,
this is the forum space
SQL Developer (Not for general SQL/PLSQL questions)
Please mark this thread as answered and post your question in Reports
Regards
Marcus

Similar Messages

  • Open doc URL: unable to open the report in same window

    Hi
    I'm trying to open a report using open doc url with "swindow=same" but still it opens in a separate window. This happens only when I use JAVA viewer. it works fine in ActiveX and HTML but I want this in JAVA viewer as i'm including this page in my JAVA application and it should open the report in the same window. I tried using "<a>URL</a>" and also target="_self" by HTML interpretation for that object but still the same problem. I'm unable to open the report in the same window by using JAVA viewer for Crystal Reports in info view. Please help me!!!
    Envirorment Details: Crystal Reports 2008 SP3, BOE XI R3 SP3
    regards
    Raghavendra.G

    I have tested that myself and It seems that HTML interpretation does not work with the Java viewer.
    I have also tried using a hyperlink containing javascript
    eg.
    javascript:window.location.href='http://www.sap.com'
    but the java viewer seems always to launch a new window before processing the command.
    I would recommend to open a case by SAP support ( httP://service.sap.com/support )
    Regards,
    Stratos

  • Unable to Open the Report Cursor

    Hi Team ,
    I have query running in Unit box and will running i am getting
    Unable to Open the Report Cursor : ORA-20000: Unable to log the message in the pipe :
    bIG Query is :-
    Select
      K.CustomerID ||','||
      K.SubscriberID ||','||
      vcsi.EquipmentSerialNumber ||','||
      K.SVODStatus ||','||
      K.PUR_CANC_EXIS_DATE ||','||
      K.PackageFee ||','||
      K.UniqueRef ||','||
      PCUS.Name
      FROM
      Select
       CustomerID ,
      SubscriberID,
      SVODStatus ,
      PUR_CANC_EXIS_DATE ,
      UniqueRef,
      sq,
      PackageFee
      FROM
       (Select
       sa_subscribers.c_id CustomerID ,
       sa_subscribers.seq SubscriberID,
       SV.SVODStatus SVODStatus ,
       SV.PUR_CANC_DATE PUR_CANC_EXIS_DATE ,
       Case
      when SV.SVODStatus='NEW' THEN   UniqueReferenceID.UniqueRef
      Else NUll
              End UniqueRef,
       UniqueReferenceID.sq,
       Case
      when SV.SVODStatus='NEW' THEN
      (SELECT distinct RP1.PARAMETER_VALUE
      FROM Sa_Vw_Request_Parameters RP1,
        Sa_Subscribers SU,
        (SELECT VC.Request_Seq,
        VC.Command_Seq,
        VC.Subscription_Seq,
        VC.issue_date,
        VC.completion_dt
      FROM Sa_Vw_Commands VC
      WHERE VC.Request_Type_Id IN ('PURSUB')) SQ
      WHERE SU.SEQ = SQ.Subscription_Seq
        AND RP1.REQ_SEQ = SQ.Request_Seq
        AND SV.su_seq = SU.SEQ
        AND UniqueReferenceID.sq = RP1.REQ_SEQ
        AND SV.SVODStatus = 'NEW'
        AND RP1.PARAMETER_TYPE in ('INITIAL PAYMENT AMOUNT')
        AND SQ.Issue_Date <= TO_DATE ('&date', 'YYYY-MM-DD')
        AND SQ.Issue_Date > ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1))
        Else NULL
       End PackageFee
                      FROM
      Select SVODStatus,PUR_CANC_DATE,su_seq,seq from
      select Case When  p.EndDate<=TO_DATE ('&date', 'YYYY-MM-DD')   Then 'CANCELLED'
       Else NULL
       End SVODStatus,
      Case When  p.EndDate<=TO_DATE ('&date', 'YYYY-MM-DD') Then p.EndDate
      Else NULL
       End PUR_CANC_DATE,
       p.su_seq su_seq,
       p.seq seq
       FROM
        select su_seq,EndDate,
        StartDate StartDate, seq
        From
        select sa.su_seq su_seq ,nvl(sa.end_date,sysdate) EndDate,
       Max(Start_date) StartDate,sa.seq seq
        from sa_services sa
        where sa.st_id ='SVD'
        and sa.start_date <= TO_DATE ('&date', 'YYYY-MM-DD')
        and sa.start_date > ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
        and (sa.end_date IS NULL OR sa.end_date >= ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1))
        group by sa.su_seq,nvl(sa.end_date,sysdate),sa.seq
      ) p
      ) WHERE SVODStatus='CANCELLED'
       UNION
      Select SVODStatus,PUR_CANC_DATE,su_seq,seq from
       ( select  'NEW' SVODStatus,
      p.StartDate PUR_CANC_DATE,
       p.su_seq su_seq,
       p.seq seq
       FROM
        select su_seq,EndDate,
        StartDate StartDate, seq
        From
        select sa.su_seq su_seq ,nvl(sa.end_date,sysdate) EndDate,
       Max(Start_date) StartDate,sa.seq seq
        from sa_services sa
        where sa.st_id ='SVD'
        and sa.start_date <= TO_DATE ('&date', 'YYYY-MM-DD')
        and sa.start_date > ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
        and (sa.end_date IS NULL OR sa.end_date >= ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1))
        group by sa.su_seq,nvl(sa.end_date,sysdate),sa.seq
      ) p
      ) SV,
        (Select RPAD(UniqueRef,12,'0') UniqueRef ,su_seq,seq,sq
      From
      ( select substr(cmd_param.Value, instr(cmd_param.Value,'SERVSEQ')+7,10) UniqueRef,
        New_sub.su_seq su_seq ,New_sub.seq seq,Req.Seq sq,
        Rank() over (partition by New_sub.su_seq  order by cmd_param.cmd_seq  ) rnk
       From
       sa_service_commands serv_cmd,
       sa_command_parameters cmd_param,
       SA_Command_TypeS CT,
       SA_RequestS Req,
       sa_Services s,
       select m.SVODStatus SVODStatus,m.su_seq su_seq,m.seq seq
        FROM
       Select 'NEW' SVODStatus,
       p.su_seq su_seq,
       p.seq seq
       FROM
        select su_seq,EndDate,
        StartDate StartDate, seq
        From
        select sa.su_seq su_seq ,nvl(sa.end_date,sysdate) EndDate,
       Max(Start_date) StartDate,sa.seq seq
        from sa_services sa
        where sa.st_id ='SVD'
        and sa.start_date <= TO_DATE ('&date', 'YYYY-MM-DD')
        and sa.start_date > ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
       and (sa.end_date IS NULL OR sa.end_date >= ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1))
        group by sa.su_seq,nvl(sa.end_date,sysdate),sa.seq
      ) p
       ) m
       Where m.SVODStatus='NEW'
       ) New_sub
      where Serv_Cmd.Req_Seq = Req.Seq
      and serv_cmd.Cmd_Type_Seq = CT.Seq
      and Serv_Cmd.Seq = Cmd_Param.Cmd_Seq
      and New_sub.seq=s.seq
      and New_sub.su_seq=s.su_seq
      and  CT.ID='ACSRPY'
      and  substr(cmd_param.Value, instr(cmd_param.Value,'SERVSEQ')+7,10)=to_char(s.seq)
      ) UniqueReferenceID,
        sa_subscribers
          WHERE  SV.su_seq =UniqueReferenceID.su_seq(+)
          and  SV.seq= UniqueReferenceID.seq(+)
          and sa_subscribers.seq=SV.su_seq)
        UNION
         SELECT  customer_id,
               Subscriber_ID,
               svod_status,
               Exis_DATE,
                          Unique_Reference,
                          UR,
                                      PARAMETER_VALUE
                    FROM
                    ( SELECT SQ.Subscription_Seq Subscriber_ID,
                                                    'EXISTING' svod_status,
                                                    SU.c_id customer_id,
                                                    SQ.issue_date Exis_DATE,
                                       to_char(RP1.REQ_SEQ) Unique_Reference,
                                       RP1.REQ_SEQ UR,
                                       RP1.PARAMETER_VALUE
                        FROM Sa_Vw_Request_Parameters RP1,
                                       Sa_Subscribers SU,
                                       (SELECT VC.Request_Seq,
                                                                       VC.Command_Seq,
                                                                       VC.Subscription_Seq,
                                                                       VC.issue_date,
                                                                       VC.completion_dt
                                                      FROM Sa_Vw_Commands VC
                                                    WHERE VC.Request_Type_Id IN ('PAYMNT')) SQ
                        WHERE SU.SEQ = SQ.Subscription_Seq
                        AND RP1.REQ_SEQ = SQ.Request_Seq
                        AND RP1.PARAMETER_TYPE in ('PRICE')
                        AND SQ.Issue_Date <= TO_DATE ('&date', 'YYYY-MM-DD')
                        AND SQ.Issue_Date > ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
        ) K,
      (select si.ID EquipmentSerialNumber,
            sv.su_Seq su_Seq
        from   sa_Service_ids si,
             sa_Services sv,
             SA_Equipment eq
        where si.Sv_Seq = Sv.Seq
        and si.id= eq.id
        and sv.st_Id = 'STB'
        and si.id_type = 'J'
                    and sv.start_date <= TO_DATE ('&date', 'YYYY-MM-DD')
                    and (sv.end_date IS NULL OR sv.end_date > TO_DATE ('&date', 'YYYY-MM-DD'))
        and si.Date_From <= TO_DATE ('&date', 'YYYY-MM-DD')
                   and (si.Date_to IS NULL OR si.Date_to > TO_DATE ('&date', 'YYYY-MM-DD') )
         ) vcsi,
       (SELECT  K.Id  Customer_Id, PD.Name Name
                    FROM
                      SA_Customers C
                    ,SA_Customers K
                    ,SA_Party_Details PD
                    ,SA_Party_Roles PR
        WHERE
                    PR.PR_Id  = C.Parent_ID
                    AND
                    C.ID=K.Parent_ID
                    AND
                    PR.RT_Id  = 'T'
                    AND
                    PR.Date_From  <= TO_DATE ('&date', 'YYYY-MM-DD')
                    AND
                    NVL (PR.Date_To (+), ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1))  >= ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
                    AND
                    PD.PY_Seq  = PR.PY_Seq
                    AND
                    PD.Date_From  <= TO_DATE ('&date', 'YYYY-MM-DD')
                    AND
                    NVL (PD.Date_To  , ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)) >= ADD_MONTHS (TO_DATE ('&date', 'YYYY-MM-DD'), -1)
       ) PCUS
    WHERE K.SubscriberID= vcsi.su_seq(+)
    AND  K.CustomerID=PCUS.customer_id(+)
    ORDER BY K.PUR_CANC_EXIS_DATE;

    Hi Saubhik
    I got the log for the report running please let me know if want any feather information.
    --- Reports Schedular    Version 8.6.80 (Democratic Republic of the Congo) ---
    2015-04-24 00:07:02 : Platform ID  : ICAP-DBSRV-01
    2015-04-24 00:07:02 : Process Name : sa_report_scheduler
    2015-04-24 00:07:02 : Process ID   : 26055
    2015-04-24 00:07:02 : Log in
    Parameter Table sa_report_scheduler:
    ALARM_PIPE_NAME          : db_alarm_pipe
    CONFIG_REFRESH_PERIOD    : 60
    DAEMON_PROCESS           : NO
    ERROR_BACKOFF_PERIOD     : -1
    LOG_FILE_DIR             : /home/sa_exec/log/
    LOG_FILE_STUB            : sa_report_scheduler
    MAX_REPORT_TIME          : 180
    VERBOSE_LOG_FILE         : NO
    WORK_DIR                 : /home/sa_exec/work/
    2015-04-24 00:07:03 : Received parameter calljobname - sa_report_scheduler
    2015-04-24 00:07:03 : Using parameter calling_jobname - sa_report_scheduler
    2015-04-24 00:07:03 : Start reports for queue G
    2015-04-24 00:07:03 : No more reports to submit.  0 new reports submitted
    2015-04-24 00:07:03 : Overdue report: PURP-0002 submitted at 2014-10-29 00:00:04
    2015-04-24 00:07:03 : Report PURP-0002 possibly failed
    2015-04-24 00:07:03 : Overdue report: PURP-006_Monthly submitted at 2015-02-01 00:00:09
    2015-04-24 00:07:03 : Report PURP-006_Monthly possibly failed
    2015-04-24 00:07:03 : Overdue report: PURP-006_W submitted at 2015-01-24 00:00:06
    2015-04-24 00:07:03 : Report PURP-006_W possibly failed
    2015-04-24 00:07:03 : Overdue report: PURP-0021 submitted at 2014-10-31 00:00:08
    2015-04-24 00:07:03 : Report PURP-0021 possibly failed
    2015-04-24 00:07:08 : Error Sending Alarm to Pipe
    2015-04-24 00:07:08 : send_pipe_alarm :  ORACLE error detected: -20000
    2015-04-24 00:07:08 : ORA-20000: Unable to log the message in the pipe :
    ORA-20000: Unable

  • I am unable to open the album tab when using I tunes

    Iam unable to open my album tab when playing I tunes but can open the song and artists tabs. I am a new user

    Quit the app, restart and then see if the button works.
    Go to the home screen first by tapping the home button.Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad byholding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Try a reset as well if that does not work for you.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Unable to create a reports server to test web.show_document in Forms 10.1.2

    Hi all,
    In Forms 10.1.2 DS, I'm trying to use the web.show_document built-in to 'generate' a report from a .jsp file. This JSP file was created by wizard through creating a report object in the Object Navigator. The code I'm using from a push button is as follows:
    web.show_document('http://<hostname>:8889/reports/rwservlet?report=<dirpath>\Sales.jsp&userid=<username/password@connectstring&server=<server_name>'
    As far as I am aware no 'reports server' has been created so I've tried the following command in a dos window:
    rwserver -install <server_name>
    but this just raises an 'alert' indicating that I should consult an installation guide to setup and install the server. So my questions are:
    (1) Is what I'm trying to do supported in DS?
    (2) What installation guide should I consult?
    Any information on this would be gratefully appreciated,
    Kevin.

    Hi Inol,
    Thanks for the response. I agree with the comment about exposing user details, I'm just doing a bit of experimenting at the moment! I tried to do what you suggest in terms of changing the URL but whether I reference the server or leave it out, the subsequent browser session seems to hang and then eventually I get a 'Page Not Found' response. On using the URL 'http://127.0.0.1:8889/reports/rwservlet/showenv?', I get an 'Access Denied' Error Page. Is there something additional I need to set up with regards to Reports to get this to work?
    regards,
    Kevin.

  • Calling a report from form using web.show_document

    Hi,
    Used the method as below, But , error reprot not found,
    Could anybody tell me how to get the server name from ny local machine as in the example servername ' Repsrv '
    /* WHEN-BUTTON-PRESSED */
    DECLARE
    vc_url varchar2(100);
    BEGIN
    vc_url:=‘http://<hostname><port>/reports/rwservlet?server='
    ||
    ‘Repsrv&report=reptest.rdf&desformat=htmlcss&destype=cache ’
    ||
    '&userid=user/pw@database&p_deptno='||:dept.deptno||'&paramform
    =no’;
    WEB.SHOW_DOCUMENT(vc_url,’_blank’);
    END;
    Thanks

    If you are attempting to print a report from a when-button-pressed trigger from within a form, you do not have to explicitly specify the server (hostname) nor the port. You can just use what I've found referred to as a virtual path to the server as I have done here:
    parm_string := '/reports/rwservlet?config=my_config&report=report_name'
         ||'&desformat=pdf&destype=cache'
         ||'&paramform=no&printjob=no'
         ||'&p_my_user_param1='||v_my_param1
         ||'&p_my_user_param2='||v_my_param2;
    web.show_document(parm_string,'_blank');
    You can specify a userid/password@connectstring within a named congifuration section of your formsweb.cfg file if necessary, e.g. my_config.
    Hope this helps.
    James K.

  • I am using UPK developer 12.1.0 single user. My sofware has crashed and needs reinstallation. Please suggest how can I take back up of my source files. I am unable to open the application and i can not locate the library backup folder on my local machine.

    I am using UPK developer 12.1.0 single user. My sofware has crashed and needs reinstallation. Please suggest how can I take back up of my source files. I am unable to open the application and i can not locate the library backup folder on my local machine.
    Also, does reinstallation takes the back up automatically or the files will be lost. Please help.

    Here are a bunch of scripts to get folder size under all circumstances.  Take your pick.
    https://gallery.technet.microsoft.com/scriptcenter/site/search?query=get%20folder%20size&f%5B0%5D.Value=get%20folder%20size&f%5B0%5D.Type=SearchText&ac=2
    ¯\_(ツ)_/¯

  • I am using Ubuntu 10.04, when I am trying to open a java dependent browser i am unable to open the content.There is some problem to load Doc,exl files with the content transfer protocol of the linked browser.

    I am working on Ubuntu 10.04,
    Whenever I use to access a site which is java based site I am having problem to see the contents.There are several instants while browsing that we clicks a link & it opens a site which is a Ms DOC/EXL file which should get opened after the click & happens with the help of java script.
    My problem is that I am unable to open the sites which is related to content transfer protocol of DOC/EXL
    Plz do help.
    Regards
    Srijan

    Hi Grace,
    The free app MPEG Streamclip may be able to convert the file to a more suitable format. It can be downloaded from the developer's site here:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Here's a User Tip by AppleMan1958 that provides some more information about MPEG Streamclip (it's about importing homemade DVDs, but similar principles apply):
    https://discussions.apple.com/docs/DOC-3951
    John

  • Error while opening the report or sheet in the desktop

    While opening the reports it gives error as " Failed to Connect Database".
    In Some reports it gives error as "Unable to Load EUL item".
    Then we check the Menu bar, Tool ----> Options --->EUL.
    We found, it is giving Default EUL as blank.
    Now it is not allowed to open any sheet as well as not allowed to create new report.
    Can any one tell how to resolve this problem?

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • OBIEE 10G - unable to open a report

    Hello All,
    I am getting the below error when I am trying to open a report which is saved using apostrophe(') in the name of the report, for example my report name looks like Vendor's list. Every thing was good while i was developing the report, saved it using an apostrophe, but now when i am trying to open the report i get below error, i tried using IE, Mozilla but in vain.
    Version - 10.1.3.4
    Due to the presence of characters known to be used in Cross Site Scripting attacks, access is forbidden. This web site does not allow Urls which might include embedded HTML tags.
    Can any one please let me know how to overcome this issue.
    Any help is appreciated.
    Thank you,
    Srini.

    Hi Srini,
    Maybe you have to replace the 'apostrophe' with it's URL-encoding equivalent; %27 (http://www.w3schools.com/TAGS/ref_urlencode.asp)
    Or you could add the HardenXSS element to the instance config --> http://gerardnico.com/wiki/dat/obiee/hardenxss
    Good Luck,
    Daan Bakboord
    http://obibb.wordpress.com

  • Unable to open XML report in Oracle EBS r12

    Hi,
    I have new installation of Oracle EBS r12 (12.1.1) on linux.
    To test the XML report, I changed the output of standard report 'Active Users' from 'Text' to 'XML' and defined the data definition and template for this report.
    I am unable to see the output for XML reports. The report completes without error, however I cannot open the output file.
    The browser opens for fraction of a second and then closes down. My client machine is Windows 7 and I used Microsoft words 2010 to build template
    I used the 5.7.201 version of BI publisher to create the rtf template.
    Please help me to resolve this issue.
    Thanks

    I changed the output of standard report 'Active Users' from 'Text' to 'XML' and defined the data definition and template for this report.
    looks like xml publisher report, so output for concurrent must be 'XML'
    ******* I have changed the output of concurrent program 'Active Users' from 'Text' to 'XML'
    I am unable to see the output for XML reports.
    how you see it?
    ******* I tried to open the report by clicking on 'Output' button from view request screen of EBS.
    did you try after concurrent completed check 'diagnostic -> view xml'?
    ******* I haven't tried this. Will do now.
    The report completes without error, however I cannot open the output file
    what is error?
    ******* There is no error, the request completed successfully. When I tried to open the output file by clicking 'output' button, the browser doesn't open.
    did you check OPP log?
    ******* There is nothing in the OPP log.
    if concurrent failed so first of all check your code - data template and package (if used)
    ******* I used the standard EBS report 'Active Users' and just changed the output from 'Text' to 'XML' and attached the rtf template.

  • Unable to open a report in BI Launchpad.

    Hi Guys,
    I am unable to open a report in BI Launchpad, but i am able to access the report in RichClient. It's popping with the following error while i am opening the report in BI Launchpad.
    While there is no problem in opening other reports with the same universe.i tried by checking the connectivity with the database and objects associated while building the report.
    Regards,
    Amjad.

    Hi Anish,
    Thanks for your concern, i tried using this process also, but has'nt worked.
    By the way i got the issue solved,After a long research i got to know that the issue was with the date function.
    As we are migrating from 3.X to 4.X, there is a change in date function, we need to change this as shown below..
    first is the 3.X and the preceding is the 4.x. by making these changes in the formula we are able to open the report in BI Launchpad as well with rich-client also..
    Thank you Guys,
    Regards,
    Amjad.

  • Error in Accessing the Report Server URL

    Hi All,
              I am trying to access the Report Server URL in PowerPivot.But facing below issue .Can any one help me how can I solve the issue
    Thanks,  
    Sid

    Hi Visakh,
                    Yes,The user is holding the permission as "Global User" in sql.Hope you help me in solve this issue
    Thanks, Quality Communication Provides Quality Work. http://siddiq-sharepoint2010.blogspot.in/ Siddiqali Mohammad .
    Hi siddiqali,
    According to the screenshot you posted above, the use account didn't have sufficient permission to open the report, please check the following prerequisites before you perform the action:
    You must use a report definition (.rdl) file as a data source. Importing from a report model is not supported.
    You must have permission to open the report under your Windows user account, and you must know the address of the report or the report server that hosts it. You can check your permissions by trying to open the report in a Web browser first.
    If the report opens, it confirms that you have sufficient permissions and the correct URL.
    Reporting Services must be version SQL Server 2008 R2 or SQL Server 2012. Those versions include the data feed export feature that streams report data in the XML data feed format. You can identify the report server by the Export as Data Feed option
    that appears in the report toolbar when you open the report in browser:
    For detail information, please see:
    Import Data from a Reporting Services Report:
    http://technet.microsoft.com/en-us/library/gg413491.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • Unable to find the report in the manifest resources. Please build the project, and try again.

    The error is received when i transfer the .exe file, bin\Debug folder to another machine:
    Unable to find the report in the manifest resources. Please build the project, and try again.
    The error is issued when i try to open the form that contain the Crystal report viewer, I already checked the properties of the report file and it says "Embed Resource" in the "Build Action"
    This error is not visible on my development machine where visual studio is installed, anybody know what i should install on the other machine for this to run.
    I'm using C#, WinForms, .net 2.0, VS 2005.

    Fronde Systems Group: 
    Setting the build action to Embedded resource  is working
    in my local machine which has Visual studio 2003 installed. But when i deploy the same on Server
    (server has no .net framework installed on it), it keeps failing. I get the the following error:
    "ERROR Thrown from Crystal Reports ===> An undocumented error occured" which is triggered when it is Unable
    to find the report in the manifest resources.
    Please suggest me guys.... 
    Thanks
    Ravi
    [email protected]

  • Error opening report using WEB.SHOW_DOCUMENT

    Hi
    I have a report in pdf format that opens ok by itself. When I use WEB.SHOW_DOCUMENT in the when_mouse_click trigger on the item in the form the report doesnt display. Only an IE window with "The page cannot be displayed" message.
    Here is the trigger code:
    Web.show_document(http://nbotlaguduru.dms.local/export/||FMSLaborChargesalcs20060829132645.pdf)
    where FMSLaborChargesalcs20060829132645.pdf is the name of the report I am trying to open.
    Here is the URL that appears in the second window that opens:
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    this url generates the error message "The page cannot be displayed"
    I am using Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Report Builder 10.1.2.0.2
    ORACLE Server Release 10.1.0.4.2
    and I running the forms and reports server on my local machine.
    Any help would be greatly appreciated. Thanks

    Thanks for answering,
    I changed the URL from
    http://nbotlaguduru.dms.local/export/FMSLaborChargesalcs20060829132645.pdf
    to
    http://nbotlaguduru.dms.local:8889/export/FMSLaborChargesalcs20060829132645.pdf
    and the same problem occured
    the file is located on my local C drive in:
    C:\lcs\export
    seems as though I am missing something else as well
    any ideas?

Maybe you are looking for

  • How to install RHEL AS3 on PVS without XF86???

    I am trying to install JES05Q4 on RHEL AS3 that is a hosted private virtual server (PVS) at my ISP. I have succesfully installed many times on my own AS3. I get the following error when trying on a private virtual server hosted by my ISP [root@ruptur

  • COPY function on a Multiprovider - - Not saving data

    Hi, Im facing a wierd problem. Im tryin to run the COPY function on a Multiprovider. I've selected 2 fields as 'To be Changed' : 0INFOPROV and 0VTYPE. and 1 KF (ZACCINS) to be copied. I tried to run the PF through a Planning Sequence in 'Execute with

  • Super fast wifi at times on original iPad

    Was wondering if anyone else has experienced this on their original iPad. So I own a 3G / wifi 32 original iPad ... Bought in 2010.    It works great, iOS 5.1.1 I've noticed that at certain times, especially at night, between 6-midnight and slightly

  • How to do that with Automator?

    Hi there, I've a certain difficulty using Automator for my problem: Let's say that I have a folder named "Movie" on my desktok, and in it I have a movie (.avi, mp4 or whatever) and I also have a subtitled file (.srt) for subtitles. How can i do to se

  • INSTALLATION FRUSTRATION

    I have tried time and time again to download ADOBE ACROBAT. It downloads, but then when I click on it I get this message: There is no default application specified to open the document "AdbeRdr90en_USppc.pkg". This is extremely frustrating as I can't