Oracle Apex with BIRT reports

I have developed a report in eclipse birt and trying to intergrate with apex,
javascript:popUp2('http://localhost:8080/BHH/frameset?__report=3_CI_Printing.rptdesign&cino=&p5_interimno.&__format=pdf');
cino being the parameter name, p5_interimno is the page item which has the value in the apex form. Everything seems to be fine except the report prompts me to enter the value in the parameter box again, is there any way I can suppress the report from prompting me to enter the parameter.
Thx

Hello Eric,
>
eric_in wrote:
I have developed a report in eclipse birt and trying to intergrate with apex,
javascript:popUp2('http://localhost:8080/BHH/frameset?__report=3_CI_Printing.rptdesign&cino=&p5_interimno.&__format=pdf');
cino being the parameter name, p5_interimno is the page item which has the value in the apex form. Everything seems to be fine except the report prompts me to enter the value in the parameter box again, is there any way I can suppress the report from prompting me to enter the parameter.
>
How do you call popUp2() function?
Why don't you wrap it up in another javascript function and call it inside it?
function printPDF() {
   var vinterimno = $v('P5_INTERIMNO');
   popUp2('http://localhost:8080/BHH/frameset?__report=3_CI_Printing.rptdesign&cino='+ vinterimno +'&__format=pdf');
}Hope it helps!
Regards,
Kiran

Similar Messages

  • Integrating Oracle Apex with Oracle eBusiness Suite

    Hi All,
    Can someone give me details about how we can integrate Oracle Apex with eBusiness Suite. We have few custom forms/ reports which are being developed in Apex. We want to register these in oracle applications as standard functions and link them to user responsibilities. Is it a good idea to create ApEx as separate application or can we use an existing application (like OM).
    Any pointers, references, documents with reference to this would be very useful.
    Thanks in advance.

    or view: http://skrajend.blogspot.com/2007/06/htmldb-authentication-with-oracle.html
    There are other excelent tip from Rod West
    http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    regards
    Rolando
    Edited by: RolandP on May 12, 2009 6:56 PM

  • Integration of Oracle Apex with Oracle Applications R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Please help.

    Hi,
    Have a look at this thread.
    Installation Procedure for APEX
    Installation Procedure for APEX
    Regards,
    Hussein

  • Integration of Oracle Apex with EBS R12.1.1

    Dear All,
    We are in process of integrating Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf.
    After doing all the steps, the moment when we navigate from EBS application to Apex application by clicking on the EBS menu link it ends up with below error
    "404 Not Found
    Resource /OA_HTML/null/pls/apex/f not found on this server"
    After some analysis i found the below code in "LaunchApex.jsp" for getting the profile value (supposed to be 'http://myserver:port') from custom system profile "APEX_HTTP_SERVER" and prefixing to "/apex/f?p=applicationid:page::APPS:::" is not happening properly
    String l_launcher = ctx.getProfileStore().getProfile("APEX_HTTP_SERVER");
    l_launcher = l_launcher + "/apex/f?p=" + p_application + ":" + p_page;
    l_launcher = l_launcher + "::APPS:::" + p_item_names + ":" + p_item_values;
    as we found that the custom system profile "APEX_HTTP_SERVER" not exist in EBS system. But it works without any page error if we hard code the entire apex application URL in l_launcher variable, but this takes us to EBS login page instead of Apex application page.
    So i feel we can't bypass using profile value from "APEX_HTTP_SERVER" as it has some relation with EBS application session.
    So could anyone please help me how we could create custom system profile "APEX_HTTP_SERVER" or any other options to make the seamless integration of Oracle apex with EBS works without any second login page
    Thanks in advance
    Edited by: 805196 on Aug 25, 2011 12:23 AM

    Hi,
    Create a profile under Application Developer Responsibility as follow:
    Name OAE_LAUNCHER
    Application <whatever>
    User Profile Name Oracle Application Express Launcher
    Description Oracle Application Express Launcher
    2. Set above profile value under System Administrator Responsibility -> Profile -> System, and search for the ‘OAE_LAUNCHER’.
    Set the value at Site Level as:
    http://<hostname>:<Apex port>/pls/apex
    Then instead of hardcoding the URL in the jsp, just give the profile name OAE_LAUNCHER that you have just created in the jsp.
    Hope this helps you
    Brgds,
    Mini
    If this is helpful or correct, assign points promptly.

  • Oracle APEX PL/SQL reports

    Hello
    I was wondering if someone can help me with the syntax error, or if someone can give an example how to implement dynamic query based on a select list item.
    Last night I was looking how to implement simple PL/SQL report using Oracle Apex source region, but every time I try to run the page I'm getting an error "Flow=128 page=10 ORA-20001: wwv_flow_flash_chart.func_ret_sql_qry_err"
    IF I put the same query into SQL developer and replace :P10_STATUS into string 'open', query returns correct results.
    It works fine for single table, but not for inner joint.
    Any help would be appreciated.
    ======================================================
    declare
    v_return varchar2(3000);
    begin
    IF :P10_STATUS is not null THEN
    v_return := 'select p.priority, p.status, i.departments
    from help_details p, help_department i
    where status = :P10_STATUS';
    END IF;
    return v_return;
    END;
    =========================================================

    Hi ATD,
    Thanks for the suggestions.
    Now i have replaced the code as
    Declare
    v_return varchar2(3000);
    begin
         :P1_ITEM1:=:P1_DEPTLOV;
    IF :P1_DEPTLOV IS NOT NULL
    THEN
    v_return:='select dname,deptno from dept ';
    return v_return;
    ELSE
    V_RETURN:='SELECT ename,deptno FROM EMP ';
    return v_return;
    END IF;
    plsql reportEdit      
    report error:
    ORA-20001: Error fetching column value: ORA-01403: no data found
    DEPTNO     Ename
    and in case i change
    select dname from dept ; for select dname ,deptno from dept ;
    then i m able to see only the col deptno , but in query i never used dept...
    I am unable to get where is the mistake ..
    Kindly to a favour by using the above link & checking the application .
    Regards,
    Nandini Thakur.
    Edited by: Nandini thakur on Nov 25, 2010 3:59 AM

  • Can I use Oracle APEX with MySQL Database

    Hi All,
    We are looking to create a performance dashboard using Oracle APEX for our client, but the application database is MySQL. Is it possible to create reports in APEX using data from MySQL database? If yes, are there any specific steps to be followed or any additional setups needed?
    Any inputs would be really helpful.
    Appreciate all the help
    Thanks,
    Sameer

    Hi Sameer,
    it's not possible to use apex on mysql, as stated above me by several persons.
    If you havent got any oracle database in your organization, apex would be an expensive choise unless you use the free Oracle XE (express edition), which has APEX embedded.
    There are some limitations to XE but with a bit of smart thinking it wouldnt be much of a problem.
    [check the XE information here|http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#BABIECJA]
    In short:
    - XE will use 1 CPU even if you have two or more in your system
    - There is a 4 GB data limit
    - RAM memory usage is limited to 1 GB
    - 1 installation per computer
    You can use XE as a reporting database. This will relieve your mysql database from heavy reporting processes, too.
    The XE can be used as a mini data warehouse. So you have to transfer and transform the relevant data from mysql to your XE instance.
    After that you can start building report screens etc in the embedded Apex .
    hope this helps you
    Robin

  • How to integrate Oracle Apex with Peoplesoft?

    Dear Experts,
    Is there possibility to integrate peoplesoft for higher education with oracle apex
    Regards
    Mahmoud

    This very much depends on what you mean by the first "oracle webcenter" and what kind of integration you are looking for.
    Oracle WebCenter contains three main product lines:
    - Oracle WebCenter Portal,
    - Oracle WebCenter Sites,
    - and Oracle WebCenter Content.
    Since the newest version 11.1.1.8 it is possible to store Sites' assets in WebCenter Content.
    WebCenter Portal, where the name WebCenter originated from, is another front-end technology, so it would rather co-exist next to Sites than integrate with them. See this thread WebCenter Portal and WebCenter Sites Integration for more details.

  • How to use Oracle APEX with Oracle12c - Beginner

    Hi. I have been using for months Oracle Application Express thanks to the online workspace on https://apex.oracle.com/i/index.html.
    Now, I want to create my production environment. I have installed Oracle Database 12c on a virtual machine (Oracle Virtual Box) based on Windows Server 2008 R2 (64 bit) o.s.
    I have created a new database and, during this process, I have selected only "Oracle Application Express" as database's option. Now, I don't know how to use APEX, how to configure the Listener and whatever I need to let the users may use my APEX's applications. Thank you very much for any help. Please consider that I am a beginner and I don't know how to master the administrative-side of APEX.
    Saverio

    Hi Neruda from Italy,
    Neruda from Italy wrote:
    Thank you very much. Anyway, If I installed Oracle11g then the list of instructions to follow in order to configure Oracle Apex is the following?
    Installing and Configuring Oracle Application Express and BI Publisher in Oracle Database 11g Release 2
         By Oracle 11g, do you mean Oracle Database 11g Express Edition?
         The list of instructions are correct in a way but the OBE is somewhat old (Instead you should always go for Oracle Documentation).
         Following are the installation guides for APEX versions:
    APEX 5.0 - https://docs.oracle.com/cd/E59726_01/install.50/e39144/toc.htm
    APEX 4.2 - http://docs.oracle.com/cd/E37097_01/install.42/e35123/toc.htm
         As you are going for configuring Embedded PL/SQL Gateway (as given in the OBE above) here are the detailed steps to install APEX and configure EPG:
    APEX 5.0 - https://docs.oracle.com/cd/E59726_01/install.50/e39144/epg.htm#HTMIG386 (skip the steps for Oracle Database 12c)
    APEX 4.2 - http://docs.oracle.com/cd/E37097_01/install.42/e35123/otn_install.htm#HTMIG389
         If you deem that your question is answered, then please close the thread by marking the appropriate replies helpful/correct.
    Regards,
    Kiran

  • Oracle Apex as a reporting tool.

    Hello all,
    i just installed APEX. I can build reports etc using schemas in the oracle instance that i installed Apex in. How about connecting to other Oracle databases which have my key data ?
    Can i use this instance to connect to any other like Business Objects or other reporting tools ?
    Or, do I have to use db links ? Dblinks is a non option, so hopefully there is a simple way.
    Please share links etc, as relevant.

    Hello,
    APEX (formerly known as HTML DB) is a framework integrated into the Oracle Database, so you are of course bound to the restrictions that apply to the database.
    What you can do, in addition to database links, is to create web services that provide you with the data of other database instances. Both APEX and database releases make using web services easier with every new release.
    If you have a 11g database, your database could provide a Web Service "natively". See the corresponding part of the XML DB documentation:
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28369/xdb_web_services.htm#CHDDBCHB
    Of course you may use other out-of-the-box frameworks to create a web service based on a jdbc-connection and hosted by some app server.
    The following tutorial shows you how you can incorporate Web Services in APEX:
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e13363/web_serv.htm#CHDJEFEB
    Perhaps this helps you focussing on one APEX instance to collect data from different databases.
    -Udo

  • How to use oracle APEX with an distant database located on a distant server

    Hi there,
    I'm a brand new user with Oracle Technologies. I've installed ORACLE 10g XE and updated APEX to 4.0 version on my laptop.
    My Manager has setup a distant server with a Linux Red Hat. He has installed on this server EBS R12 with a 11i database.
    As a training, I'd like to play with the tables located on the server with the APEX 4.0 installed on my laptop.
    As the server is on the same local network and following the description above, is it possible to plug my local APEX to the server database ?
    If not, does it mean I have to install APEX on the 11i server database and then connect to the server to play with those tables ?
    Thanks a lot for your time and support ACEs members.
    Regards,
    Ulrich

    Hi Ulrich,
    yes, you can access other database from your APEX database. The mechanism used to do this is called a "database link". You need to create such a database link in your local database, then you can access the remote database like this:
    SELECT *
      FROM databaselink@EMP
    ;If you want to use such remote objects from within APEX you need to create local views to wrap this (search the forum for apex and database links, you'll find interesting threads).
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    BuilderPlugin: http://builderplugin.oracleapex.info
    Work: http://www.click-click.at

  • Oracle Apex forms and reports

    hi i am created one region and in that region one button named 'show' is there. when ever i click on the button it displays table and automatically the button changed to 'hide' whenever i click on the hide button it displaya empty region with show button . can you please tell me the way

    You don't really MIGRATE TO APEX, it's more of a re-development process.. Your existing PL/SQL code can be re-used where viable, but in Forms & Reports you have a state environment versus a stateless environment with APEX..
    APEX also has that similar middleware (APEX Listener with WebLogic or Glassfish).. So you have to understand that you will need to think about what you REALLY want from a move to APEX..
    Do Forms & Reports work for you still, then you MIGHT want to stay there with them.. Otherwise, moving to APEX would be a Long-Term choice..  Since the future of Forms & Reports is not too bright..
    Thank you,
    Tony Miller
    LuvMuffin Software

  • Integration of Apex with Oracle Apps R12

    How can I integrate Oracle Apex with Oracle Applications R12? The requirement is like by clicking a menu the user will see an apex report without giving again the user name and password. By simple menu attachment it's asking for apex login credentials. But I want it will redirect to the apex page without asking for user name and password.
    Anyone please tell the step by step procedure of how to integrate apex with oracle apps R12.
    Please help.

    Hi,
    See below my thread this might be of some help to you. We could successfully integrate EBS and OBIEE.
    Logout link missing upon integrating OBIEE 11g with EBS (Not through SSO)
    Thanks,
    Sri

  • Consuming of SOA webservice in Oracle APEX

    Hi All,
    I have a requirement in which i need to consume the data into Oracle APEX from a web service which was created in SOA. (For eg: There is a webservice created in SOA, which posts empid,empname,empsal etc)
    Now, in Oracle APEX i need to use that data consumed from the webservice to display graph or report , is that possible?
    Can we build graph or report or such things in Oracle APEX without creating any tables/views etc in Oracle APEX?
    If the above question looks complicated, here in simple mode:
    Is there any way in which we can build a graph/report in Oracle APEX with out creating a table/view in APEX for the data that belongs to Oracle E-biz instance.
    Hope I am making sense from the above question.
    p.s: APEX 4.2 is the version that we are using now.
    Any Help/guidance truly appreciated,
    Thanks in Advance,
    Af

    Hi Af,
    I have explained the steps in another thread which I have given link in my previous reply.
    If you are looking for code for any specific step, please let me know.
    And another point you need to take care is - Authentication. If it's a public web-service, then no problem. If it uses basic authentication, then you can pass username and password to APEX_WEB_SERVICE APIs.
    I also suggest you to try invoking web-service using stand-alone clients like SoapUI - The Home of Functional Testing. If everything works fine there, then you can try them invoking from APEX.
    Regards,
    Hari

  • Embed html code with Oracle Apex report

    hello Everybody,
    Iam wondering if you guys have any idea about embeding my own html code that has a javascript and html stuff in Oracle Apex page.
    Thanks,
    Abdul ALkhateeb

    Abdul,
    This is very common and can be done a few ways. It's actually one of the great things about ApEx - VERY flexible. Please be more specific about what you're trying to do so we could point you in the right direction.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Ora-06502 pl/sql numeric or value error in Report Query in oracle apex

    Hello all,
    I need your help...
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    I am using bi publisher to generate PDF reports in oracle apex.
    We were using APEX 4.0 and migrated to 4.2 just a week ago.
    Now we have apex 4.2.
    When I try to Create report query,
    Shared Components >> Report Queries then create.
    and test a report in a create wizard I am getting a error "ORA-06502: PL/SQL: numeric or value error: character string buffer too small".
    I have also applied a patch "16760897".
    This issue is because of number of columns in a query is more then 26.
    If I run a report with 26 or less number of columns then the is working fine, otherwise getting this error.
    My before migration report queries working perfectly even now, but not new queries.
    This issue is also in apex.oracle.com.
    You can see
    Not working  - http://apex.oracle.com/pls/apex/f?p=619:4
    Working - http://apex.oracle.com/pls/apex/f?p=619:2:
    Please give a solution.
    Thanks you.

    check the DB version compatibility with apex 4 or your DB version to apex 4.0 support for upgrade!
    Oracle Application Express Installation Requirements for 4.0

Maybe you are looking for

  • Many bugs and problems in Pages 5.0

    Hi everybody! I just send this bug report to the Apple's feedback team. Meanwhile, maybe you guys could help me find any solutions? Thanks! I downloaded Pages 5.0 yesterday. It seems that it is impossible to use the Align and Distribute function. Whe

  • Is it mandatory to have a tap-bar in banking application?

    while making a banking application for an iPhone device, Is it mandatory to have a tap-bar in it ?

  • The extractor in RSA7 is RED

    Hello Friends, The extractor 2LIS_03_UM in RSA7 is RED and when I try to check the entriesin the delta queue, it errors with the message" There are still no parameters available for the delta transfer". How to correct this error. Thanks Simmi

  • SOAP reciever channel inactive

    I have a SOAP reciever adapter but in RWB communication channel monitoring it shows tobe "Started but inactive" Can anyone suggest any possible reason and solution

  • How can I permanently change the opacity option when cropping an image?

    I can save the crop opacity at say 5%, exit Photoshop 13, and setting has persisted (Edit > Preferences > Display & Cursors > Opacity).  However, when I crop a second image without exiting PS, the opacity has returned to 75%.  I am cropping some very