Error loadin webutil on 9.0.2 form application

When i try to execute a forms that contain a webutil function i find this error :
"FRM-47023 - DON'T EXIST A PARAMETER OF NAME "WEBUTILCONFIG" NEL FORM "forms name"
What kind i have mismatch ???
Thank's Again

and then appear the follow message
"WUC-5 " NO WEBUTIL CONFIGURATION FILE SPECIFIED

Similar Messages

  • Getting an error in WebUtil while opening a custom form in EBS

    I am trying to use Webutil in Oracle EBS Release 12.1.3. I have configured all the following options:
    1. Downloaded frmwebutil.jar and jacob.jar and copied those files in $ORACLE_HOME/forms/java
    2. Downloaded jacob.dll and copied this file in $ORACLE_HOME/forms/webutil
    3. Did the following configuration in webutil.cfg
    install.syslib.location=http://pksundev.uead.uep.com.pk:8030/OA_JAVA/oracle/apps/fnd/jar
    # Change size and version if necessary, like when upgrading the library.
    # Normally this would not be required since most of these libraries come with
    # install itself.
    #install.syslib.0.7.1=jacob.dll|94208|1.0|true
    #install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    #install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    install.syslib.0.7.1=jacob.dll|106496|1.10.1|true
    install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    #NOTE: By default the file transfer is disabled as a security measure
    #transfer.database.enabled=FALSE
    #transfer.appsrv.enabled=FALSE
    #transfer.appsrv.workAreaRoot=
    #transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    #transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    #transfer.appsrv.write.1=c:\temp
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    transfer.appsrv.workAreaRoot=
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp
    4. Did the following configuration in forms_web_1012_cfg.tmp under $FND_TOP/admin/template/custom
    ;[apps]
    ; Customization webutil config
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    archive_jini=frmall_jinit.jar
    archive=frmall.jar, frmwebutil.jar, jacob.jar
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    5. Renamed appsbase.htm to appsbaseCustom.htm and added my own configuration and added webutil configuration:
    else if (isIE == true) {
    var IEhtml = xHTMLpreApplet;
    var IEhtmlWebutil = xHTMLpreApplet;
    //IEhtml += '<OBJECT classid="' + xpluginclsid + '"';
    if (xappletMode == "nonforms")
    { IEhtml += '    name="' + xappletName +  '"';
    IEhtml += ' width=' + xuiw + ' height=' + xuih ;
    IEhtmlWebutil += ' name="' + xappletName + '"';
    IEhtmlWebutil += ' width=1 height=1' ;
    else { IEhtml += '    width=558 height=120';
    IEhtmlWebutil += ' width=1 height=1';
    if(xplugin == "jdk"){
    IEhtml += ' codebase="' + xpluginurl + '">';
    IEhtml += '<' + 'PARAM name=legacy_lifecycle value="' + xsunpluginlifecycle +
    '">';
    IEhtmlWebutil += ' codebase="' + xpluginurl + '">';
    IEhtmlWebutil += '<' + 'PARAM name=legacy_lifecycle value="' + xsunpluginlifec
    ycle + '">';
    if(xplugin == "jinit"){
    IEhtml += ' codebase="' + xpluginurl + xjiname + '#' + xjivername + '">';
    IEhtml += '<' + 'PARAM name=jinit_appletcache value="' + xjiappcache + '">';
    IEhtmlWebutil += ' codebase="' + xpluginurl + xjiname + '#' + xjivername +
    '">';
    IEhtmlWebutil += '<' + 'PARAM name=jinit_appletcache value="' + xjiappcache +
    '">';
    IEhtmlWebutil += '<' + 'PARAM name=type value="' + xpluginmimetype + '"
    ';IEhtmlWebutil += '<' + 'PARAM name=codebase value="' + xcodebase + '">';
    IEhtmlWebutil += '<' + 'PARAM name=code value="oracle.forms.webutil.commo
    n.RegisterWebUtil">';
    IEhtmlWebutil += '<' + 'PARAM name=archive value="' + xwebutiljarfile + '">
    writeJInitBeginTag(xpluginclsid,IEhtmlWebutil);
    writeJInitEndTag();
    // Separate the less-than character from PARAM to prevent Appletviewer
    // from seeing these as param tags outside of an applet tag.
    IEhtml += '<' + 'PARAM name=type value="' + xpluginmimetype + '">';
    IEhtml += '<' + 'PARAM name=codebase value="' + xcodebase + '">';
    IEhtml += '<' + 'PARAM name=code value="' + xcode + '">';
    if (xjarloading == "all") {
    IEhtml += '<' + 'PARAM name=archive value="' + xmacarchive + '">';
    } else if (xjarloading == "core") {
    IEhtml += '<' + 'PARAM name=archive value="' + xcorejarfile + '">';
    } else if (xappletMode == "nonforms") {
    IEhtml += '<' + 'PARAM name=archive value="' + xajarfile + '">';
    } else {
    IEhtml += '<' + 'PARAM name=archive value="' + xarchive + '">';
    IEhtml += '<' + 'PARAM name=separateFrame value="' + xuisf + '">';
    IEhtml += '<' + 'PARAM name=WebUtilLogging value="' + xWebUtilLogging +
    '">';
    IEhtml += '<' + 'PARAM name=WebUtilLoggingDetail value="' + xWebUtilLoggingDe
    tail + '">';
    IEhtml += '<' + 'PARAM name=WebUtilErrorMode value="' + xWebUtilErrorMode
    + '">';
    IEhtml += '<' + 'PARAM name=WebUtilDispatchMonitorInterval value="' + xWebUtil
    DispatchMonitorInterval + '">';
    IEhtml += '<' + 'PARAM name=WebUtilTrustInternal value="' + xWebUtilTrustInte
    rnal + '">';
    IEhtml += '<' + 'PARAM name=WebUtilMaxTransferSize value="' + xWebUtilMaxTransf
    erSize + '">';
    // End Customer Webutil Deploy
    6. Finally ran Autoconfig.
    After all the above configuration when I tried to run the form that is using webutil feature , I got the following error:
    oracle.forms.webutil.fileTransfer bean not found. WEBUTIL_FILE_TRANSFER.getMatTransfer will not work.
    oralce.forms.webutil.host.HostBean not found WEBUTIL_HOST.execute will not work.
    Kindly let me know why I am getting this error and which setup am I missing.
    Regards

    hi
    You have tried to confirm a negative activity or to cancel a confirmation.
    This results in a negative total confirmed quantity for this activity.
    Procedure
    Check the total confirmed activity.
    Enter a different quantity for the activity or cancel other confirmations.
    you  need to enter the quanity
    -ashok

  • Wuc-15 error in webutil in Oracle 9i forms

    The 9i form containing the webutil when run gives the following error in java console
    and
    also the wuc-15 error is diplayed in the form with FileFunctions Error

    The 9i form containing the webutil when run gives the following error in java console
    load: class oracle.forms.webutil.common.RegisterWebUtil not found.java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadCode(Unknown Source)     at sun.applet.AppletPanel.createApplet(Unknown Source)     at sun.plugin.AppletViewer.createApplet(Unknown Source)     at sun.applet.AppletPanel.runLoader(Unknown Source)     at sun.applet.AppletPanel.run(Unknown Source)     at java.lang.Thread.run(Unknown Source)connectMode=HTTP, native.Forms Applet version is : 90290java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.     at sun.applet.AppletClassLoader.getBytes(Unknown Source)     at sun.applet.AppletClassLoader.access$100(Unknown Source)     at sun.applet.AppletClassLoader$1.run(Unknown Source)     at java.security.AccessController.doPrivileged(Native Method)     at sun.applet.AppletClassLoader.findClass(Unknown Source)     at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at sun.applet.AppletClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClass(Unknown Source)     at java.lang.ClassLoader.loadClassInternal(Unknown Source)     at java.lang.Class.forName0(Native Method)     at java.lang.Class.forName(Unknown Source)     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(Unknown Source)     at java.lang.Thread.run(Unknown Source)
    and
    also the wuc-15 error is diplayed in the form with FileFunctions Error

  • WUO-709: Unable to get Property: Open == Forms application using Webutil

    Hi everyone,
    I have configured Webutil and tested a demo application for loading excel data into a forms application. The application works just fine. Here is the code:
    DECLARE
    application Client_OLE2.Obj_Type;
    workbooks Client_OLE2.Obj_Type;
    workbook Client_OLE2.Obj_Type;
    worksheets Client_OLE2.Obj_Type;
    worksheet Client_OLE2.Obj_Type;
    filename                varchar2(2000);
    cell Client_OLE2.OBJ_TYPE;
    args Client_OLE2.OBJ_TYPE;
    cell_value varchar2(100);
    eod boolean:=false;
    j integer:=1;
    BEGIN
         -- The following set up communication with the excel spreadsheet
    application := Client_OLE2.create_obj('Excel.Application');
    Client_OLE2.set_property(application,'Visible','false');
    workbooks := Client_OLE2.Get_Obj_Property(application, 'Workbooks');
    args := Client_OLE2.CREATE_ARGLIST;
    Client_OLE2.add_arg(args, 'c:\test\test.xls');
    workbook := Client_OLE2.GET_OBJ_PROPERTY(workbooks,'Open',args);
    Client_OLE2.destroy_arglist(args);
    worksheets := Client_OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    worksheet := Client_OLE2.GET_OBJ_PROPERTY(application,'activesheet');
    --Go to the first record
    go_block('planets');
    first_record;
    loop
              If :system.record_status <> 'NEW' then
    create_record;
              end if;
    exit when eod;
         for k in 1..3 loop --3 fields per record
         args:= Client_OLE2.create_arglist;
    Client_OLE2.add_arg(args, j);
    Client_OLE2.add_arg(args, k);
    cell:= Client_OLE2.get_obj_property(worksheet, 'Cells', args);
    Client_OLE2.destroy_arglist(args);
    cell_value :=Client_OLE2.get_char_property(cell, 'Value');
    if upper(cell_value) = 'EOD' then
         eod:=true;
         Message('End of Data');
         exit;
    end if;
    --Could be done this way also ->
    /*if k =1 then
         :dept.deptno:=cell_value;
    end if;
    if k =2 then
         :dept.dname:=cell_value;
    end if;
    if k =3 then
         :dept.loc:=cell_value;
    end if;
    --Less code this way ->
    copy(cell_value,name_in('system.cursor_item'));
    next_item;
         end loop; --for
         j:=j+1;
    end loop;--main loop
    -- Release the Client_OLE2 object handles
    Client_OLE2.release_obj(cell);
    Client_OLE2.release_obj(worksheet);
    Client_OLE2.release_obj(worksheets);
    Client_OLE2.release_obj(workbook);
    Client_OLE2.release_obj(workbooks);
    Client_OLE2.invoke(application,'Quit');
    Client_OLE2.release_obj(application);
    END;
    -- cell_value :=Client_OLE2.get_num_property(cell, 'Value');
    The issue comes when I try to supply filename and path (here, c:\test\test.xls) through a file open dialog. I tried each of these:
    1.
    filename := client_get_file_name
    (directory_name => 'C:\'
    ,file_name => 'test'|| '.xls'
    ,file_filter => 'Excel (*.xls)|*.xls|'
    ,message => 'Select client side filename where App Server file will be saved'
    ,dialog_type => OPEN_FILE
    ,select_file => TRUE
    2.
    filename := Client_Get_File_Name(directory_name => 'C:\'
    ,file_name => null
    ,file_filter => null
    ,message => null
    ,dialog_type => null
    ,select_file => null
    3.
    filename := client_get_file_name ('','','','Select a file to Upload ',null,TRUE);
    On using the above, I DO get a file open box. However, after browsing and selecting a file, I am getting the error message:
    WUO-709 [OleFunctions.get_obj_property_args()] Unable to get Property: Open; Exception com.jacob.com.ComFailException: Can't map name to dispid: Open
    I have checked the documentation on 'WUO-709' but cannot seem to figure out why it's not working.
    Sorry for the lengthy description. Would greatly appreciate help on this.
    - Amit

    I forgot to mention that in the modified code, I am supplying 'filename' as:
    filename := client_get_file_name ('','','','Select a file to Upload ',null,TRUE);
    args := Client_OLE2.CREATE_ARGLIST;
    Client_OLE2.add_arg(args, filename);
    Thanks,
    Amit

  • How to fix this error in webutil configuration

    hi all,
    I'm new in forms now i'm trying to configure webutil in forms 10g, actually i search in this forum and i found this link
    http://baigsorcl.blogspot.com/2010/01/open-file-dailog-box-example-using.html
    for BaiG member but i stucked in this step 8 and i need more help
    i get this error :
    D:\>d:\DevSuiteHome_1\forms\webutil\sign_webutil d:\DevSuiteHome_1\forms\java\fr
    mwebutil.jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> alr
    eady exists
    There were warnings or errors while generating a self signing certificate. Pleas
    e review them.
    Backing up d:\DevSuiteHome_1\forms\java\frmwebutil.jar as d:\DevSuiteHome_1\form
    s\java\frmwebutil.jar.old...
            1 file(s) copied.
    Signing d:\DevSuiteHome_1\forms\java\frmwebutil.jar using key=webutil2...
    'jarsigner' is not recognized as an internal or external command,
    operable program or batch file.
    There were warnings or errors while signing the jar. Please review them.
    D:\>any help i greatly appreciated
    thanks & regard

    hi Andreas and BaiG
    until now i stucked
    look the same error
    D:\DevSuiteHome_1\jdk\bin>d:\DevSuiteHome_1\forms\webutil\sign_webutil.bat d:\De
    vSuiteHome_1\forms\java\frmwebutil.jar
    Generating a self signing certificate for key=webutil2...
    keytool error: java.lang.Exception: Key pair not generated, alias <webutil2> alr
    eady exists
    There were warnings or errors while generating a self signing certificate. Pleas
    e review them.
    Backing up d:\DevSuiteHome_1\forms\java\frmwebutil.jar as d:\DevSuiteHome_1\form
    s\java\frmwebutil.jar.old...
            1 file(s) copied.
    Signing d:\DevSuiteHome_1\forms\java\frmwebutil.jar using key=webutil2...
    jarsigner: attempt to rename d:\DevSuiteHome_1\forms\java\frmwebutil.jar to d:\D
    evSuiteHome_1\forms\java\frmwebutil.jar.orig failed
    There were warnings or errors while signing the jar. Please review them.
    D:\DevSuiteHome_1\jdk\bin>plz i need more boring details

  • Error While updating info in the People Form-Additional Personla Details

    Hi All,
    Iam getting an Error While updating information in the People Form,Additional Personla Details DFF.
    Error Like:
    APP-PER-289974:There has been an error Processing this person,The error encountered is 'ORA-20001:HZ_STNC_SQL_EXCEP:N,PROC.sync_Person,N,ERROR.ORA-25153:Temporary Tablespace is empty ,N,POO,1265890',which occured in procedure  per_htrca_merge_tca_person at step10.
    Please contact your support represntative.
    Thanks -
    Sowmya

    Thanks you,
    By this Note id:395136.1
    Iam unable to find this Set profile 'HZ: Generate Events for DQM Real-Time Synchronization' to No
    with this Note id:278422.1
    We are unable to find this proifle option : HZ: Data Sharing and Security Enabled profile
    we are using applications 11i.
    please help to find this Profile option.
    But with this note id:ID 395136.1
    This is Working.
    Query for HZ: DQM Synchronization Method profile. Set the value to Disable.
    But iam facing proble while uploding data to DFF ,Error--SQL exception occurred during PL/SQL upload.
    Thanks for the Support-
    Sowmya.
    Edited by: user13419037 on Aug 11, 2011 11:53 PM
    Edited by: user13419037 on Aug 12, 2011 12:03 AM
    Edited by: user13419037 on Aug 12, 2011 3:45 AM

  • SSO protected Forms application fails with an OID error.

    Hello everyone,
    I have a fresh install of Oracle Application Server 10.1.2 on RedHat Enterprise Linux 4. No patches were installed yet.
    I've setup Forms to use the Single Sign-On server (SSO). Then created a user with a Resource Access Descriptor (RAD) in the Oracle Internet Directory (OID). I can successfully use the Forms application when I'm not using the SSO.
    However, problems arise when I set the Forms application to use SSO. Once I get authenticated, the application.log files fills up with the following lines:
    07/05/08 16:30:38 formsweb: In getUserId method: caught oracle.ldap.util.AccessDeniedException: General Error when performing search: getExtendedProperties [LDAP: error code 50 - Insufficient Access Rights]
    07/05/08 16:30:38 formsweb: In doRequest method in ue.isNamingException
    07/05/08 16:30:38 formsweb: Redirecting to DAS to update the resviewer list
    07/05/08 16:30:38 formsweb: UserID is NULL redirecting to DAS
    07/05/08 16:30:38 formsweb: Forms Group DN"cn=Logical Application Group, orclApplicationCommonName=formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635, cn=forms, cn=Products, cn=OracleContext"
    07/05/08 16:30:38 formsweb: The DAS URL generated: http://osielle.notarius.com:7777/oiddas/ui/oracle/ldap/das/mypage/AppCreateResourceInfo?resKey=testrtm&resType=oracleDB&resViewer=%22cn%3DLogical+Application+Group%2C+orclApplicationCommonName%3DformsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635%2C+cn%3Dforms%2C+cn%3DProducts%2C+cn%3DOracleContext%22&doneURL=http%3A%2F%2Fosielle.notarius.com%3A7778%2Fforms%2Ffrmservlet%3Fconfig%3Dtestrtm%26form%3Drtminit.fmx&cancelURL=http%3A%2F%2Fosielle.notarius.com
    While $ORACLE_HOME/ldap/log I see some new log files created which also contain erros. Such a log file is oidldapd01s3739.log and contains these lines:
    BEGIN
    2007/05/08:14:37:13 * ServerWorker (REG):7 * ConnID:194 * OpId:5235 * OpName:modify
    ERROR * gslsbzCheckDupAttrValinEntry : Normlztn failed for "cn=Logical Application Group, orclApplicationCommonName=formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635, cn=forms, cn=Products, cn=OracleContext"
    END
    I've RTFM a lot about this but I still can't find a way to fix this. I've found some info in Metalink Note 360341.1 "In Getuserid Method: Caught Error When Logging Into Forms With SSO Enabled". Unfortunately, my formsweb.cfg file is already setup as the workaround that it proposes, so that doesn't help.
    It seems like the attribute "orclresourceviewers" does not get created when the RAD is generated? One of you (Sandeep I believe) suggested that it may have to do with a lack of an OID Index and that I should use catalog.sh to fix this. I unfortunately don't know how to proceed.
    I've also opened a TAR, but Oracle Support doesn't seem to understand what's going on.
    Any ideas anyone?
    Many thanks,
    David

    Hi everyone,
    Alright, I solved the problem. It seems like the OID is very very very picky with the formsweb.cfg syntax. Especially with the quotes: don't use them!
    For example, I had set the oid_formsid & formsid_group_dn values between double-quotes. Removing them fixed the error.
    Here's an RCS output from the modifications.
    [[email protected]] server {1008}$ rcsdiff formsweb.cfg
    ===================================================================
    RCS file: RCS/formsweb.cfg,v
    retrieving revision 1.10
    diff -r1.10 formsweb.cfg
    208c208
    < oid_formsid="formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635"
    oid_formsid=formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635214,215c214
    < # formsid_group_dn=%GROUP_DN%
    < formsid_group_dn="cn=Logical Application Group, orclApplicationCommonName=formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635, cn=Forms, cn=Products, cn=OracleContext"
    formsid_group_dn=cn=Logical Application Group, orclApplicationCommonName=formsApp_osielle.notarius.com_47F26490FB4311DB8F3BBF0DDB09B635, cn=forms, cn=Products, cn=OracleContextHTH,
    David

  • How to create an error message which doesn't allow submitting form ?

    Hi,
    is there a way to create an error message so that the user can't submit the form until the error is solved?
    On my form I am doing some validation checks when the user hits the button to submit the form via e-mail.
    So if something on the form isn't filleld out correctly the user gets an error message. But after the user has clicked ok on the error message he can still send the form.
    So I am searching for a way that he can only submit the form if he has resolved the problems.
    I tried with
    xfa.host.messageBox("material is not valid!" , "error", 0);
    but this only shows the error messagen and doesn't prevent the next step.
    Can I solve this with using a different type of error message, or user different parameters at the messageBox?
    Thanks for your help.
    Martin

    hi Martin Beyer
    try like this.
    in submit button CLICK event u have to right validation for fields which u want to check.
    example :  here iam validating two varibles.
    var sub=0;
    if(sub==0)
    if(fields2.item(i).rawValue == null && fields.item(i).rawValue != null)
         sub++;
         xfa.host.messageBox("Status of Achievement is Mandatory");
         xfa.host.setFocus(fields2.item(i));
         break;
    if(sub==0)
              var Repe = xfa.host.messageBox("Do you want to Submit now???", "Warning", 2, 2);
              if (Repe == 4)
                   sub=0;
              else
                   sub++;                              
    hope it will help you.

  • Frm-40505:ORACLE error: unable to perform query in oracle forms 10g

    Hi,
    I get error frm-40505:ORACLE error: unable to perform query on oracle form in 10g environment, but the same form works properly in 6i.
    Please let me know what do i need to do to correct this problem.
    Regards,
    Priya

    Hi everyone,
    I have block created on view V_LE_USID_1L (which gives the error frm-40505) . We don't need any updation on this block, so the property 'updateallowed' is set to 'NO'.
    To fix this error I modified 'Keymode' property, set it to 'updatable' from 'automatic'. This change solved the problem with frm-40505 but it leads one more problem.
    The datablock v_le_usid_1l allows user to enter the text (i.e. updated the field), when the data is saved, no message is shown. When the data is refreshed on the screen, the change done previously on the block will not be seen (this is because the block updateallowed is set to NO), how do we stop the fields of the block being editable?
    We don't want to go ahead with this solution as, we might find several similar screens nad its diff to modify each one of them individually. When they work properly in 6i, what it doesn't in 10g? does it require any registry setting?
    Regards,
    Priya

  • Forms Error and How to suppress browswer in forms 9i

    Hi,
    I am getting the following Error during the execution of forms 9i:
    FRM-90928: Positional Parameter after key on command line
    Why this error come?
    It is cumbersome to start OC4J instance everytime when I open and run the forms 9i.
    Is there any way that I can run the form 9i without starting explicitly the OC4J instance.
    ALso After setting the set separateFrame=true in formsweb.cfg file, I still get the browser for displaying the results. How should I avoid it?Please inform about this.
    Thanks
    Behari

    Hi,
    Actually I just create a simple block using the emp table connecting as a scott and after that When I ran the form I got this message :FRM-90928: Positional Parameter after key on command line.
    Regarding forms 9i browser base environment, suppose if we go to deploy the forms 9i based application on client what should we do if client say, we can prefer client/server environment.
    Could you please suggest us about it?
    Also as we know forms 9i is designed for running on middle tier.So it is ok for large environment. But If there is a small environment and middle tier is not the requiremet, the small no of client connects to the datbase where the database server and all the forms application reside so in that case why we deploy forms application in another server.
    Please inform about it.
    Thanks
    Behari

  • SOFFICEINTEGRATION143 Error in ISR when trying opening adobe form layout

    Hi,
    I'm running into SOFFICEINTEGRATION143 error when trying to open any adobe form layout in the ISR secenario definition. Can anyone let me know why I'm getting this error and what the solution is?
    FYI, I'm using SAP gui version 640 Final Release, File Version 6404.4.14.2987, build 781208, Patch level 14
    I do have Adobe LifeCycle Designer 7.1, Reader 8 and MSOffice 2002.
    Thanks in advance.
    Giri.

    Hi, Giri. Did you solve your problem?
    I think I m having similar problem. I installed Sap Gui 7.1, SAP interactive form and Adobe LiveCycle Designer ES.
    I was able to open abode form layout in the transaction SFP. However, after I upgraded my Adobe to 7.0.9. (previous version is 7.x.x). I get the error SOFFICEINTEGRATION143 when try open again.
    I uninstalled Adobe 7.0.9 and installed Adobe 8.1 but it still get the same error.
    Can anyone help?
    Thanks in advance.

  • Getting windows error during running the sql scripts from form 6i

    I made a little form application. The purpose of this application is to generate explain plan for a particular SQL. Some sql scripts run internally in order to populate the result on form’s screen after pressing the form’s button but I am getting windows error during running the sql scripts from form 6i.
    I am using forms 6i with patch 17 with Oracle 10G database on windows 2000 professional on same computer.
    This application runs fine with 8i.
    Please inform me where the problem is and how to overcome it.
    Zafri.

    I am using Text_IO in my form's when button press trigger , inorder to create the
    text file, then in the same when button press triger
    I am calling RMAN via host command in order to run the script which was created by text_IO.
    Below you find some of the code. I will appreciate if you solve the problem.
    when button press trigger:
    Declare
    in_file3 Text_IO.File_Type;
    linebuf3 VARCHAR2(1800);
    output11 varchar2(1000);
    BEGIN
         output11:='C:\EXPLAIN_PLUS\misc\rm_file.bat ';
    Host(output11,no_screen);
    :sql.execution_plan:= 'Working........................';
    synchronize;
    in_file3 := Text_IO.Fopen('c:\explain_plus\misc\create_table.txt', 'w');
    Text_IO.Put_Line(in_file3, linebuf3);
    Text_IO.put_line(in_file3,' ');
    Text_IO.put_line(in_file3,' run { sql "create table PLAN_TABLE (statement_id,...object_name varchar2(30),object_instance numeric,object_type varchar2(30),optimizer varchar2(255),search_columns number,id .....partition_start varchar2(255),partition_stop  varchar2(255),partition_id numeric,other long,distribution varchar2(30)) "; } ');
    Text_IO.put_line(in_file3,' ');
    Text_IO.put_line(in_file3,' ');
    Text_IO.FCLOSE(in_file3)
              Declare
    un VARCHAR2(80);
    pw VARCHAR2(80);
    cn VARCHAR2(80);
    output VARCHAR2(1000);
    output2 VARCHAR2(1000);
    dummy varchar2(40);
    in_file Text_IO.File_Type;
    linebuf VARCHAR2(1800);
    BEGIN
         Get_Connect_Info(un,pw,cn);
         /* for Plan_table Begg. Second INNER BLOCK */
         declare
              dummy2 varchar2(40);
         begin
         select table_name into dummy2 from all_tables where table_name='PLAN_TABLE';
         if dummy2 = 'PLAN_TABLE' then
         output2:='rman target/ nocatalog @C:\EXPLAIN_PLUS\MISC\TRUNC2.txt ' ;
    Host(output2,no_screen);
         end if;
         exception
         when no_data_found     then
    output2:='rman target/ nocatalog @C:\EXPLAIN_PLUS\misc\create_table.txt ';
    Host(output2,no_screen);
         end; --

  • Attaching the WebUtil object group to a form

    Hi. I'm hoping for some help on how to attach the WebUtil object group to a form. I go to the Object Groups node in the object navigator and click the '+' button, but I'm not prompted to attach .olb files. How do I do this? Without it attached I'm receiving the message "The WebUtil object group is not available in this form. WebUtil cannot work." when I run my application. Thanks in advance.

    Okay I opened the .obl and it appears under the Object Libraries Node. Then I double-click on the Object Groups node in my form and it simply creates a new object named OBJECT_GROUP100. I can't seem to drag and drop from the Libraries Node to the Object Groups node in my form. It just shows a circle with a line through it indicating that I can't drag it. Any suggestions? (Sorry, I've not done this before).

  • FRM-92101 error when changing the passwd when running Forms 10g application

    Hi Friends,
    Issue is with: Getting FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    Steps i followed.
    1. Start th OC4J instance of the oracle 10g.
    2. Login with one user/passward and opens Forms 10g application
    3. By Using One Form, changed the passward of the current user.
    4. then closed the Form and then try to close the Forms Application.At this stage i got an error message FRM-92101: There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    I verified the log files but i did not get any relevent information
    Please help in this scenario.
    Regards
    Madhava Rayalu

    Could you paste the complete error message?
    Does this works fine when you change the username /passwd for other users ?
    Rajesh Alex

  • ERROR: "You did not complete the entire form.  Please enter your country."

    When I tried to download a song tonight, I got a message that said that my billing info had changed and that I needed to verify it before I could purchase any music. On the "Edit Payment Information" page, I put in all of my info (my address was missing), and hit done. I get the error: "You did not complete the entire form. Please enter your country." Well, the country field is not editable, and but it says "United States," which is the right country. I can't get passed it, so I can't download anything. I'm running the latest version of iTunes... but I haven't purchased anything since.
    The other thing that concerns me is that I didn't change any billing info, so this is a bit strange. Does anyone have any ideas of what's going on? Thanks!!

    Just in case this ever happens to anyone else, here is how to fix the problem (THANKS, ITUNES SUPPORT)!!
    1) Sign out of the iTunes Store by choosing Sign Out from the Store menu in iTunes.
    2) Visit Apple's My Info website:
    http://myinfo.apple.com
    3) Choose your country and preferred language. Then enter your iTunes Store account name and password and click Continue.
    4) Choose Address Book from the menu on the left. On the Edit Address Book page, look at your shipping addresses at the bottom. If you have multiple shipping addresses, remove any out-of-date or duplicate addresses by clicking Delete. Also, make sure the state or province field is filled out correctly for each address. To edit an address, click Edit.
    5) Now choose Phone Numbers from the menu on the left to look at your phone numbers. The area codes should be in the area code fields and the phone numbers should be in the phone number fields. If an area code is missing, or if it is in a phone number field, your account information may not save properly.
    6) Make any other necessary corrections, then click the Save Changes button.
    7) Click Log out in the upper-right corner.
    When you make your next iTunes Store purchase, you will be asked to review your billing information. At that point, you can change your information or simply click Done. After that, you should be able to purchase items.

Maybe you are looking for