Questions on oracle forms?!?

Hi, all.
I need some help for oracle forms 10g.
I have some very important questions, pls help.
1) If i have VBean and say this.getCientProperty(Object o). Is this method returning me the value of property specified in the properties palete in oracle forms builder i.e. if i write this.getClientProperty("Name") -> it returns the name of the bean(is it valid for other components like VTextField for example)?
2)Could i call methods from the server on the client and how? I read that server method could be wrapped in pl/sql procedure(could you give mi simple example)?
3)As i understand the only way, that one form can communicate with one bean is with getProperty and setProperty methods, is it?
Thanks in advance.
Best regards.

Hi Francois. First i want to thank you, because you are helping me.
First to say using ugly tags is not a problem, because this xml is only in the memory(it will be nice to be with good tag names but not mandatory).
Here is what "sign" process means:
This process is executed on the client not on the server. So after the xml document is generated it must be signed i.e. with java crypto api and bouncy castle api i create signature from this xml(with algorithms from the api) this signature is like hashcode(String). This string must be passed on the server and there with other algorithms to be verified.
Imagine you have to sign some bank check(represented as web form for example or electronic file) and send it to some person through internet. How could the bank know that this check is signed from you? So i am working to do this possible to sign electronically documents and data. That is the idea. And i created this as a framework like a lib that only needs to be added and used. But our client wants to do the same for oracle forms applications. Unfortunatly i am not oracle forms developer but no body ask me.
I read the how to debug guide but i have some problems and cant debug. I am using vista 64, i don't know if this may be a problem. My College managed to run debug with your guide but i am not. When i hit debug debug_pjc.html every thing is ok. The form is shown but the debuger is not started.
Here is the exception:
D:\DevSuiteHome\jdk\bin\javaw.exe -ojvm -XXdebug,quiet,port49717 -Xbootclasspath/a:D:\DevSuiteHome\jdev\mywork\WebFormSignerBean\WebFormSignerBean\classes;D:\DevSuiteHome\forms\java\frmall.jar sun.applet.AppletViewer file:/D:/DevSuiteHome/forms/java/debug_pjc.html
Debugger connected to local process.
proxyHost=null
proxyPort=0
connectMode=HTTP, native.
Forms Applet version is : 10.1.2.0
java.lang.ClassNotFoundException: com/digisign/WebFormSignerBean
     at java.lang.Class.forName0(Native Method)
     at java.lang.Class.forName(Class.java:141)
     at oracle.forms.handler.UICommon.instantiate(Unknown Source)
     at oracle.forms.handler.UICommon.onCreate(Unknown Source)
     at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
     at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
     at oracle.forms.engine.Runform.processMessage(Unknown Source)
     at oracle.forms.engine.Runform.processSet(Unknown Source)
     at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
     at oracle.forms.engine.Runform.onMessage(Unknown Source)
     at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
     at oracle.forms.engine.Runform.startRunform(Unknown Source)
     at oracle.forms.engine.Main.createRunform(Unknown Source)
     at oracle.forms.engine.Main.start(Unknown Source)
     at sun.applet.AppletPanel.run(AppletPanel.java:377)
     at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • Performance questions in Oracle Forms/Reports of Application Server 10g

    Hello.
    I have a dual Xeon 2.6 computer with 3 GB of memory and 6 GB of cache, running RedHat EL 3 with Oracle AS 10g (9.0.4.0.0).
    Application Server is used to run some applications created with forms, and it generates several reports, but the forms are also used as a front end to another Oracle Database (Oracle 7.0, runing in Sun Solaris 5.6).
    I've notested (and also my users) the application is getting very slow (is running in a dual Xeon, with 2 Gbit nics, in a 3 Gb backbone).
    The speed (or lack of it) is most noted when the forms are generating the reports (it used to be fast - 2 seconds) and now it can take up to 5 minutes.
    The AS 10g, when generating the reports, almost all of the querys go to the other server (in Solaris) and the results return to the server, and then the report is generated. The network has no problems (at least, that i know of), and the network performance is not an issue - both the servers are connected to a Gbit switch.
    Can someone may have an ideia of it can be?
    even in the clients, when running the forms application, the transition of the several menus is slow, and it used to be more fast.
    the 10g is using Java Jinitiator 1.3.18. Can it be from that ? i'm not certain, but i could say this things start happen when we upgraded the jinitiator from 1.3.13 to 1.3.18...
    My users are really getting on my nervers and i cant do nothing, because they have reason...
    any help would be appreciated !
    Cheers
    Bruno Santos

    Bruno, did you solve the performance problem? I'm experiencing the same lack of speed.

  • Sql question in oracle forms

    i am using a timer to update mutilple records on one form. I amu sing a procedure that updates the databse based on the timer. One requirement is such that i need to show the value on one coulmn after some calculations to the value below it.
    It has one to many relationship . For eg A can have mutiple b's and they are in order 1..2..3..
    so the first b would always be 0
    there is another column in the same table where b is and depending on if the value is more than 0 for first b then it should show in 2nd b and if there is value for the 2nd b , then it should show on the 3rd b and so on ...
    thanks
    I i am thinking about ..using loop , first record, next record and so on ...please let me know if there is any other way to solve this problem .

    Of course you may loop through the records in the form, like you say. Still, I believe it would be better on timer expiry to call a stored procedure that would do the kind of processing that you may do by looping through the datablock's records.
    Think that looping through all the records in the datablock you will fetch record by record from the database in case you have post-query trigger (which I believe you have, or bulk by bulk of records in case you do not have post-query trigger). Then, all those processed records would have to be posted to the database and commited.
    Say that on timer expiry you call a stored procedure that gets the parameters needed for updating the records you wish. That procedure will work in the database, where the data is, without having to pass the data between the database and the form. Then, after the stored procedure finished its work (and eventually commited the changes), you requery the datablock to see the changes in the form.

  • Loop question in oracle forms

    declare
    v_comment2 varchar2(2000);
    Cursor C3 is select a.comment_pad
    from qc_procedure_results a, qc_procedures b
    where a.procedure_id = b.procedure_id
    and drive_id = :qc_daily.drive_id
    and dept_id = :qc_daily.dept_id
    and qc_type_id = :qc_daily.qc_type_id
    and qc_subtype_id = :qc_daily.qc_subtype_id
    and result_color = 'Red'
    and ASSOC_WITH_EQUIP = 'Y';
    Begin
    Open C3;
    loop
    Fetch C3 into v_comment2;
    :comment_pad := :comment_pad+ v_comment2;
    Exit when :system.last_record = 'TRUE';
    next_record;
    End loop;
    Close C3;
    End;
    I am getting ora06502 error. If I comment the below statement
    :comment_pad := :comment_pad+ v_comment2;
    I am fine. But I need to show this comment pad with the value. I want to grab values in a loop as I will have more than one line

    It's PL/SQL...
    Try ||
    :comment_pad := :comment_pad || v_comment2;
    And make sure :comment_pad is long enough.

  • Oracle Forms 6i client/server against an Oracle 10gR2 database

    Hello
    We have the following situation:
    Oracle Forms6i/Reports6i client server application against an Oracle 8i cost-based database. we want to migrate this application
    step 1:
    Migrate the database to 10gr2, but do not touch the client application
    Go live
    step 2:
    Migrate the development environment to 6i webforms.
    Production environment stays client server.
    With this construction we can still create new patches/functionality.
    step 3:
    Migrate to Forms10gR2 (and reports)
    I know Forms 6i is not supported anymore.
    My question is on step 1.
    When I read NOTE: 338513.1 entitled "Is Forms/Reports 6i Certified To Work Against Oracle Server 10g Rel 1, Rel 2 or 11g?" carefully
    it says that Forms 6i is not certified against 10gR2.
    On OTN I read several posts that this works ok (assuming you do not use the wrong character set).
    I also read on OTN that patch 18 (which is only supported for EBS customers) is certified against 10gR2.
    The questions:
    - Is Oracle Forms patch 18 certified against an Oracle 10gR2 database? (or only for EBS)
    - Is there anybody out there that can confirm that Oracle Forms 6i C/S works against Oracle 10gR2
    Regards Erik

    Thank you.
    Now I found it.
    But how do I read that page.
    It says:
    Client Certifications
    OS      Product      Server Status
    XP      6.0.8.27.0 Patch 18      N/A      Desupported
    Application Tier Certifications
    OS      Product      Server      Status      
    XP      6.0.8.27.0 Patch 18      9.2      Desupported
    XP      6.0.8.27.0 Patch 18      10g      Desupported
    I read this as follows:
    Patch 18 was certified agains a 10g database in a webforms environment.
    No client server mentioned and Server 10g , so no 10gR2!
    I'm I right?
    Regards Erik

  • Migrating VB Applications on SQL Server to Oracle Forms on Oracle 10g RAC

    Hello All,
    I am looking at migrating a VB application built on a SQL Server database across to an Oracle Forms deployment with the data migrated to an Oracle 10g RAC database environment.
    My first question is whether the SQL Developer Migration Workbench can migrate the SQL Server data to a RAC environment?
    The second question is to ask whether there are any "toolkits" or tips from the community migrating VB applications to Oracle Forms.
    Any advise or suggestions greatly accepted.
    Kind Regards,
    Gary.

    SQL Developer Migration Workbench definitely can migrate SQL Server data to Oracle RAC setup.
    However, I don't think VB application can be easily converted to Oracle Forms.
    You can post your question in Oracle Form forum to double check.

  • Share JVM on the client using ORACLE Forms on Oracle Application Server 10x

    Hi All,
    excuse the question, if it's wrong here:
    We have a problem running an Oracle Forms Application on an Oracle Application Server 10.1.2.3
    Local requirements do not allow multiple JVMs to run on the Client where the Oracle Forms Application is shown.
    Is there any neat way to prevent Multiple Instances of a Forms Application to each run a JVM on the client ?
    (Issue shows up on windows xp, iexplorer 8, ...)
    Any help much appreciated.

    Rephrasing...
    You have a web server - Oracle Forms.
    You want to prevent a user, which is accessing the web server, from opening more than one instance of IE (accessing the web server twice.)
    I would suspect that the answer requires support from the web server. And if that is the answer then this becomes a specific question about Oracle Forms (and not a general one about java.)

  • Run Oracle form non-interactively

    I am using Oracle 8i.
    I want to be able to run a form non-interactively, that is, in batch mode.
    The reason for that is that the application is a "turn-key" package and I don't have access to the source. I want to be able to run the form from a UNIX script rather than having a human key in the input.
    I know what the screen fields need to be and which function key to "press".
    Has anyone run a form non-interactively?
    Is this possible?
    Can anyone suggest a way of doing this? I was thinking that the UNIX utility expect may help.

    I think it is better for you to ask this question in Oracle Forms/Oracle Forms Server development forum.
    This issue would better addressed in Development forums.
    Just my 0.02£
    Yury

  • Run oracle form 6i contain java bean in web?

    i have already made oracle form 6i contain java bean when i run it in client/server
    there is no errors but there is no bean to appear when i invoke it?
    and i'd like to put this form in the oracle application suite

    I think it is better for you to ask this question in Oracle Forms/Oracle Forms Server development forum.
    This issue would better addressed in Development forums.
    Just my 0.02£
    Yury

  • JDev vs. Oracle Forms

    Hello,
    Can any body reveal strategic question about
    Oracle Forms and forms in JDeveloper.
    I mean somethink like "when should I use what"?
    According to Oracle's Internet strategy
    Java is a prime concern for development and
    here is some misunderstanding for me.
    From perspective it is obviously to use JDeveloper.
    But for what reason and what prespective should
    I start new project with Oracle Forms?
    Thanks in advance.
    Dmitry
    null

    36368ccd-1921-478d-9716-f90da72c8ed6 wrote:
    What kind of information I may lose ?
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 10g ?
    Or
    Can I modify my file on Oracle Report 11g and compile it in Oracle Report 11g and run it on Oracle Report 10g ?
    Michel,
    Question 1 - the file will no longer be useable with Reports 10g - you will loose everything.
    Question 2 - No, newer versions of Oracle Forms and Reports are not backward compatible with older versions.
    Question 3 - No, see answer to question 2.
    Craig...

  • Is it possible to use DVT with Oracle Forms 11g?

    Hi,
    I have posted my question on Oracle Forms forum but I didn't get answere regarding dvt usage in Oracle Forms.
    Now I try it here.
    Oracle Forms 11g and charts / graphs
    ====
    one of our customers has a forms 6i applications including oracle graphics and is thinking about upgrade to forms 11g.
    Oracle graphics has been desupported with 6i and with 9i Oracle BI beans has been recommended.
    Forms 10g is the terminal version for Oracle BI beans too (http://www.oracle.com/technetwork/middleware/bbi-beans/overview/oraclebibeanssod2008-129560.pdf).
    What's the recommended technology for graphs/charts in Forms 11g?
    Is it ADF DVT?
    If yes, are there examples how to call them from Forms 11g?
    =====
    regards
    Peter

    Hello Shay,
    thank you very much for the link.
    I wonder if there any plans from Oracle to provide and support a DVT wrapper in next versions of Oracle Forms 11g
    As the customer project is planned for Q2/2011 we still have some time and hope for this :-)
    regards
    Peter

  • Oracle Form Vs OAF JSP Form

    I have some basic questions regarding Oracle Forms and OAF JSP forms. There is a requirement by the client to create custom forms for a functionality not available in Oracle Applications R12. I have to make the decision if Oracle forms or OAF JSP should be used to develop these forms. I have been told that both are supported in R12. I would like to know what is the advantage of doing one over the other? What factors do I need to consider?
    Thanks

    and the appeal is not only about good looking UI, but more on making better user experience, less coding effort, easy maintenance, low cost (on hardware/software), thin clients, and the reason for whole internet revolution based on browser based applications
    Tapash

  • Question on Dynamic Query Data Source and Form Folders in Oracle Forms 6i

    Hi there -
    I have one interesting requirement in Oracle Forms.
    This is what I wanted to do.
    1. Have a LOV and Go button on Form.
    2. From LOV, I will select a pre-defined custom table and click Go.
    3. Based on the selected custom table, I have to populate the Block (Tabular Format).
    4. User should be able to do update, delete, insert on this block.
    5. User should be able to use the Oracle Form folders functionality (select only necessary column and save views etc. Std folder functionality).
    6. If user selects a different custom table name in the LOV on top, I need to refresh the data from the block based on this new table. Remaining functionality should be as it is (steps 3 to 5).
    You can see here, I am going to have dynamic query data source (Table Name as well as column mapping) on the block. I do not know before hand how many columns the user selected table has!
    This is what I have planned for this so far but I have some major questions before I can move on with this design:
    1. I am going to create a table structure with fixed number of column in form (40 cols assuming that the custom table will not have more that 40 cols). (Kind of limitation but it's okay as of now).
    2. Dynamically populate the block based on the table name selected by the user from LOV. Dynamically change the table column names based on the table selected etc.
    3. Perform insert, update, delete using PL/SQL package.
    So far it looks okay.
    Now my real question is,
    Can user still be able to user "Folders" functionality here? I have never done this kind of development before and I doubt the dynamic column naming, dynamic column data source will really work for "folders"!
    Also, I am not really sure whether user will be able to save these "folder" queries?
    Okay so form experts, can you ppl suggest me if this is really going to work? Are there any better ways to do this?
    Initially I tried to do this in OA Framework but I got stuck at because as per OAF developer guide "I cannot user OAF personalization for dynamic items, regions etc".
    For more info on that thread see this link...
    Re: setUserCustomizable issue!
    Thanks in advance for the help.

    Any suggestion anyone?

  • Questions RE: Oracle Developper Forms 9i

    Re: Oracle Forms
    I urgently need help with Oracle Forms and Reports. Do you do consulting on an
    hourly basis? If so, how much do you charge? Is there a minimum?
    I am a student in a master's program for database admin and development. As
    part of a what has turned out be a rather ambitious project, I built a
    database on Oracle8i (UNIX), and developed the front end tools using Oracle
    Developer 9i. The project deadline is fast approaching, and although most of
    the development is done, I need help with very specific questions to get the
    application and final report ready for presentation next week, on Thursday,
    5th of December.
    Specifically, I need help with the following:
    * how to attach a report to the main menu
    * how to attach a form to the main menu
    * how to make graphics that can be seen in the paper layout, also visible in a
    web report
    * how to generate pie charts using the graphics tool
    For some reason, my email address displays as 'null' in the Oracle newsgroup interface,
    and there doesn't seem to be an intuitive way to change that on the prefs page.
    If you want to reply directly to me, my email is: [email protected]
    Thanks in advance.

    hi
    i would like to prefer you Typical installations.
    please checkout the following links for documentations.
    http://www.oracle.com/technology/documentation/index.html
    http://www.oracle.com/technology/documentation/6i_forms.html
    http://www.oracle.com/technology/documentation/oracle9i.html
    i hope it will help you.
    sarah
    Edited by: SaRaH on Jul 14, 2010 4:27 AM

  • Question about Oracle Fusion Middleware 11g.- Installation FORMS

    Hello everyboyd,
    I am installing Forms version 11. First, I installed Oracle Weblogic Server version 10.3.6. After, I installed Forms 11g R2, but when the installation is in the step Create Dominion, the installation fails. I watch in the logs the follow error:
    oracle.as.provisioning.util.ConfigException:
    Error al iniciar el dominio.
    Cause:
    Se ha producido un timeout al iniciar el servidor de administración.
    Action:
    Consulte los logs para obtener más información.
    *     at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)*
    *     at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3150)*
    *     at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3040)*
    *     at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1645)*
    *     at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:635)*
    *     at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)*
    *     at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)*
    *     at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)*
    *     at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)*
    *     at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)*
    *     at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)*
    *     at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)*
    *     at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)*
    *     at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)*
    *     at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)*
    *     at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)*
    *     at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)*
    *     at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)*
    *     at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)*
    *     at java.lang.Thread.run(Thread.java:662)*
    In other log, the error is :
    Executing Task: Creando Dominio
    XXX: adding task: oracle.as.install.classic.ca.standard.DomainProvisioningTask
    AdminServer port is 7001
    Creating Weblogic Domain.
    Adding Template : C:/Oracle/Middleware/oracle_common/common/templates/applications/jrf_template_11.1.1.jar
    Adding Template : C:/Oracle/Middleware/Oracle_FRHome1/common/templates/applications/classic_template_11.1.2.jar
    CLASSPATH=C:\Oracle\MIDDLE~1\patch_wls1211\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\patch_ocp371\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\MIDDLE~1\JROCKI~1.0-1\lib\tools.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\weblogic_sp.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\weblogic.jar;C:\Oracle\MIDDLE~1\modules\features\weblogic.server.modules_12.1.1.0.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\server\lib\webservices.jar;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1/lib/ant-all.jar;C:\Oracle\MIDDLE~1\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\Oracle\MIDDLE~1\utils\config\10.3\config-launch.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\common\derby\lib\derbynet.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\common\derby\lib\derbyclient.jar;C:\Oracle\MIDDLE~1\WLSERV~1.1\common\derby\lib\derbytools.jar;;
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Could Somebody help I?
    Thanks in advance
    Carlota Viña Sirgo

    Hi Carlota,
    Now that the WebLogic and OHS environments are functional, there are some configurations that will be required to set up your Forms environment. Before deploying your own 11g forms, I would test to see if Oracle's test form (test.fmx) can run which is deployed by default in %ORACLE_HOME%\forms. What is supposed to happen is that when you run the URL you are using, Oracle Forms will:
    1. Attempt to download the Java Runtime if not installed already. A Java Runtime (JRE) is required to run Oracle Forms 11gR2. The application will try to download the JRE specified in the formsweb.cfg file (sets up the Web environment for Forms) based off the jpi_codebase parameter (if using IE) or jpi_mimetype (if using other supported browsers). Make sure that your browser is able to download the JRE. Alternatively, you may also download a JRE from the Java website http://www.oracle.com/technetwork/java/javase/downloads/index.html. NOTE: Unless you are running Internet Explorer 64-bit (if you simply run Internet Explorer, this is 32-bit), I would download the 32-bit JRE.
    2. Attempt to start the test.fmx form deployed in the FORMS_PATH variable. This variable is set in default.env, which is the standard environment variable deployment file for Forms (formsweb.cfg also references this file in the default section). If successful, you should receive a page saying "Installed successfully" as well as show you the version of Oracle Forms you are running (ex. 11.1.2.1.0).
    Once those tests are work, if you need any assistance with deploying your own 11g forms, the Oracle Forms 11gR2 deployment guide provides a great source of information to help you get started: http://docs.oracle.com/cd/E24269_01/doc.11120/e24477/toc.htm
    Thanks,
    Scott (PITSS)

Maybe you are looking for