Using reports server on other host

Hi,
I have installed AS10g (10.1.2.0.2) (Forms and Reports services) on host A and host B
=====================
= Scenario 1 (A->A) =
=====================
When running forms on host A and using reports server on host A:
I get to see my report.
=====================
= Scenario 2 (B->B) =
=====================
When running forms on host B and using reports server on host B:
I get to see my report.
=====================
= Scenario 3 (A->B) =
=====================
When running forms on host A and using reports server on host B:
FRM-41213: Unable to connect to the reports <xxx>
What can I do so I can use my reports server on host B and running my forms on host A?
(PS: I got this working on 9.0.4)
Thanks,
Bart

Hi,
The problem is indeed that host A is in an other subnet as host B.
When running rwdiag -findAll, you can see which reports servers you can access in your current subnet.
When issuing rwdiag -find <rep> you can try finding the reports server on host B.
After configuring a 2 way reports bridge, I was able to find the reports server on host B
and you should get something like:
Broadcast mechanism used to locate servers
Channel address = 228.5.6.7
Channel port = 14021
'<rep>' found in the network
Time taken - 15 milliseconds
Name = <rep> : null
Thanks for your help!

Similar Messages

  • Can I use Reports Server Queue PL/SQL Table API to retrieve past jobs ?

    Hi all,
    Can I use Reports Server Queue PL/SQL Table API to retrieve past jobs using WEB.SHOW_DOCUMENT from Forms ?
    I have reviewed note 72531.1 about using this feature and wonder if i can use this metadata to retrieve past jobs submitted by a user.
    The idea would be to have a form module that can filter data from the rw_server_queue table, say, base on user running the form, and be able to retrieve past jobs from Report Server Queue. For this, one would query this table and use WEB.SHOW_DOCUMENT.
    Is this possible ...?
    Regards, Luis ...!

    Based on that metalink note and the code in the script rw_server.sql, I am pretty sure that by querying the table you would be able accomplish what you want... I have not tested it myself... but it looks that it will work... you have the jobid available from the queue, so you can use web.show_document to retrieve the output previously generated...
    ref:
    -- Constants for p_status_code and status_code in rw_server_queue table (same as zrcct_jstype)
    UNKNOWN CONSTANT NUMBER(2) := 0; -- no such job
    ENQUEUED CONSTANT NUMBER(2) := 1; -- job is waiting in queue
    OPENING CONSTANT NUMBER(2) := 2; -- opening report
    RUNNING CONSTANT NUMBER(2) := 3; -- running report
    FINISHED          CONSTANT NUMBER(2) := 4; -- job has finished
    TERMINATED_W_ERR CONSTANT NUMBER(2) := 5; -- job has terminated with

  • Reg: sending an email using report server

    Hi,
    i am using the below code to send an email using the report server.
    When send button Click:
    DECLARE
    PL_ID ParamList;
    repid REPORT_OBJECT;
    v_rep varchar2(100);
    rep_status varchar2(20);
    l_host_name varchar2(50);
    l_port_num varchar2(10);
    l_server_name varchar2(50);
    l_month_name varchar2(20);
    l_from varchar2(50);
    l_to varchar2(50);
    l_cc varchar2(50);
    l_property varchar2(1000);
    l_sub_out varchar2(200);
    l_sub varchar2(400);
    L_BODY VARCHAR2(1000);
    l_email_dir varchar2(50);
    BEGIN
    l_sub:=:block1.number||' '||replace(replace(:block1.desc,'&','ampersand'),'''','$quote');
    if length(l_sub) >150 then
    l_sub_out:=substr(l_sub,0,150);
    else
    l_sub_out:=l_sub;
    end if;
    l_host_name := (i used my host ip address local host);
    l_port_num := '8889';
    l_email_dir := 'C:\forms\';
    l_from := [email protected];
    l_cc := [email protected];
    L_BODY:=' Please refer to the attached abc Report';
    repid := find_report_object('PRINT_REPORT');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'abc');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,MAIL);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');     
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,l_server_name);
    go_block('abc_MAIL_TO');
    first_record;
    if :abc.email_address is not null then
    loop
    l_to:=:abc.email_address;
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no DISTRIBUTE=YES DESTINATION='||l_email_dir||'test.xml'||' '||
    ' p_2='|| TO_CHAR(:control.sessionid)||' '||'P_ID='||TO_CHAR(:block1.ID)||' '
    ||'P_LIST_TYPE='||'A'||' '     
    ||'DISTRIBUTE=YES DESTINATION=test.xml'||' '
    ||'P_FROM='||''''||l_from||''''||' '
    ||'P_SEND='||''''||l_to||''''||' '
    ||'P_CC='||''''||l_cc||''''||' '
    ||'P_FILE='||'C:\testfile.txt'||' '
    ||'p_email_path='||l_email_dir||' '
    ||'P_BODY='||''''||l_body||''''||' '
    ||'P_NUM='||''''||'Email report: '||l_sub_out||'''');
    v_rep := RUN_REPORT_OBJECT(repid);     
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    null;
    ELSE
    message(rep_status);
    message('Error when sending email to: '||l_to);
    END IF;
    if :system.last_record='TRUE' then
    exit;
    else
    next_record;
    end if;
    end loop;
    end if;
    message ('Mail has been sent.');
    END;
    In the report:
    I created all the required parameters and i wrote a trigger as
    function AfterPForm return boolean is
    dst_file text_io.file_type;
    l_email_dir varchar2(50);
    begin
    dst_file := text_io.fopen(:p_email_path||'test.xml','w');
    text_io.putf(dst_file, '<destinations>'||chr(13));
    text_io.putf(dst_file, '<mail id="ex1" '||chr(13));
    text_io.putf(dst_file, 'from="&P_FROM"'||chr(13));
    text_io.putf(dst_file, 'to="&P_SEND"'||chr(13));
    text_io.putf(dst_file, 'cc="&P_CC"'||chr(13));
    text_io.putf(dst_file, 'subject="&<P_NUM>">'||chr(13));
    text_io.putf(dst_file, '<body srcType="text">'||chr(13));
    text_io.putf(dst_file,'<![CDATA>'||chr(13));
    text_io.putf(dst_file, '</body>'||chr(13));
    text_io.putf(dst_file, '<foreach>'||chr(13));
    text_io.putf(dst_file, '<attach format="pdf" name="report.pdf" srcType="report" instance="all">'||chr(13));
    text_io.putf(dst_file, '<include src="mainSection"/>'||chr(13));
    text_io.putf(dst_file, '</attach>'||chr(13));
    text_io.putf(dst_file, '</foreach>'||chr(13));
    text_io.putf(dst_file, '</mail>'||chr(13));
    text_io.putf(dst_file, '</destinations>'||chr(13));
    text_io.fclose(dst_file);
    return (TRUE);
    end;
    Then after compilation i click the button send. Then i got the message as
    Mail has been sent to [email protected].
    But i didn't receive any mail.
    then i check the report job id. It was showing job was successful .
    And i check whether the test.xml file was created or not. It has created the test.xml file as below:
    <destinations>
    <mail id="ex1"
    from="&amp;P_FROM"
    to="&amp;P_SEND"
    cc="&amp;P_CC"
    subject="&amp;&lt;P_NUM&gt;">
    <body srcType="text">
    <![CDATA Please refer to the attached abc Report]>
    </body>
    <foreach>
    <attach format="pdf" name="report.pdf" srcType="report" instance="all">
    <include src="mainSection"/>
    </attach>
    </foreach>
    </mail>
    </destinations>
    I have 2 machines having dev 10g. one machine is working fine with this code. but in my machine it was not working.
    Do any one of you had a solution for my case.
    Thanks in advance.
    Edited by: user648380 on Dec 29, 2009 5:59 PM

    Sorry to all.
    I made a mistake in the from email address.
    Instead of gmail.com i had given gmail,com
    I am really sorry about it.

  • I plan to upgrade the SSRS 2005 SP2 enterprise edition in our internal web server to 2005 SP4, the Reporting server database is hosted in another sql server in sql server 2005 SP4. Do I need to do anything on the reporting server database side?

    My question is what the steps do I need to take to upgrade SSRS from 2005 SP2 to SP4.  The web server that host the SSRS is in 2005 SP2, and the OS is in window 2003. 
    Our SSRS report server and report server database are in different servers.  The SSRS in the web server is in 2005 SP2 enterprise edition, the report server database is in sql server 2005 SP4 enterprise edition.
    To upgrade the SSRS in web server from 2005 sp2 to sp4, do I need to backup/restore the encryption key?  Nothing will be changed in the report server database.  We will still pointing to the same database in the current server, all
    I wanted to do is performing a inplace upgrade of SSRS from 2005 SP2 to SP4.  
    Any response will be greate appreciated.  Thank you!
    Li-hui Chen

    Hi Lihui Chen,
    According to your description, you want to install the Services Pack 4 for SQL Server. Right?
    In SQL Server, Services Packs are used for fixing issues of current version product. It's not an Upgrade, you don't have to backup/restore your encryption key. You just need to download the Service Pack 4 on:
    Microsoft SQL Server 2005 Service Pack 4 RTM  . Please make sure you have administrative rights on the computer to install SQL Server 2005 SP4. For more information, see links below:
    How to obtain the latest service pack for SQL Server 2005
    List of the issues that are fixed in SQL Server 2005 Service Pack 4
    SQL Server 2005 SP4, KBA 2463332, Installation Issues
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • How to popluate user defined values in Paramter field of a report using "Report Server Project", BIDS

    Hello,
    I am creating report using "Business Intelligence Development Studio", creating "Report Server Project" connected to TFS database.
    I have created Variance report and the output of report  as below sample:
    Project   Assigned To      Planned Effort        Completed    Remaining  Variance
    P1            X                        20                        
    10                 5              5
    P2            Y                        10                        
    10                 0             0
    P3            Z                          5                        
    0                  5              0
    By default I made Assigned To as parameter field and its showing data for selection in a drop down box (X, Y and Z) and data also filtered correctly.
    Q. how can I fill resource names in a drop down of my own choice (in this scenario, I want to display only X and Y) and display data based on the selected resource? By default parameter displays all the resources which I don't want.
    I did the below but could not get correct result:
    1. Right Click on "Assigned To" parameter, Clicked on "Available Values" and Selected "Specify values" instead of "Get values from query"
    2. Added X as Label and Value as 2 (Employee ID as mentioned in dbPerson table)
    Drop down displays X but when I clicked on report, it gives an error...
    Appreciate your help on this.
    Regards
    Abdul Kalam

    Hi Abdul,
    From the document, we know that CONSTRAINED flag is used to reduce the risk of injection attacks via the specified string. If a string is provided that is not directly resolvable to qualified
    or unqualified member names, the following error appears: "The restrictions imposed by the CONSTRAINED flag in the STRTOSET function were violated."
    So you need to make sure the members are passed properly to the STRTOSET function. For more details, please see the following links:
    http://ch1n2.wordpress.com/2010/02/21/the-restrictions-imposed-by-the-constrained-flag-in-the-strtoset-function-were-violated/
    http://www.bp-msbi.com/2010/04/passing-unconstrained-set-and-member-parameters-between-reports-in-reporting-services/
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • I have a mac mini server with leopard, macbook pro, imac and iphone 4 i would like to use the server as the host for all mail, contacts, directories, intranet etc i would like all devices to have mail pushed using outlook as the prefered mail client?

    can anyone shed some light on how to do this i am currently using the server as a file storage system but feel it can deliver far more; ideally i would like the following;
    email to push to all devices once sent form one device all devices have a copy of the sent item
    accounting software that is shared on the server
    access the files and directories securely form anywhere
    create and host an intranet site
    any ideas of how to setup easily or step by step guides
    help would be greatly appreciated
    regards
    rd

    Start by getting DNS properly configured. If DNS isn't properly configured, most other services won't work right.
    http://labs.hoffmanlabs.com/node/1436
    http://labs.hoffmanlabs.com/node/1594
    Then, the OS X server documentation will provide a wealth of knowledge on configuring services.
    http://www.apple.com/server/macosx/resources/documentation.html

  • Garbage displayed while running the report in browser using report server

    We are facing problem in displaying the Arabic text from the Report Server.
    We have Digital Server running Tru64 4.0f unix. We have two similiar servers, both are
    clustered. We have Report Server(6i) running in one machine and the Database(8.1.7) running
    in the other.
    When we tried the reports having only English text it is working fine. We need Arabic text
    also in the report. The Arabic text are coming as ?????? . We tried setting the NLS_LANG
    environment to AMERICAN_AMERICA.AR8MSWIN1256 and changed the Tk2Motif.rgb to take this
    character set. Then we get the error REP 1352 - The font is not supported by the NLS_LANG.
    Then we tried the various NLS_LANG environment AMERICAN_AMERICA.AR8ISO8859P6, ARABIC_SAUDI
    ARABIA.AR8MSWIN1256 and ARABIC_SAUDI ARABIA.AR8ISO8859P6, in all the cases the report is
    just hanging. If We unset the NLS_LANG and the Tk2Motif.rgb the english part of the reports
    are coming alright, still the arabic is coming ??????.
    null

    hello,
    where does it display the ???????s. it seems that the client, you are using to display the output does not have the right font-sets installed.
    regards,
    the oracle reports team

  • Call report from forms6i, use report server from 10gAS

    Hi there,
    I have been searching for any info I can get that will help me to do the following:
    I want to call an Oracle 6i report from Forms6i but I want to specify a Report Server running on an Oracle10gAS box. Can this be done in a client/server fashion, meaning the forms/reports are on a Citrix box, accessed by many users.
    Everything is working fine, using "RUN_PRODUCT" and the "Report Background Engine" to generate the report on the Citrix box. However, I want to use the report server from 10gAS runinng on another box, to generate these reports.
    Please reply with any help you give.
    Regards
    shak

    Hello,
    You can use the compatible element in the reports server configuration file :
    Description
    The compatible element is available for backward compatibility with Oracle Reports 6i clients (RWCLI60.EXE, RWCGI60.EXE, RWQMU60.EXE, RWRQM60.EXE, RWRQV60.EXE, 6i Forms). When compatible is set to 6i, Reports Server will make use of an executable file named rwproxy that listens for requests from a 6i client and forwards them to a 10g server.
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_conf.htm#i1005999
    Regards

  • Printer not installed error when using reports server

    Im using three NTYRE architecture when i have to run my application on 128kbps leazed line network across 30 units,requirement is to generate text output at the client side for printing some report formats in character mode.
    im trying to generate a text file on server and then download to local machine for printing .but reports server gives an error printer not installed,
    i have checking administrative security probs in WINNT ,
    pls suggest or is there any other way to generate text reports in NTIER arch.
    regards

    Hi,
    You may want to check if a printer is installed in your WinNt system. Reports picks up font information from the default
    printer installed in the system when we attempt to generate to file.
    thanks
    -sudha

  • Cannot get report to run using Report Server

    I have installed, compiled and now have running the reports server (6i patch5a) on Linux 7.0. I can view the queue, but when I run rwcli60 to try out a report, it always complains about an invalid printer, even though one is defined (but not connected to the machine currently), and if I try destype=pdf, it just hangs for a long while, then writes errors about the Oracle Toolkit.
    Is there anything you might have (papers etc) that helps troubleshoot using the report server? (we are not using 9ias currently).
    Any help would be greatly appreciated!!
    Monte Malenke

    color <> 'WHITE' was causing the error

  • Can I use I-Web with other hosting service? (ie not .Mac?)

    HI,
    I would like to know if I HAVE to subscribe to .Mac in order to use I-web or can I use my other hosting service to build a snaps website.
    It seems that one is bound to sue .Mac, but was not sure if this is the case.
    Rebecca

    Yes you can. You will need an FTP program. I downloaded one called Cyberduck that seems to do the job. You can drag and drop individual files or several at once to upload. You will need a host for your domain such as 1and1.com. They give you a user name and password you will need to log on to your site. Good luck!

  • HT1277 Help! Keep getting Cannot send message using the server lass1 - n1s.host-service.us tried all the other servers is it because it's my own company and i set up the email on cpanel ?

    I've tried using all the suggested ones.
    I need help configuring.
    I think it's because it's my own website like company. not @hotmail.com or gmail.
    Help !

    Hi, is it POP or IMAP?
    Might it be your chouce of ports?
    The receiving email ports are:
    IMAP is port 143
    IMAP-SSL is port 993
    POP is port 110
    POP-SSL is port 995
    Outgoing ports are...
    SMTP and SMTP-SSL is on ports 25, 587 and 465. Port 587 has to be SSL, and port 465 is enforced TLS-wrapped and is generally used by Outlook users.

  • Problem printing using Report server

    I have sucessfully installed Developer server
    version 6.0 on NT. I am trying to output my job to the network printer using Reoprt Queue Manager. Unfortunately, I am not unable to do that. The message says " JOB SUBMITTED TO THE REPSERVER", and it just hangs there. My repserver is running on NT as a service and I can get the report to diplay on my screen.
    Does anybody have any idea why it's not printing to the printer?
    I will really appreciate your help.
    dinesh

    Hi Dinesh,
    I don't know whether this will help you but I am using all my reports converted into *.pdf format so that I can take a print out where ever I want .
    null

  • Passing value to multi value parameter from SSIS using Report server webservice

    Hi
    I am triggering SSRS report from SSIS(Script task). I am passing parameter values from SSIS package.
    So far working fine. Now, I have a report which has 2 parameters. One is single value parameter and the other is multi value parameter.
    No issue assigning value to single value parameter. But how can I pass multi value to multi value parameter?
    My code as below
    ReportExecutionService rs = new ReportExecutionService()
    rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
    rs.Url = _webserviceURL;
    rs.LoadReport(_reportPath, null);
    ParameterValue[] paramval = new ParameterValue[2];
                            paramval[0] = new ParameterValue();
                            paramval[0].Name = "CountryCode";
                            paramval[0].Value = _countryNames;
                            **paramval[1] = new ParameterValue();
                            paramval[1].Name = "BusinessCode";
                            paramval[1].Value = _businessCode;****
                            rs.SetExecutionParameters(paramval, "en-us");
    I am not sure how to pass value to BusinessCode(Multi value parameter)

    Hi Rajkm,
    In order to pass a multi-value parameter through the Reporting Services Web services, you need to define the same numbers of ParameterValue objects as the number of the values of the multi-value parameter being past into the report. The Name property
    of these ParameterValue objects must be specified same to the parameter name.
    I found a good FAQ article for this scenario:
    How do I pass a multi-value parameter into a report with Reporting Services Web service API?:
    http://blogs.msdn.com/b/sqlforum/archive/2010/12/21/faq-how-do-i-pass-a-multi-value-parameter-into-a-report-with-sql-server-reporting-services-ssrs-web-services-api.aspx
    Hope this helps.
    Elvis Long
    TechNet Community Support

  • DNS Registration Issues when using DHCP Server in Other Domain

    We have an issue where we have 2 domains with an external trust between and a set of DHCP servers that are only located in Domain A.
    Clients in Domain B receive the DHCP information from Domain A which also gives them DNS settings pointing to Domain Controllers in Domain A.  There are forwarders in place so resolution works.
    However clients when registering their DNS information in their own domain gets refused by Domain B Domain Controllers.
    Is there a way to populate a security group to allow client's in Domain B to register DNS configuration on their Domain B Domain Controllers?
    I know the easiest way would be to create additional VLANs for DCs and clients and segregate clients with IP helpers to different DHCP servers per domain. But this cannot be done unfortunately.
    Any help or advice appreciated on this one

    The logs I receive are below:
    31/07/2014 20:47:11 14D4 PACKET  000000C48FE6A5B0 UDP Rcv 172.16.32.140    ca65   U [0028       NOERROR] SOA    (16)Internal.domain(3)com(0)
    31/07/2014 20:47:11 154C PACKET  000000C48FE6A5B0 UDP Snd 172.16.32.140    ca65 R U [05a8       REFUSED] SOA    (16)Internal.domain(3)com(0)
    31/07/2014 20:47:11 1EE4 PACKET  000000C4908D8030 TCP Rcv 172.16.32.140    966b   Q [0000       NOERROR] TKEY   (9)1408-ms-7(10)45-6b599a3(36)7986ecc4-17e5-11e4-8b81-3c77e6ef79d7(0)
    31/07/2014 20:47:11 144C PACKET  000000C4908D8030 TCP Snd 172.16.32.140    966b R Q [0080       NOERROR] TKEY   (9)1408-ms-7(10)45-6b599a3(36)7986ecc4-17e5-11e4-8b81-3c77e6ef79d7(0)
    31/07/2014 20:47:11 14D4 PACKET  000000C48E9F2B90 UDP Rcv 172.16.32.140    ae74   U [0028       NOERROR] SOA    (16)Internal.domain(3)com(0)
    31/07/2014 20:47:11 1AEC PACKET  000000C48E9F2B90 UDP Snd 172.16.32.140    ae74 R U [05a8       REFUSED] SOA    (16)Internal.domain(3)com(0)

Maybe you are looking for

  • All tabs from prevoius session reload,

    no tab manager add-on/ext. Have startup set to "open a blank page" Has happened last 3-4 updates (just updated again). Thx

  • Video Ipod 80G 5th generation not being recognized by computer or  itunes.

    My ipod is not being recognized by my computer or itunes at all. I bought a new cable and nothing happens as well. however when i connect it in my car it works fine. did any resolve this issue? I am not sure if its the new software that has the issue

  • How to check the value of a string is numeric, alphanumeric or characters?

    Hi All, I have a task to validate an employee Id. Suppose the employee Id is E121212. Now as per the validation rule I need to check "the first letter of the employee Id is a character and rest are numbers." How can I do this? Please reply. Thanks &

  • Trusted Source

    I need to execute a JavaScript outside of the scripts panel, triggered by another process. Each time I run the script, I receive the message: >You are about to run a script in InDesign CS3. You should only run scripts from a trusted source. Do you wa

  • Lenovo ThinkPad Edge E330 Missing x64 intel display driver in update retriever

    Hi guys, When searching for driver for model 3354 in update retriver no x64 result for Intel graphics card shows up.(Only for x86 not x64) The driver is available on the download section: http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/h1d211w