PL/SQL Portlet & Oracle Report 6i Server??

Scenario:
I have 2 portlet:
a) PORTLET A (is a dynamic menu written in pl/sql)
Each menu's choice run a report (via cgi) and output is HTMLCSS format.
b) PORTLET B (written in ?????).
Question:
If possible to set the output of Oracle Report into PORTELT B???

A while back all reports were just text files, what is the difference between a text report and a text file? If Oracle reports can do it go ahead. If you think it is overhead spool it from SQL*Plus, which as well as being an ad hoc query tool is actually designed as a text only report writer. If you want to you can still use a stored procedure that returns a ref cursor and just print and format the output in SQL*Plus however its wanted.
Don't use util_file, its more code, slower, complicated, you can't just use SQL, you have to loop (though for some reason many programmers seem to see this as an advantage), it can only access the server, Its more suitable for diagnostics, tracing and logging, things the DBA would be interested in, not for the end user or external system interfaces.

Similar Messages

  • Can we use Dynamic SQL in Oracle Reports ?

    Hi ,
    Can we use Dynamic SQL in Oracle Reports ?
    If yes please give some examples .
    Thanx
    srini

    I believe the built-in package SRW.Do_Sql is what you are looking for
    Example from the document:
    /* Suppose you want to create a "table of contents" by getting the
    ** first character of a columns value, and page number on which its
    ** field fires to print. Assume that you want to put the "table of
    contents"
    ** into a table named SHIP. You could write the following construct:
    DECLARE
    PAGE_NO NUMBER;
    PAGE_FOR INDEX NUMBER;
    SORT_CHAR CHAR(1);
    CMD_LINE CHAR(200);
    BEGIN
    SORT_CHAR := :SORT_NAME ;
    IF :CALLED = Y THEN
         SRW.GET_PAGE_NUM(PAGE_FOR_INDEX);
         SRW.USER_EXIT(RWECOP PAGE_FOR_INDEX
         P_START_PAGENO);
         SRW.MESSAGE(2,TO_CHAR(:P_START_PAGENO));
    END IF;
    SRW.GET_PAGE_NUM(PAGE_NO);
    CMD_LINE := INSERT INTO SHIP VALUES
                          (||SORT_CHAR||,||TO_CHAR(PAGE_NO)||);
    SRW.MESSAGE(2,CMD_LINE);
    SRW.DO_SQL(CMD_LINE);
    COMMIT;
    EXCEPTION
      WHEN DUP_VAL_ON_INDEX THEN
            NULL;
      WHEN SRW.DO_SQL_FAILURE THEN
            SRW.MESSAGE(1,FAILED TO INSERT ROW INTO SHIP TABLE);
      WHEN OTHERS THEN
           COMMIT;
    END;

  • Pl/sql in oracle reports 6.0

    Hi ,
    I am new to oracle reports, is there any way to use pl/sql in oracle reports.I mean i have to take aggregate data from Oracle and to print/populate the data according to slabs(Say distance slab or time slab).Can u please provide me sample code...
    mail id : [email protected]
    thanks & regards
    Anand M

    you can use ref cursor in your pl/sql stored procedure and then call it in your reports

  • Trying to order oracle reports developer/server 6i

    Does anybody know what's the part number for ordering
    Oracle Reports Developer/Server 6i or know where i can get the information? I need Reports builder for NT and Reports Server for Sun Solaris. I've tried to search tru Oracle online store and was not succesfull.
    Thanks in advance!
    Durand Kwok

    Patch 11 has not released yet.
    You can find patch 10 from metalink site, click patches button on the left, type in 2356680 for the patch number. (aru ID:1703176 Patchset::2356680)
    Thanks,
    -Shaun

  • Pl/sql vs oracle reports 6i

    Hi I am new to oracle development.
    My requirement is to create a text file periodically reading data from oracle tables.
    the client wants me to use oracle reports 6i and create a text file. they actually do not have a requirement for a report or this report will not be used in nay other way.
    the final output should be text file.
    i feel using utl_file package creating the text file on the server is a much better option. for this i thought writing a stored procedure and scheduling this procedure.
    please suggest me how i should convince. please give me suggestions in this. thanks in advance..mohan

    A while back all reports were just text files, what is the difference between a text report and a text file? If Oracle reports can do it go ahead. If you think it is overhead spool it from SQL*Plus, which as well as being an ad hoc query tool is actually designed as a text only report writer. If you want to you can still use a stored procedure that returns a ref cursor and just print and format the output in SQL*Plus however its wanted.
    Don't use util_file, its more code, slower, complicated, you can't just use SQL, you have to loop (though for some reason many programmers seem to see this as an advantage), it can only access the server, Its more suitable for diagnostics, tracing and logging, things the DBA would be interested in, not for the end user or external system interfaces.

  • SQL for oracle Reports

    Hi, I am having trouble developing an oracle report to return information from several tables. The information to be returned is an aggregate operator "Count" and several fields from the tables. I cannot get the sql to compile without error.
    Does anyone know of a good website for oracle reports design with sql?

    Hi,
    Why not paste the SQL code along with the
    error or send it to : [email protected]
    Naresh
    null

  • Oracle Reports & XML Publisher

    Hallo,
    Will there be a Oracle Reports Server (native) Version for the Application Server 10.1.3 (and beyond) or will this Service be replaced by the XML Publisher?
    Thx, Willi

    BIP is a different tool that pretty much can do the same job. And (it appears to me) that BIP will eventually be replacing Reports. I am sure BIP will undergo a few more versions first...but Reports does not seem to be undergoing any new development (that I know of). This is just my two cents...
    More to the point: You can also use Oracle reports or BIP or both to generate yoru reports and can even use Reports to generate the XML data (from the db of course) and then use this data file to feed into BIP and use BIP format templates to display the data and even have multiple BIP templates for a single data file.
    In may respects BIP format templates are easier to work with (based upon MSWord) than the layout editor in Oracle Reports and this method allows you to keep the (sometimes very complex) sql in Oracle Reports intact, unchanged. However, the use of a MSWord plug in has limitations...
    It is my opinion that currently BIP has many formatting limitations that are not present in Oracle Reports. To overcome these formatting limitations you pretty much need to learn XSL if you have complex reports. And it is not any easier than learning how to use XSL (if you are not a Java/DotNet type) than it is to learn the layout editor in Reports (IMHO) .
    All of the above is my personal perspective based upon 10+ years on Oracle Reports and 14 months on BIP so take it with a grain of salt. I do not nor have I ever worked for Oracle.
    Scott

  • Developer Reports 6 Server Tuning

    I've successfully installed Oracle Reports 6 Server and it works. However, it takes a while when I access a report (.rdf) from a web browser. I've been reading documentations and played around with some parameters but it still loads slow. Any inputs on tuning this?
    Thanks.

    I would check your query first.
    tune your queries such that they come back really fast then check your
    report server performance with running it
    from a command line (rwcli60) and see what happens.

  • Calling Oracle Report through AQ

    Does anybody know how to invoke an Oracle Report using Advanced Queuing?
    Any assistance will be greatly appreciated.

    Hi Darryl,
    I believe you can invoke PL/SQL in Oracle Reports. If so, invoke AQ PL/SQL procedures from Oracle reports.
    Thanks,
    Brajesh.

  • Oracle Reports from PHP

    PHP application needs to run an oracle report. iAS server, is online, so we have a reports server. Can you tell me "how to" run the oracle report from php?

    You can call the URL on IAS using fopen() function for example.
    http://www.php.net/manual/en/function.fopen.php

  • Connect Oracle Reports to Ms Sql Server DB

    Is it possilbe to Connect Oracle Reports to Microsoft Sql Server database. If yes then how. Please advice.
    Thanks
    Sami.

    It is possible to connect Oracle database to MS Sql server database using the Oracle Transparent Gateway for MS SQL Server.
    You can use the following links to configure such connection:
    Oracle Transparent Gateways - General Description - Part I
    http://oracle-apps-dba.blogspot.com/2008/04/oracle-transparent-gateways-general.html
    Oracle Transparent Gateway for MS SQL Server - Part II
    http://oracle-apps-dba.blogspot.com/2008/04/oracle-transparent-gateway-for-ms-sql_16.html
    Aviad

  • Migration from SQL Server Reporting Services to Oracle Reports 10g

    Hi,
    I have few reports which have been created using the Microsoft Sql Server Reporting Services.Now i want to create similar reports using Oracle Reports 10g.
    Will i need to start from scratch the creation or is there migration tool that would reduce the efforts for the same.
    Thanks in advance.

    Note there's a lot of useful info on sqldev's homepage (Learn More tab): migration docs and examples.
    Regards,
    K.

  • Connect Oracle Reports to SQL server

    Dear All,
    I am using SQL Server 2005 and want to connect Oracle Report 6i to SQL Server 2005 without installing Oracle Database. Installing both the databases slows down the machine.
    Regards,
    Muhammad Yasir Bodla
    Edited by: user650351 on Jun 3, 2009 5:28 AM

    Hi,
    As far as I know this is possible using ODBC and Oracle Open Client Adapter (OCA), but I do not know the details and the howto's.
    Probably you'll get a better answer when posting this question at the Reports forum:
    Reports
    Regards,
    Ed

  • How to Deploy SSRS Reports(Sql Server 2008 R2) into Oracle Weblogic Application Server

    Hi Friends
    One of my project requirement is Developing reports by using SSRS and deploying the reports into Oracle Wblogic Server
    Could you please give me a Steps where we need to configure.
    Regards
    Hasthi.

    Hi Hasthi,
    As per my understanding, I think we couldn’t directly deploy the SSRS report to Oracle Weblogic Application Server. We can deploy report to report server and SharePoint library. And we can display report to some applications, for example, windows application
    and web application. Sorry for that I am not familiar with Oracle. So if your Oracle Weblogic Application Server support those Visual Studio application, then we can use report viewer control to display report in application. For more detail information about
    report viewer control, please refer to the following document:
    http://msdn.microsoft.com/en-us/library/ms251671.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Auto print Oracle report through call to PL/SQL

    I have been tasked with finding a way to generate an Oracle report from a java servlet. Basically they want to pass in parameters to a PL/SQL procedure and have it automatically print out, without user interaction.
    Can this be done?
    Jeff

    I am in a similar situation and have reached a bit of an impass. I am creating the report by means of passing a dynamically created URL from WebDB to the Report Server.
    I have created a procedure to do various things and was planning on calling the report via the procedure using
    OWA_UTIL.redirect_url depending on the params
    that the user entered. Does the UTL_HTTP work in the same means as the aforementioned? Or are they the same thing?
    Regards and thanks,
    Steve
    null

Maybe you are looking for

  • Cookie set on the request from flex disappers

    All, I need to set cookie for calls from flex. So on the server side I set the cookie and send the response back to flex. I used tools like tamperdata and debugbar to monitor the request calls and I found that the cookie i set is available + a JSessi

  • Can't run dipassistant  on windows

    Hi, Im trying to run the dipassistant command but getting the following error although i have set the ORACLE_HOME E:\Oracle\Product\10g\Orainfra\BIN>dipassistant bs -cfg %ORACLE_HOME%\ldap\odi\samples\ad2oid.properties dipassistant ERROR: The specifi

  • There is an error when trying to upgrade to Mavericks from OX Lion

    There is an error when trying to upgrade to Mavericks from OX Lion

  • How do I know Apple id?

    Bought on ebay ipad, but it was used. The serial number is tied to another Apple id. Is there a way to know this id the serial number through the device?

  • Will CS3 work if I upgrade to Snow Leopard?

    I want to buy iLife11 which needs me to upgrade to snow leopard os and I have CS3 installed. Will CS3 still work on this new operating system or will I be forced to upgrade that also?