Unable to run Report !

Hi All !
I intend to connect a report from form through a push button..
But when i click that button during runtime, i got an error,
FRM-41214-Unable to run reportFor which i found a solution in this forum as to check with the job status..
When i clicked that job status i got ,
Error    
    Terminated with error: <br>REP-826: Invalid printer driver 'htm' specified by parameter DESFORMAT.  Yes, i have given 'htm' as DESFORMAT since when i run that report individually from Oracle Reports Developer the format was in 'htm' during runtime..
Please help me with a solution !
Thanks and Regards,
user 10685325
Edited by: user10685325 on Jan 6, 2009 1:25 AM

Hi !
I tried with the coding,
DECLARE
report_id Report_Object;
v_report_other VARCHAR2(4000);
BEGIN
/* Call run_report_object */
report_id:= find_report_object('REPORT121');
v_report_other:= 'paramform=yes P_1='||:blockname.employeeid;
RUN_REPORT_OBJECT(report_id,
:parameter.rwserver,
'HTMLCSS',
CACHE,
'filename.jsp',
v_report_other,
'/reports/rwservlet');
END;But this gives me the error,
bad bind variable:parameter.rwserverAnd also i tried with the coding
PROCEDURE RUN_REPORT_OBJECT_PROC(
repid REPORT_OBJECT;
report_server_name VARCHAR2,
report_format VARCHAR2,
report_destype_name NUMBER,
report_file_name VARCHAR2,
report_otherparam VARCHAR2,
reports_servlet VARCHAR2) IS
--PFACTION REPORT_OBJECT;
v_rep VARCHAR2(1000);
hidden_action VARCHAR2(2000);
rep_status VARCHAR2(20);
c char;
c_old char;
c_new char;
i number(5);
v_report_other varchar2(4000);
BEGIN
repid := find_report_object('REPORT121');
---PFACTION :=find_report_object('http://serc-ks4dbdzvdm:8889/reports/rwservlet?_hidden_report=emp.jsp');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'emp.jsp');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'HTMLCSS');
--SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramname=Pf 1');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'PF_1='||:EMP_LL.employeeid||' paramform=yes');
hidden_action:=hidden_action||'&report='||
GET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME);
hidden_action:=hidden_action||'&destype='||
GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE);
hidden_action:=hidden_action||'&desformat='||
GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT);
hidden_action:=hidden_action||'&userid='||
GET_APPLICATION_PROPERTY('senthil')||'/'||GET_APPLICATION_PROPERTY('senthil')||'@'||GET_APPLICATION_PROPERTY('con_serc');
c_old:='@';
for i in 1..LENGTH(report_otherparam) LOOP
     c_new:=substr(report_otherparam,i,1);
     if (c_new='') then
     c:='&';
     else
          c:=c_new;
     end if;
     if(c_old=''and c_new='')then
          null;
     else
          v_report_other:=v_report_other||c;
     end if;
     c_old:=c_new;
end loop;
hidden_action:=hidden_action||'&'||v_report_other;
hidden_action:=rwservlet||'?_hidden_server='||report_server_name||encode(hidden_action);
set_report_object_property(repid,report_other,'pfaction='||hidden_action||''||report_otherparam);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rserver');
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
WEB.SHOW_DOCUMENT ('http://<path>:portnumber/reports/rwservlet/getjobid' ||
substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rserver','_blank');
ELSE
message('Error when running report');
END IF;
END;But this also gives me the error
encode has to be declaredPls help me to overcome this!
Thanks and Regards,
user 10685325

Similar Messages

  • FRM-41214 unable to run report

    Hi,
    i'm trying in this days to migrate my software from 6i to 9i....
    Particularly i had some problems when i try to launch a report from my form...
    The form had migrated from Oracle 6i and it seems that it hasn't any type of problem but when i try to call a report from the web i obtain the error FRM-41214 (unable to run report)
    but this report is correctly positioned in the right path and when i use a different report of a different project (compiled for the 9i) i note that the error occurs when i use one of my group obtained from my queries like source for a new repeating frame.....
    Exactly until when i use one of the old groups of the old report it's all right but when i try to use a new group referred to a my new query i obtain the precedent error
    (FRM-41214, unable to run report)
    But i don't have any type of error when i compile...
    Can anyone help me? Some one can tell me what can i do or some one can indicate me same document where i can read all the step to migrate a report??
    Thanks a lot in advance

    Problem resolved. Copy of document can be found
    in METALINK, NOTE: 1069651.6. This will resolved the problem.
    Thanks.

  • FRM-41214: Unable ro run report while calling a report from a form in 9iDS

    Am in the process of migrating from Developer 6i client/server to Developer 9iDS on Windows 2000.
    I have read through the various postings on this issue & have made changes accordingly. I also referred to the white paper on the Forms/Reports integration.
    As I am trying to do a prototype, am compiling my forms/reports on my local machine & not on the apps. server.
    I installed a report server on my local machine as,
    rwserver -install 9irep
    I have defined this as a NT service and it is up & running & so is my OC4J instance.
    I have defined a reports object in my Form Builder & set Report Server=9irep,
    Destype=Cache,
    Execution mode=runtime
    Communication_mode=synchronous.
    I also removed the /security tag from the <report server>.conf file as suggested in the white paper. Also set the single sign-on to NO for the reports service.
    I have replaced my run_product with the run_report_object built-in as follows.
    Declare
    report_id      REPORT_OBJECT;
    report_status VARCHAR2(255);
    rep_job_id      VARCHAR2(255);
    Begin
    report_id := FIND_REPORT_OBJECT('KS'); --Created in form under node "Reports"
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,'C:\Kalpana\9i_Prototype\ISSMDLCUST.rdf');
    rep_job_id := RUN_REPORT_OBJECT(report_id);
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    WHILE report_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    END LOOP;
    message(report_status); pause;
    IF report_status='FINISHED' THEN
    Web.Show_Document('http://houwdisndgd01:8888/reports/server/getjobid='
    ||rep_job_id||'?server=ks');
    END IF;
    End;
    I get an error message "FRM 41214: Unable to run report" right after the call to run_report_object.
    Can someone please tell me where am going wrong with my run_report_object built-in? (I also need help writing my web.show document to point it to my local machine/folders).
    Thanks
    Kalpana

    How I have implemented the same and works
    Local OC4J is running.
    I established a reports server "repserver90" as a service.
    I created a report named "C:\TMP\TMP\test_report.rdf"
    I created a form with a Reports object with properties:
    Name: "EMP"
    Filename: "C:\TMP\TMP\test_report.rdf"
    Execution mode "Batch"
    Communication mode "Sychronous"
    Report Destination Type "Cache"
    Report Destination Format "HTML"
    Report Server "repserver90"
    I call the report with the procedure:
    PROCEDURE TEST_REPORT IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('EMP');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no pdeptno='||:dept.deptno);
    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
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://localhost:8888/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Minas

  • FRM-41214: Unable to run Report geting as error

    I am converting 6i reports to 11g for that i am compiling 6i report in 10g reports and copy in 11g server
    in that report is calling from form i have writen query
    like
    DECLARE
    paramlistname VARCHAR2(30) := 'PLIST1';
    plid PARAMLIST;
    cnt number;
    report_id report_object;
    BEGIN
    plid := GET_PARAMETER_LIST(paramlistname);
    IF NOT ID_NULL(plid) THEN
    DESTROY_PARAMETER_LIST(paramlistname);
    END IF;
    plid := CREATE_PARAMETER_LIST(paramlistname);
    ADD_PARAMETER(plid, 'paramform', TEXT_PARAMETER, 'NO');
    ADD_PARAMETER(plid, 'p_division_code' , TEXT_PARAMETER, :control_007.division_code);
    ADD_PARAMETER(plid, 'p_depot_code' , TEXT_PARAMETER, :control_007.depot_code);
    ADD_PARAMETER(plid, 'P_VALIDITY_DATE' , TEXT_PARAMETER, to_char(:control_007.valid_date,'DD/MM/YYYY'));
    ADD_PARAMETER(plid, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
    report_id := find_report_object('Report_NTP_Pending_QtyP');
              web_reportn(report_id,plid);
    DESTROY_PARAMETER_LIST(plid);
    go_block('Control_007');
    end;
    while runging a report from form i am getting error FRM-41214 Unable to run Report
    So Please Help Me how to solve this problem in 11g

    web_reportn(report_id,plid);This is where you actually call the report, so the error is in that procedure. What is the code of this procedure?
    Furthermore, I don't see any reference to system parameters, like destype, desname, report server name etc. Are they set in web_reportn?

  • FRM-41214- unable to run reports

    Env:
    Solaris running 6i forms and reports server patched to patch 9.
    when calling report from form using run_report_object, I get
    FRM-41214- unable to run report
    FRM-41217- Unable to get report job status
    FRM-41213- Unable to connect to report server RepsrvSMARTS
    This only occurs for one of the reports. I am able to run a different report
    with no problem.
    TIA!

    Jim,
    My guess is that the problem identified in bug 1731733 is the root cause. It manifests itself in various ways (see related bugs). The base bug is 1953704 and is fixed in Net80, and is available in one-off patches for various platforms, including Solaris.
    regards,
    Stewart

  • Unable to run reports from the unix command line

    hi
    all of a sudden i am unable to run reports ( on App server 10g) either from the unix scripts or from the unix command line. But i can run them from the forms.
    Any one have any idead about this.
    Thank you

    thanks all for replying
    i have set the env variables for the session and it worked. Looks like i have to set the oracle_home and ld_library_path every time ( opening a new putty session) i call sqlldr.
    But in a whole i am trying to run sql loader from the forms. Right now we have Oracle app server 10g which forms 10g version. As oracle app server 10g didnt come with sqlldr, we are copied the sqlldr of database on to app server with different home. after this we can run sqlldr ( on app server ) from unix scripts but not from Forms. Then we opened a qurey with oracle about app server 10g not commig with sqlldr and its remedy . But they said that they dont have specific remedy for that and suggested the same what we did.
    So we came up with java package which does the same funtion as host command and trying to run sqlldr which is on the database( ie replacing the host command in the forms with the database funtion). By using that funtion i am able to run the sqlldr from sql plus but not from forms. I couldnt easily debug it as i wont through any error messages.
    Any one have any idea of this ...
    Thank you

  • Unable to run report in DS 10g Release 2

    Hi,
    I have no any application server. I am running my application by using the OC4J of Oracle DS 10g Release 2. But I am unable to run report. What I will do? Please.................
    Mahfuz.
    Edited by: user10239690 on Sep 9, 2008 11:23 PM

    wrong thread
    Tony
    Edited by: Tony Garabedian on Sep 10, 2008 10:21 AM

  • FRM-41214 unable to run report from forms with parameters

    Hi all,
    I am unable to run a report from forms if I pass parameters. Report is running fine in reports builder and in url if I access the report straightly.
    I used set_report_object_property to pass the parameters.
    Any clues to solve this problem?
    Priya

    Hi Jeneesh,
    Code is below:
    myreport1 :=find_report_object('MYREP');
    reportdata := Get_Parameter_List('reportsdata');
    IF NOT Id_Null(reportdata) THEN
    Destroy_Parameter_List( reportdata );
    END IF;
    reportdata := Create_Parameter_List('reportsdata');
    Add_Parameter(reportdata, 'account_number', TEXT_PARAMETER, :parameter.account_number);
         /* Setting the properties into Report Object */
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESTYPE, CACHE);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESFORMAT, 'htmlcss');
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_SERVER,vc_reportserver);
                   SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_FILENAME, 'C:\priya\forms\EmcySummary.jsp');
              SET_REPORT_OBJECT_PROPERTY(myreport1,REPORT_OTHER,'account_number='|| :parameter.account_number);
         /* Value of v_rep identifies the report that is currently running either locally or on a remote report server */
         vrep := RUN_REPORT_OBJECT(myreport1,reportdata);
    /* Checking for Report Server is started or not, if not throw an exception else proceed */
         if vrep = vrep||'_0'then
         raise form_trigger_failure;
    end if;
         vjob_id := substr(vrep,length(vc_reportserver)+2,length(vrep));
         vrep_status := REPORT_OBJECT_STATUS(vrep);
         /* Checking the status of the report */
         WHILE vrep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    vrep_status := report_object_status(vrep);
    END LOOP;
    /* When the report status is successful then report is generated in Web */
         IF vrep_status = 'FINISHED' THEN
         --     COPY_REPORT_OBJECT_OUTPUT(vrep,v_tempstorage);
              WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
         END IF;
    ---Any clues?

  • Unable to run reports from forms using run_report_object

    Hi All,
    I am unable to run a report(9i) from forms(9i) in client side.
    I used the following code
    Declare
         repid REPORT_OBJECT;
         v_rep varchar2(100);
         rep_status varchar2(20);
    Begin     
         repid := FIND_REPORT_OBJECT('report4');
         v_rep := RUN_REPORT_OBJECT(repid);
    End;
    I get the following error
    FRM-41219 : Cannot find report:invalid ID.
    Any help will be highly appreciated.
    Thanks,
    Sanjay

    Hi All,
    I am unable to run a report(9i) from forms(9i) in client side.
    I used the following code
    Declare
         repid REPORT_OBJECT;
         v_rep varchar2(100);
         rep_status varchar2(20);
    Begin     
         repid := FIND_REPORT_OBJECT('report4');
         v_rep := RUN_REPORT_OBJECT(repid);
    End;
    I get the following error
    FRM-41219 : Cannot find report:invalid ID.
    Any help will be highly appreciated.
    Thanks,
    Sanjay Hi
    You have to create a report object within the form.
    If you look at the Object NAvigator in the Form Builder right below Record Group
    tou would see an option for Report. Create a new report object.
    Set the following properties for that object
    Filename - This should be the name of your RDF file you created from Report Builder along with the full path.
    Set the Execution Mode, Communication Mode and Report Destination Type as per your requirements.
    In the parameter for find_report_object() pass the name of the report object you created.
    eg.
    if the name of the report object you created is Report2 then
    your call should be rep_id := find_report_object('Report2') .
    You are calling the report object which has been created in your form builder and through that call you are running the report file specified in the Filename property of that report object.
    Regards
    Poorvi

  • Unable to run report from forms developer.

    hi....
    i m not very much in developer 9i.from last 2 month i m doing developer 9i.I m desiging and running
    report from report builder.but i m not able to run that report from forms developer.Can anyone help to solve my problem?is there any particular extension i have to follow or any configuration(Application server) i have to made change?What code i have to write to run a report from forms?

    Hi frank...
    Thanx for ur reply...
    Actually what i did,i created a report and save that report with .rdf extension.I set reports_path(In Registry) property to the particular folder where i put all of my reports.In forms developer i add the report as report object from that folder.i set the following few lines in a button click event
    --=============================================
    declare
    rep_id report_object;
    v_rep varchar2(30);
    begin
    rep_id :=find_report_object('report4');
    v_rep :=run_report_object(rep_id);
    end;
    --=============================================
    when i click the button it is showing a error "You didnot specify the report name".This is all about from me what i did to run a report from forms.So should i do to run report?

  • Unable to run reports due to UserTokenSIDs error

    Hi Everyone.
    A quick summary I have installed nothing but fresh sccm 2012 r2 lately for clients and this is the first I have seen of this error.
    I found what is not a long term soulution here but it changes the reg key back I even tried solution 2 and nothing
    http://www.netdavidic.com/2013/11/how-to-fix-sccm-2012-r2-reporting.html
    I also removed the reporting point role still the same results
    I also read this regarding adding my sql reporting services account to this built-in group but this was an upgrade to r2
    http://social.technet.microsoft.com/Forums/en-US/77bad9b6-de0e-42d3-ae9f-e7c9d26b4330/reporting-error-after-upgrading-to-sccm-2012-r2?forum=configmanagergeneral
    Just an FYI SQL is housed on the same server as sccm. This is a sql 2012 sp1 with reporting services on same server. Thanks!

    It's applicable to fresh installations as well.
    You can verify this on
    http://technet.microsoft.com/en-us/library/gg712698.aspx that states:
    The account that runs Reporting Services must belong to the domain local security group
    Windows Authorization Access Group, and have the Read tokenGroupsGlobalAndUniversal permission set to
    Allow.
    Under section>
    Use the following procedure to install the reporting services point.
    To install the reporting services point on a site system
    Tim Nilimaa | Blog: http://infoworks.tv | Twitter: @timnilimaa

  • Unable to run reports in Campus Manager 5.2.2

    I'm trying to run reports in Campus Manager and none of them work.
    If I try a Best Practices Deviation report I get this error:
    "Problem with File /WEB-INF/screens/reports/BestPracticesReportGen.jsp!!!/WEB-INF/screens/reporst/BestPracticesReportGen.jsp(418,66) Attribute value "pophelp('" + helpLink + "');" is quoted with " which must be escaped when used within the value"
    If I try a Device Attributes report or a Port Attributes report I get a pop up saying:
    "Report not found"
    If I try a Discrepancies report I get:
    "Error while loading. Campus Manager Server may be down. Please check for Campus Manager Server Stgatus in Common Services -> Server -> Admin -> Process. If the process is down, restart it. Else try after sometime"
    And finally, running a VLAN report for any device (and I know they are L2 devices) comes back with:
    "Selected devices(s) do not support VLANs"
    We're running on Windows 2003. I've taken over supporting this system, so I don't know if it ever worked.
    LMS 3.2.1
    Campus Manager 5.2.2
    CiscoWorks Common Services 3.3.1
    Can anyone suggest how I could get to the bottom of this?

    Hi Roger - try editing your MDC\tomcat\conf\catalina.properties file and add the following line at the end:
    org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
    This tells Tomcat to be flexible with double and single quoting in the CW code and allowed me to run the reports, though I'm still not getting the data I'd expect that's probably another issue.
    Hi Ahmad, thanks for your reply. Here's my output too.

  • Unable to run reports demo pages

    Oracle 9iAS rel2 ( 9.0.2.0.1)
    Sun Solaris
    When I bring up the http://myserver.x.com:7779 and go to the demo pages for business intelligence and forms and then to report services. click on jsp or the web paper report, enter a valid connect string. I then get a REP-501 Unable to connect to the specified database.
    I checked the connection by tnsping and sqlplus on myserver.
    If I connect with scott/tiger@discodemo (the discovery database) then I'll get a REP-3000: Internal error starting Oracle Toolkit.
    Any ideas?

    Hi Roger - try editing your MDC\tomcat\conf\catalina.properties file and add the following line at the end:
    org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
    This tells Tomcat to be flexible with double and single quoting in the CW code and allowed me to run the reports, though I'm still not getting the data I'd expect that's probably another issue.
    Hi Ahmad, thanks for your reply. Here's my output too.

  • EBS Applications User unable to run Report in BI Publisher 11g

    We have recently upgraded the BI Publisher (xmlpublisher) from 10g to 11g. We could login using the fnd_user and could see all our reports in the newly upgraded BI Publisher.
    But when a user runs a report with previously assigned roles, the report throws error " cannot connect to the database" . When login with "Administrator" role , the user can run the same report without any issues.
    Anybody came across such error ?
    Any help would be appreciated.
    Sundar K

    Thanks for you reply,
    Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
    We dint face this kind of issue while developing other reports.
    So please let us know if you have any idea on why we are facing this issue.
    Regards,
    Maneesh

  • Unable to run report on CR server 2008 V1

    Hi,
    I am tasked to setup a CR Server 2008 on Windows 2003 and deploy dozens of reports on it. The reports is created using SAP Crystal Reports for Eclipse. The reports can be previewed on Eclipse, but they are failed to run on the newly setup server. The viewer showd "Failed to open the connection. Report1". My server environment is as below.
    OS: Windows Server 2003 Standard SP2
    CR server : CR Server 2008 V1
    DB server : Oracle 11.2.0.1.0 64bit
    DB client : 11.2.0 32bit
    The DB server can be connected via sqlplus on the Win2003 server. I guess there is problem in the link between CR Server 2008 and the Oracle Client. I am new to CR and don't know what debug/log messages I can dig into. How to make it run?
    Thanks

    All of the JDBC options you configure to use the Oracle JDBC driver on your work station to create the reports need to be set up exactly the same way on the CRS PC.
    Refer to the Help files on configuring your JDBC driver.
    Connection screen
    FROM Help file.
    Note: You can configure some of the connection information on this screen in the CRConfig.xml file. For more information, see CRConfig.xml Tag Reference.
    JDBC Connection
    Select this option to use a URL and class name to connect to a Java Database Connectivity (JDBC) data source.
    For details about JDBC, connection URLs, and class names, see your Java and/or data source documentation, or search the Sun Microsystems web site.
    Connection URL
    Enter a JDBC URL to specify a data source so that the appropriate database driver (class) can establish a connection; you'll identify the class in the next field.
    Database Classname
    Enter the name of the class that you want to use as your database driver for this connection. You must know the class name, which is provided by your database client software.
    JNDI Connection
    Select this option to use a data source (a combination of a connection URL and a class name) that has already been specified and saved through the Java Naming and Directory Interface (JNDI).
    JNDI Provider URL
    Enter the JNDI connection URL for your database driver. This information is provided by the database driver vendor.
    JNDI Username
    Enter the appropriate user name to connect to your JNDI server. The JDBC driver uses this information to connect to the database.
    JNDI Password
    Enter the appropriate password to connect to your JNDI server.
    Initial Context
    Enter a directory path that indicates where in the directory service the JNDI should start a recursive search for your predefined connections (data sources, or URL and class name combinations).
    Note: All tokens that appear below the directory location of the initial context are returned. Therefore, it is useful to be as specific as possible when entering initial context information.
    Once you have entered the appropriate directory path and have clicked the Next button, all data sources that you can choose are listed by name in the Data Source Name list. Select the data source that you want to use and click Next to go to the Connection Information screen.
    Don

Maybe you are looking for