Integration of APEX with Cognos BI SDK

Hi All,
Is it possible to integrate APEX with cognos BI SDK.
If yes, how do we integrate both of the.
What are the pre-requisites for his.
Please name the jar, and also the process of intgration

Hi,
Apart from single sign-on, its very straight forward.
I guess, when you render a Cognos report you will have report URL right?
use that url in iframe
<iframe src="url" height=500px,width=500px />
But if you don't have single sign-on , you will be asked to login and once you login to Cognos, you should be good to render any report from cognos through browser.
I have integrated OBIEE and BO into our stack so, the need to train normal users is eliminated.

Similar Messages

  • Problem in Integration of Apex with R12

    Hello,
    I followed the paper apex-ebs-extension-white-paper-345780.pdf to do Integration of Apex with R12. but stuck on one step.
    I am done with all the steps in R12. Now if i click the menu in R12, its going to my existing Apex aplication but still asking username and password.
    Can anyone help me out in what exactly I need to change in Apex Authentication scheme in Apex. Right now I am using Authentication scheme as Application Express.
    Please help me out
    Thanks in advance
    Ananya
    Edited by: Ananya on 26 Dec, 2011 8:51 PM

    Hi Mini,
    Thanks a lot for ur replies. But it is not working for me. I am not able to figure out whats going wrong.
    My Requirement is to redirect to the first page of my application without asking for the APEX login page from the EBS menu.
    So summarizing whatever I steps i have followed:-
    (1) Created Profile and function in APPS as given in "apex-ebs-extension-white-paper-345780.pdf"
    (2) I created the following package in APPS schema
         CREATE OR REPLACE PACKAGE APPS.XXAPX_SECURITY_PKG AUTHID DEFINER AS
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN;
         END XXAPX_SECURITY_PKG;
         CREATE OR REPLACE PACKAGE BODY APPS.XXAPX_SECURITY_PKG AS
         g_key VARCHAR2(100);
         FUNCTION generate_hash (
         p_string IN VARCHAR2
         , p_offset IN NUMBER DEFAULT 0) RETURN VARCHAR2
         IS
         BEGIN
         IF p_string IS NULL THEN RETURN NULL; END IF;
         RETURN RAWTOHEX(UTL_RAW.cast_to_raw(
         DBMS_OBFUSCATION_TOOLKIT.MD5(
              input_string=>p_string||':'||
              TO_CHAR(SYSDATE-(p_offset/24*60*60), 'YYYYMMDD HH24MISS')||g_key)));
         END generate_hash;
         FUNCTION validate_hash (
         p_string IN VARCHAR2
         , p_hash IN VARCHAR2
         , p_delay IN NUMBER DEFAULT 5) RETURN BOOLEAN
         IS
         BEGIN
         FOR i IN 0..p_delay LOOP
         IF p_hash = generate_hash (p_string, i) THEN RETURN TRUE; END IF;
         END LOOP;
         RETURN FALSE;
         END validate_hash;
         BEGIN
         SELECT encrypted_user_password INTO g_key
         FROM FND_USER WHERE user_name = 'SYSADMIN';
         END XXAPX_SECURITY_PKG;
    (3) Created a function in the APPS schema:-
         create or replace FUNCTION ebs_authenticate (
         p_username IN VARCHAR2
         , p_password IN VARCHAR2) RETURN BOOLEAN
         AS
         BEGIN
         IF apps.XXAPX_SECURITY_PKG.validate_hash (p_username, p_password) THEN RETURN TRUE; END IF;
         RETURN (apps.FND_WEB_SEC.validate_login (p_username, p_password) = 'Y');
         END ebs_authenticate;
    (4) In my authentication scheme of my apex application i have changed it to use custom authentication to use the below function
         return apps.ebs_authenticate
    (5) Created a procedure in the APPS schema:-
         create or replace PROCEDURE apps_logon
         IS
         v_username VARCHAR2(100);
         v_password VARCHAR2(32);
         BEGIN
         wfa_sec.getsession(v_username);
         v_password := xxapx_security_pkg.generate_hash(FND_GLOBAL.user_name);
         IF v_password IS NOT NULL THEN
         APEX_CUSTOM_AUTH.login(
              P_UNAME => v_username,
              P_PASSWORD => v_password,
              P_SESSION_ID => v('APP_SESSION'),
              P_APP_PAGE => apex_application.g_flow_id||':38'
         ELSE
         RAISE_APPLICATION_ERROR(-20001, 'Password is null, session id = '||icx_sec.g_session_id);
         END IF;
         END apps_logon;
    (6) In my login page, i have created a process Get Username Cookie and with the process point: onload(Before Header)
         BEGIN
         apps.apps_logon;
         EXCEPTION WHEN OTHERS THEN NULL;
         END;
    Now I am getting this error with the login page :-
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small Content-type: text/html; charset=UTF-8 Set-Cookie: WWV_CUSTOM-F_1120314105059329_811=B4134623EB436033; path=/; Location: f?CallFromForm='Y'&p=811:38
    Please help me figure out the problem as I am struggling a lot with this from last few days :(
    Thanks in advance.

  • Integration of apex with other applications

    hi all,
    i'm planning on integrating my apex application to a .net express application.. since some of my screens will use webforms and some will use winforms.. to state the obvious, i will use apex for my webforms and .net for my winforms.
    what i want to do is that when i login to apex, i will also be automatically logged in to the .net app whenver i open one of its forms and vice versa.
    i did some reading that apex uses wwv_flow_custom_auth_std package and it executes wwv_flow_custom_auth_std.login after successful authentication? is this right? anyways, what i don't know is how apex checks if a user is logged in so that i can probably have my .net app do the same thing.
    any thoughts?
    thanks
    allen

    Allen
    it executes wwv_flow_custom_auth_std.login after successful authentication? is this right?Not exactly. This procedure, aka "the login api" causes the steps defined in the application's authentication scheme to be followed. It's usually called from the login page and accepts the username, password, session ID and some other information as input. One of the steps in an authentication scheme is credentials verification. Normally, if this optional step succeeds, the session is then registered, i.e., the authenticated username and the current session ID are recorded in the sessions table and a cookie is sent to the browser to be used for session management for the duration of the session. Then the indicated after-login page is redirected to. This is one way to structure an authentication scheme. Another is to use the code often referred to here as the "ntlm page sentry". You can find this is you search a bit. This method causes the user's authenticated status (and identity) to be obtained from the environment, e.g., from headers set by Windows NTLM. So really an application can do authentication and session management any way the developer chooses. It's completely flexible.
    ...anyways, what i don't know is how apex checks if a user is logged inApplication Express doesn't know or care if a user is logged in. Your application can check for this in whatever way you see fit. One way is to compare the value of APP_USER with a known list of unauthenticated users, e.g., APEX_PUBLIC_USER, ANONYMOUS, and nobody.
    Scott

  • 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

  • Error while integrating BEx Query with Cognos

    Hi all,
    we have made 999 rows and 150 columns..
    but we r unable  to integrate it with cognos if we remove free characteristics....
    and it thows me the following error
    1.BAP-ERR-0002 a BAPI error has occured in the function module RFC_READ_TABLE. NOT_AUTHORIZED
    2.error when generating data provider
    3.Query is too large
    Please do reply immediately with the correct solution
    Regards
    Madhavi

    Hi Vani Reddy
    Jus one quick finding are there any new patches upgrade taken place in your system . its in generally occurs because patch issues please refer the following note  1325527.
    it may helps you in this reg.
    Hope its clear a little..!
    Thanks
    K M R
    ***Even if you have nothing, you can get anything.
    But your attitude & approach should be positive..!****
    >
    vani reddy wrote:
    > Hi All,
    >
    > While executing Bex Query user is getting below error message after 20 mins and coming out of BEx.
    >
    >
    >
    > Error Group
    >
    > RFC_ERROR_SYSTEM_FAILURE
    >
    > Message
    >
    > An exception that could not be cought occured.
    >
    > Thanks in advance
    > Vani
    Edited by: K M R on Aug 12, 2009 2:14 PM

  • 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 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.

  • Integrating Apex with Cocoon (does it make pdf from taking data from DB)

    Friends,
    I integrated Apex with appache with cocoon. Its working fine with reports but i want it to work with form on a table or view.The steps below which i have followed for integrating Apex with Cocoon
    Steps of pdf Printing of Report with cocoon:
    1) Download and unzip the following needed files in D:\Apex_fop directory.
    2) Open your command prompt .
    Change the directory to D:\Apex_fop\cocoon-2.1.11.
    Set the Java_Home environment variable as: set JAVA_HOME= C:\Program Files\Java\jdk1.5.0_21
    then type build war
    3) After getting the prompt back as D:>Apex_fop>cocoon-2.1.11>
    Copy coocon.war file from the folder D:\Apex_fop\cocoon-2.1.11\build\cocoon.
    Paste this file into webapps subdirectory in main tomcat directory having path as D:\APEX_FOP\apache-tomcat-6.0.26\webapps.....place it in the top
    level of webapps directory.
    4) Now just startup tomcat as D:>APEX_FOP>apache-tomcat-6.0.26>bin>startup.bat
    The cocoon.war file will automatically uncompressed as directory.
    5) To change the port of apache tomcat , edit apache-tomcat-6.0.26\conf\server.xml & change port attribute of Connector element from 8080 to 8181.
    Just check whether Tomcat is running or not as http://localhost:8181/
    & to check cocoon type http://localhost:8181/cocoon/
    6) Now copy fop_post directory & paste it undes new cocoon directory in webapps having path as D:\APEX_FOP\apache-tomcat-6.0.26\webapps
    \cocoon.
    7) Now you need to do some apex settings as follows:
    In APEX, just log in as ADMIN into apex/apex_admin and went to Instance Settings and did the following:
    - Print Serverr: Standard Support
    - Print Server Protocol: HTTP
    - Print Server Host Address:localhost
    - Print Server Port: 8181
    - Print Server Script: /cocoon/fop_post
    In your APEX application, in the Regions section, Click on the Print link next to your report and do the following settings:
    - Enable Report Printing: Yes
    - Link Label: Print
    - Response Header: Report Settings
    - View File As: Attachment
    - Output Format: PDF
    - Report Layout: Default Report Layout
    - Print URL: f?p=&APP_ID.:1:&SESSION.:FLOW_XMLP_OUTPUT_R1063230002781575
    8) Open up the Report Page and click Print , You will get the pdf report.
    But my requirement is bit different. I have made form on a table or view , so when i am submitting my form the record is getting updated in my database and at the same time a new button is appearing at same page as i have branched it in same page. The new button name is print. I want when i click this print button it should print the record which submitted recently. How can i enable the print functionality on form. Its simple in report but how can it be done on form?
    Looking forward for this to know wthr it is achievable or not and if yes what all are the ways?
    Thanks in advance for all who is going to post here and to them also who is giving their time in reading my thread
    Regards
    Adi
    Edited by: Adi's on Mar 23, 2010 8:54 PM
    Edited by: Adi's on Mar 23, 2010 8:54 PM

    You could redirect to a report page instead of to the form page. Then simply print the report.
    This makes sense. You would have one page for entering the data and another page for displaying and printing it.

  • How to integrating APEX with the Oracle eBusiness suite release 11i

    I need to integrate Apex with Oracle eBusiness Suite Release11. APEX need to use ERP authentication (user name/password) and oracle APEX pages will be called from oracle eBusiness Relese 11i menu.
    I have followed metalink doc. 373604.1 and also looked into http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    I have setup DAD on Apache server, oracle Apps functions/menu and created apex_authorise function and added to my APEX application. I have followed the all the steps from above pdf file.
    Here is my issues:
    1. When I try to launch a APEX page again it asking me for the user name password
    2. If I remove login page from APEX application then I can launch my APEX application but I cannot see any images
    3. I need to pass oracle ERP 11i user and responsibility information to APEX. How should I do this?
    Any help will be really appreciated
    Thanks in advance

    Many customers want this and would have hoped that Oracle would have included this as an option. Unfortunately, the left hand(Oracle Apps product managers) don't talk to the right hand(Apex product managers). They totally missed this great opportunity to make life much easier for Oracle Apps customers who have been waiting for this capability that Apex provides. At the present time this is somewhat a black hole. There are people who have figured it out but no one has provided the recipe for everyone else. It's very unfortunate and a complete oversight by Oracle in my opinion. They've got thousands of people developing code but no one had any foresight to see who would use Apex and how they would use it.

  • 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

  • Integrating Application Express with SSO

    Hi,
    What's the difference between integrating Apex with SSO as a partner application, and integrating it as an external application. Are there any benefits / drawbacks to either? and in what situation would you use one or the other?
    Thanks,
    Lee

    Hi, I have one more question related to this.
    We are currently considering implementing the following:
    We are designing a system where the majority of users will have read only access to data. The read only users will NOT have to sign into the system in order to use the system at this privilege level. Other users will have to sign in and once they have done so will then be able to edit and access other functions of the system that are not available to regular read only users. Login links will be available on a number of different screens and once logged in they will be returned to the screen from which they logged in.
    We understand that we can use SSO or even Apex's own authentication to acheive this.
    There is also another system built using portal, forms and SSO. Once a user signs into the portal there is a main menu where various links to different applications are available/hidden depending on the OID groups that the user is a part of.
    Ideally we want to be able to provide a link from the portal system to the apex system from the portal main menu. If a user is signed into the portal then they should be able to enter the apex system without the requirement to sign in again, assuming that they have edit privileges for the apex system. However if the user is signed into the portal but they do not have edit privileges we want to be able to display the apex system in read only mode as we would for anybody else who is not an edit user complete with login links.
    Would this be possible using SSO bearing in mind that we do not want to have to create users for the read only users?
    Any help would be greatly appreciated.
    Thanks,
    Lee

  • Problem of integrating apex4.1 with bi publisher

    i 'm working on
    linux + 11gR2 apex 4.1 bi 11.1.1.5.0(only installed bi publisher)
    both apex and bi on the same server and same database
    i 'm following this pdf :Integrating Oracle Application Express with BI Publisher
    http://www.oracle.com/technetwork/developer-tools/apex/integrating-apex-with-bi-publisher-169198.pdf
    now i got a problem when login apex using bip's username
    in validate_login function flex_ws_api.make_request always got null
    here is the function :
    create or replace function validate_login(
    p_username in varchar2,
    p_password in varchar2) return boolean
    is
    l_validate varchar2(48);
    l_env clob;
    l_xml xmltype;
    l_ns varchar2(4000) default null;
    l_url varchar2(4000);
    begin
    l_env := '<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pub="http://xmlns.oracle.com/oxp/service/PublicReportService">
    <soapenv:Header/>
    <soapenv:Body>
    <pub:validateLogin soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <userID xsi:type="xsd:string">'||p_username||'</userID>
    <password xsi:type="xsd:string">'||p_password||'</password>
    </pub:validateLogin>
    </soapenv:Body>
    </soapenv:Envelope>';
    l_url := 'http://'||v('BIPUB_SERVER');
    if v('BIPUB_PORT') is not null then
    l_url := l_url||':'||v('BIPUB_PORT');
    end if;
    l_url := l_url||'/xmlpserver/services/PublicReportService';
    l_xml := flex_ws_api.make_request(
    p_url => l_url,
    p_envelope => l_env);
    l_validate := flex_ws_api.parse_xml(l_xml,'//validateLoginReturn/text()',v('NS'));
    if l_validate = 'true' then
    return true;
    else
    return false;
    end if;
    exception when others then
    return false;
    end validate_login;
    ...... what's wrong???
    thx !!!!!
    Edited by: 901181 on 2011-12-7 下午7:32

    In hopes that someone can give me some guidance, I've duplicated the issue on my apex.oracle.com workspace.
    Workspace: NBPERP
    Username: GUEST
    Password: 12summer3
    Application: 464. Report Demo
    Page 1 - a drop down list with submit will show that a query, when run, will return values.
    Shared Component/Report Layout: LAYOUT TESTER - a simple RTF with some unique text that mimics the table shown on page 1.
    Shared Component/Report Query: TEST REPORT - the same query that is being executed on Page 1. If I click into the query and set the bind variable to "Indy" (no quotes) and then Apply Changes, I can download an XML file with the correct data. If I think click "Test Report", I get a "no data found" (unexpected condition #1). If I click back into the query and set the bind variable, click "Test Report", again, I get a "no data found" message (unexpected condition #2).
    Any help/direction on this problem would be much appreciated.

  • How to integrate wtk 2.5.2 with Nokia S60 SDK?

    I tried to following Sun Java Wireless Toolkit for CLDC User's Guide. It mentions "The procedure is usually to unpack or install the third party emulator, then copy its directory into workdir\wtklib\devices. The next time you run the toolkit, the emulator is available. ".
    So I copied the folder "S60_3rd_MIDP_SDK_FP1_2" of Nokia S60 SDK into "C:\WTK2.5.2\wtklib\devices". Then I run WTK2.5.2, from the menu "File - Utilities", there is only Default Emulator in Emulators list, not any Nokia emulator there! I can not find in menu "Edit - Preferences" too!
    I tried integrate Netbeans with Nokia S60 SDK, it works well.
    I did not try integrate Eclipse+EclipseMe with Nokia SDK, it seems more complex...
    Can WTK 2.5.2 be integrated with Nokia S60 SDK? Anybody can answer and help me? Thanks!

    You can download the Flex 3 compiler for J2EE applications and update the <br />compiler with the bits contained in that web application.<br /><br />  http://opensource.adobe.com/wiki/display/flexsdk/Downloads<br /><br />Note that moving forward (LCDS 2.6 - in beta now) the MXML compiler will not <br />come with LCDS at all.  It is now part of the SDK and must be configured <br />'manually' if you want to use it.<br /><br />Probably the better thing to do is to compile your application with <br />FlexBuilder 3 instead of the web tier compiler, you will have much more <br />control over which Flex SDK you are using - plus you get a good IDE!<br /><br />--<br />Tom Jordahl<br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Hi,<br />><br />> I deployed LCDS 2.5.1 version which uses Flex 2.0 by default. Now i want <br />> to use Flex 3.0 with this LCDS. How to configure it? I tried to configure <br />> by modifying the library path and source path which points to Flex 3.0 SDK <br />> library and source path from the following file,<br />><br />> {WAS_INSTALLED_PATH}\flex_war.ear\flex.war\WEB-INF\flex\flex-config.xml<br />><br />> But it is not working properly. Can anyone please help me, how to change <br />> Flex 3.0 SDK lookup for LCDS 2.5.1?<br />><br />> Thanks,<br />> Murali Sankar Muthaiah

  • Trusted Authentication possible with Wed Sevices SDK? BOE - 3.1

    Hi,
    We are planning to upgrade to BOE 3.x. We have integrated our application with BOE using Wed Services SDK. I'd like to know if we can implement the trusted authentication using the web services APIs in BOE 3.x.
    Apparently the question was posted here before but no answers -
    Re: trusted authentication.
    Thanks
    Manas

    XI 3.1 Service Pack 2.
    Configure Trusted Authentication on the CMC.   Ensure TrustedPrincipal.conf file with the shared secret is in the <INSTALL>/BusinessObjects Enterprise 12.0/win32_x86 folder.
    If you look in dswsbobje/WEB-INF/classes/dsws.properties, you'll see a property trustedAuthentication.enabled set to false.
    Set it to true, then restart the dswsbobje Java Web Application Server.
    Then you only need to pass in domain (CMS name) and username to the Session Web Services for logon.
    Note that if you do the above, it'll use Trusted Authentication for all requests coming into dswsbobje - i.e., no longer need to pass in passwords.
    So you really need to put something in front of dswsbobje, to authenticate any requests going in.
    Sincerely,
    Ted Ueda

  • Connecting APEX with local bi publisher

    Hi, everyone
    I have some technical difficulty with integrating bi publisher with apex and enabling pdf-printhng as well.
    As far as I know, I made some mistakes in configuring apex itself.
    I have apex installed at Application Server on the main server in the company and BI Publisher installed at the local workstation using BASIC installation option. Also I have entered this parameters in "Report Printing" in apex:
    host: 192.168.17.157
    port: 9704
    and made a shared report query. But then I trying to test the query I always get message:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.
    Please, help if someone knows what to do.

    Thanks, rwillems.
    All the configurations of Report printing are closely the same.
    Problem is, BI publisher is installed at local machine at one network and the DB-server is in another. I think I should either contact my system administrator or reinstall publisher into Application Server (that server is in the same network with the database).
    Kind Regards,
    Peter

Maybe you are looking for

  • Can I copy my iTunes from one Mac to another to a distant location?

    I have 2 homes one in NYC and the other in upstate NY. I have multiple Macs at both locations all using Snow Leopard and the latest version of iTunes(9). I only have 1 iTunes library I maintain at the upstate location and have to bring my iPod to the

  • How to Change the (Missing) Font in Endnotes

    Hello and thanks (again) in advance, My preflight report showed that I have 170 errors: they are all missing fonts in the numbers of the endnotes. Some of the Endnotes are in the Times New Roman Font, but for some reason, 170 endnotes are not. This i

  • Web Gallery in iWeb

    I inserted some Web Gallery in the iWeb page. When I click the link, the the displayed the Web Gallery doesn't have the feature of the stand alone Web Gallery, not option for Download, Upload, and password protection is gone too. Is there anyway to i

  • Can't drag songs from Library into Playlist

    I have followed the instructions but have not been able to drag songs into any playlists at all. Any help or suggestions will be appreciated.

  • Align more than one element in same line in a selection screen

    I have to align more than one element in same line in a selection screen. It is possible with the following code. now the problem is i need space between these elements. how can i achieve it? SELECTION-SCREEN BEGIN OF LINE.   SELECTION-SCREEN COMMENT