Integrating Forms ans Reports 6i on the WEB

I4m trying to integrate forms and reports using the run_report_object and web.show document built-ins.
I'm using the examples found in the white paper "Forms Server 6i Reports Integration" downloaded from OTN:
job_id := run_report_object(report_id);
status := report_object_status(job_id);
if status = 'FINISHED' then
web.show_document('/dev60cgi/rwcgi60.exe/getjobid=' | | job_id | | '?server=RepSRV','_blank');
else
The variable job_id receives values like 'RepSRV_1','RepSRV_2', etc.
The report output is created correctly in the cache, but the URL
'/dev60cgi/rwcgi60/getjobid=' | | job_id | | etc. returns and error and we cannot show the output in a browser window.
If I try '/dev60cgi/rwcgi60/showjobs?server=RepSRV' there is no response (time-out after several minutes).
Can someone help me ?
Thanks
GFranco
null

Hi Mitra
I am in the same trouble now. Would you help me if you have
solved this problem.
Thanks.

Similar Messages

  • How to deploy Forms and Reports from 6i to Web Base

    I am using Forms 6i in client/server mode, I want to upgrade my platform to Forms 10g web base. I know that I have to install Application Server, however, I found that there are so many options in the download page, and, I can only find the WebLogic Server.
    I only need to deploy Forms and Reports, what is the minimum requirements (I means what Oracle software) I have to purchase.
    Can you provide also the download link? any document can teach me how to deploy Forms and Reports? (only Forms and Reports)
    Thanks a lot !!!

    From download page http://www.oracle.com/technology/software/products/ias/htdocs/101202.html you can choose Forms & Reports Services Standalone .
    Documentation at http://download.oracle.com/docs/cd/B19375_07/doc/frs/docs.htm

  • The form cannot be submitted to the Web server either because your computer is offline or because the host server is currently unavailabl. If this problem persists, contact your network administrator.

    Hi,
    When the page is submitted for approval by using SharePoint OOTB Page Approval Workflow, it takes quite long time and prompt error message as below.
    "The form cannot be submitted to the Web server either because your computer is offline or because the host server is currently unavailable.
    If this problem persists, contact your network administrator."
    It only happens in Internet Explorer version 8 and 9. IE version below 8 is not used in environment.
    But it is working in Firefox.
    Please help me on how to fix this issue.
    Thanks.

    Hi Htet,
    Here are some articles with the same issue message, you can check the setting of Link Translation rule in the ISA from below.
    http://sharepointontop.blogspot.com/2012/06/form-cannot-be-submitted-to-web-server.html
    http://bytelab.blogspot.com/2008/03/problem-submitting-infopath-forms-using.html
    http://social.msdn.microsoft.com/forums/en-IE/sharepointcustomizationprevious/thread/84be34b3-b806-49ce-a5c2-b5ad8a1ff09f
    Thanks
    Daniel Yang
    TechNet Community Support

  • DeskI report refreshable on the web

    I am attempting to make a DeskI report available on the web.  That part was easy, i saved as HTML, and was able to view it on a web page.  But we need a step further,  i need to be able to make this report refreshable, it has 4 prompts.  We want the user to be able to enter info into prompts and get the report.  I know this can be done,  but cannot figure out why i can't make it work, any help is appreciated.

    When saving the Deski report as HTML set the "Automatic Reload Every"
    The browser reloads the document according to the frequency specified in the box, which ensures that the HTML document is kept up-to-date with changes made to the original document in BusinessObjects. This is similar to the document refresh feature.

  • How to run a report out of the web container?

    Hi All,
    <p>
    Does anyone have tips on running a report outside of the web container?  I'd like to be able to JUnit the scenarios I'm coding up without having an app server running.  What is the ReportClientDocument expecting in the request, response, and context?  The code as shown just returns the enclosed error.
    <p>
    All I'm really trying to do is have the report execute and be able to assert that the data is appropriately retrieved from the data source.  If there's a way to do that without the Viewer, that would be cool, too.
    <p>
    Any tips would be much appreciated.   Sorry about the poorly formatted code and error... the code tags don't seem to be working...
    <p>
    Thanks,
    <p>
    Eric
    <pre>public void testReportRunning() throws ReportSDKExceptionBase{
              ReportClientDocument rcd = initReportClientDoc("./test/data/EBTest1.rpt");
              assertTrue(rcd.isOpen());
              CrystalReportViewer crv = new CrystalReportViewer();
              crv.setReportSource(rcd.getReportSource());
            String htmlContent = crv.getHtmlContent(new MockHttpServletRequest(), new MockHttpServletResponse(), new MockServletContext());
            System.out.println(htmlContent);
    com.businessobjects.report.web.shared.WebReportingException---- Error code:0
         at com.businessobjects.report.web.e.if(Unknown Source)
         at com.businessobjects.report.web.e.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.getHtmlContent(Unknown Source)
         at com.tririga.crystalpoc.ReportAccessorTest.testReportRunning(ReportAccessorTest.java:82)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at junit.framework.TestCase.runTest(TestCase.java:164)
         at junit.framework.TestCase.runBare(TestCase.java:130)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:120)
         at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)</pre>
    Edited by: Eric Batzdorff on Jun 12, 2009 12:24 AM
    Edited by: Eric Batzdorff on Jun 12, 2009 12:24 AM
    Edited by: Eric Batzdorff on Jun 12, 2009 12:25 AM

    There's no documentation as to what's the minimum HTTPServletContext, HTTPServletRequest and HTTPServletResponse the CrystalReportViewer expects. 
    There certainly are plenty of unit testing frameworks for Java Web Apps out there, if that's where you're headed.
    Sincerely,
    Ted Ueda

  • Preferences form doesn't run on the web

    Using form qms0006f 'User preferences' on the web gives FRM-40735 - On ERROR trigger veroorzaakte onverwerkte exception ORA-06508.
    Using the same form client server against the same database works fine.
    Is this a known problem?
    null

    I am getting this problem when I run Demo and Application Foundation.
    I am running under NT.
    Can you tell me how you solved this issue?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Willem Laan ([email protected]):
    Thanx for your reply.
    The form always runs in the same operating system. So I don't have any 'UNIX to NT' or viceversa problems.<HR></BLOCKQUOTE>
    null

  • HTML DB form and reports in on the same Page

    I have a form take input from the user and two reports (please see the URL and LINK).
    If I click on the Staff report to populate the employee_no, name, and then click on the service report to populate the service_id, service name.
    The problem is if populate the employee_no, name then it clear out the service_id, name and other fields. vice versa.
    Why?
    Is there solution?
    URL
    http://tinypic.com/view/?pic=rblds0
    LINK
    http://i2.tinypic.com/rblds0.jpg

    Sounds like you might be specifying Clear Cache for page in your column link attributes.
    So, every time you click on the column link, it clears session state for items on the target page and then proceeds to set the items you specify in the column link itself.

  • How to change the Browser title when report runs on the web?

    Hi folks,
    How to change the title of the browser when I run my report on the web? Iam using Internet explorer and Reports 6i. Is it possible in 6i or 10g reports?
    Could you please tell me the step by step procedure ?
    Right now the browser is displaying the URL when I run the report with format = PDF.
    Thanks.

    It works for me. I don't see why you have a problem with >this code.
    Can you look at the source code of the html >file that was created (so, not in the browser, but in a >text editor). What do the header and title look like?The Html code in the file is same as the above code I specified. Actually I copied the same code and pasted here. But when I run the html file the Title shows up.
    Don't put </html> there. Maybe that helps. I tried this, but it did not work.
    Please let me know is there any way to set it dynamically inside the triggers using SRW built_in.
    Thanks alot.

  • Report layout on the web

    The layout of the report in HTML is different then constructed. I have a landscape report which works perfectly client-server. But on the web the pages get to large and don't fit anymore. Width and heigth are bigger then paper-size.
    result. e very messy report.
    Is there a cure or does the user have to learn to life with it.

    1)
    When you bring up the Getting Started page from Reports Builder using Browser
    , you might get a Failed to locate browser error. To rectify this issue,
    you must:
    1. Open the Windows registry using a registry editor (e.g., regedit.exe).
    Note: Create a backup of the registry before proceeding to edit it.
    2. Navigate to the following key:
    HKEY_CURRENT_USER\Software\Oracle\Toolkit\Tkbrowser
    3. Delete all other values except Default.
    4. Save and Exit the Windows registry.
    5. Start Reports Builder and select Getting Started.
    6. Click Ok. The Information Navigator Preferences dialog box appears.
    7. Select <your browser> as the browser.
    8. Ensure that the path and the executable name is accurate. To change the
    browser location (if the executable or the path is incorrect):
    Click Browse.
    Navigate to the location.
    Click OK.
    9. Click OK.
    2) REP-0069: Internal error
    Please turn ON tracing to see what exactly is going wrong.
    $OH\reports\conf\rwbuilder.conf , for "trace" element, uncomment it.
    Now run to web.
    Now trace will be in $OH\reports\logs\rep-machinename.log
    See what error you are getting there. Pls post the error/exception you are seeing there.
    Thanks
    The Oracle Reports Team

  • Original form name still appears in the web title bar when renamed file is posted.

    When I rename a form for reuse the name of the original form still appears in the web title bar. How do I get the web title bar to reflect the new form name?

    Outlook Web Access sends illegal Content-Disposition headers and this is no longer allowed in Firefox 8. The server needs to be fixed.
    See:
    * https://support.mozilla.com/en-US/questions/894442
    * https://support.mozilla.com/en-US/questions/895024

  • Deploy an arabic reports 6i for the web

    Hi,
    run an arabic reports in client/server no problem.
    when i try to deploy it on the web, orientation is inversed(right be left and left be right).
    what must i do.

    Check your web server machine (report server machine actually). Does it have right-to-left support? is Arabic installed on it?
    What is the NLS_LANG you have set on that machine? On my machine i have windows2000 server and as default language arabic.
    when i run this report on c/s it comes correctly (well oriented right to left)
    the NLS_LANG = AMERICAIN_AMERICA.AR8MSWIN1256

  • Oracle reports 6i and the web

    I have installed the d2k 6.i pack on my NT desktop and am pointing to a 8.1.5 database on another machine. All I have is the Webdb listener up and running. No other Webserver as I was told this was all I needed to run reports on my desktop on the Web.
    The report runs fine on my desktop but when I try to run this report on the Web I get: Page not found
    This is the url:
    http://granite.isearch.com/dev60cgi/rwcgi60.exe?server=Rep60_GRANITE&report=C:\orant\bin\ats0107.rdf&userid=pr_hollydev/orahollydev@r81&destype=cache&desformat=HTML
    My report server is up. My webdb listener is up. I do not have a web server installed besides what came with D2k.
    I did copy the rwcgi60.exe to the OWS/4.0/bin directory
    tnsnames entry:
    REP60_GRANITE.WORLD =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = isearch.world)(PROTOCOL = TCP)(Host = granite)(Port = 1949))
    sqlnet.ora
    # Filename......: sqlnet.ora
    # Name..........: isearch.world
    # Date..........: 26-FEB-99 10:58:23
    AUTOMATIC_IPC = ON
    TRACE_LEVEL_CLIENT = OFF
    SQLNET.EXPIRE_TIME = 0
    NAMES.DEFAULT_DOMAIN = world
    NAME.DEFAULT_ZONE = world
    SQLNET.CRYPTO_SEED = "18110733421811237124"
    NAMES.DIRECTORY_PATH = (TNSNAMES,ONAMES)
    DAEMON.TRACE_LEVEL = OFF
    DAEMON.TRACE_MASK = (106)
    authentication_services = (NONE)
    My NT Reg key for REP60
    REPORT60_VIRTUAL_MAP = '/cache/'
    REPORTS60_PHYSICAL_MAP = 'c:\orant\REPORT60\server\cache"
    REPORT60_SHARED_CACHE = "YES"
    REPORTS60_REPORTS_SERVER = "REP60_GRANITE"
    REPORTS60_PATH = C:\orant\REPORTS60;C:\orant\bin;C:\WEB_REPORTS
    I tried the browser test using this and got page not found.
    http://rep60_granite/ows-bin/rwcgi60.exe?
    Do I need to install a web server?
    Thanks
    K
    null

    1. Yes you need a web server
    2. the env. vars:
    REPORT60_VIRTUAL_MAP,
    REPORTS60_PHYSICAL_MAP, and
    REPORT60_SHARED_CACHE
    are no longer needed.
    3. The 'community' part of the Reports sever entry in your tnsnames.ora isn't required.
    Regards
    The Oracle Reports Team http://technet.oracle.com

  • Report Title in the Web Templete

    Hi,
       I am using a standard web templete already developed which includes log...etc.
        How can i insert the Report Title into that.
    Thanks

    Hi,
    Under Style sheet General tab what ever you mentioned in the description field, that would be displayed as report title.
    regards,
    Raju

  • PDF reports error on the web !!

    Hi,
    I have installed OAS 4.0.7, Developer Server 6, IE5 and Acrobat Reader 4.0 on WinNT workstation having SP3. I have deployed my application using the above configuration.
    My problem is that whenever i run a report through my application, i get an error like 'Error processing the page'. This happens when the report is of large number of pages. If i open the PDF file directly (not from the application), then it works fine.
    Does somebody have any idea on this ??
    Please help ASAP.
    Thanks in advance,
    Regards,
    Saumin

    Hello
    oracle/bali/rts/MultiResourceBundle.java is in "rts2.jar".
    It will be available in ORACLE_HOME/jlib directory. Please verify that the jar file is there in the directory.
    If still it does not work, add the jar file in classPath attibute in the engine Tag.
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000" classPath="d\IAS\jlib\rts2.jar">
    <!--property name="sourceDir" value="your reports source directory"/-->
    <!--property name="tempDir" value="your reports temp directory"/-->
    </engine>
    With Regards
    Sachin

  • Passing parameters to reports to run on the web using form 9i

    hi,
    How can I pass a parameter list to run a report on the web using form 9i.
    if I use the web.show_document to run the report?
    Raza Ullah Khan

    frank and khan bros, web.show_document() support parameters in the url below i included &h=10 which is deptno in the below example. the paremeter field in teh browser will ask if the param form is set to yes, u can set it to " no " also.
    to include the parameters from a form, concatenate :deptno.dept inplace of 10.
    web.show_document('http://hero:8888/reports/rwservlet?server=Reportserver90&paramform=
    yes&report=c:\test9i\emp.rdf&userid=scott/tiger@orcl&desformat=htmlcss&destype=cache&h=10','_blank');
    hope it works for u bro
    zaibi.

Maybe you are looking for