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

Similar Messages

  • Error while opening the custom forms-''function not available to this respo

    Error: Function not available to this responsibility , change responsibility or contact ur system administrator
    Hiiiii,
    While accessing the custom forms in release 12i we are facing the popup error and the form is not getting opened up: "Function Not available to this responsibility. Change Responsibilities or Contact your System Administrator"...
    I check the custom top path in $APPL_TOP/admin/adovars.env... its fine there..
    but the $Apache_top is not there...
    can u plz tell me the solution....
    Thanks
    Meenakshi Verma

    user609981 ,
    If ur referring to forms, u need to search in appropriate forum, as this forum is only for OAF queries, and if its realted to OAF page, check the the function of oa page is attached to the specific responsibilty .
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error while opening supplier/customer forms and payment manager templates

    we are having 11.1.0.7 database and 12.1.1 E-business suite with 10.1.2.3 forms
    user is getting
    Error Page
    You have encountered an unexpected error. Please contact the System Administrator for assistance.
    while accessing supplier/customer forms and payment manager templates and this gets resolved after bouncing the application. the current instance is a staging one and this will be replicated to production so please help or suggest any solution or work around
    thanks
    pankaj

    There should be a link on the error page for further details about the error. Can you post the contents of that error link page ?
    Pl also check the Apache logs for any errors - see MOS Doc 419839.1 (How to enable Apache, OC4J and OPMN logging in Oracle Applications R12) for name and location of the Apache log files.
    HTH
    Srini

  • Getting Error While Opening the Oracle Form 6i in 10g

    Hi All ,
    FRM-10102: Cannot attach PL/SQL library XXX. This library attachment will be lost if the module is saved.
    I am getting above error message while opening Oracle 6i Form in 10g.
    I get the following Alert message when I try to attach the library to my form -
    Attached library name
    S:\.........xxx.pll contains non-portable directory specification. Remove path? Yes/No?
    If I select 'No', the Form compiles and runs without any error.
    But if I select 'Yes', I get the following error message:
    FRM-40039: Cannot attach library xxx while opening form.
    All files (fmb, fmx, pll, plx) are on the same path. I detached and then re-attached the library but this didn't work for me?
    Help Appreciated.
    Thanks & Regards,
    Ram.

    use the shiped batch program frmplsqlconv.bat to convert all your forms/librarys from Forms 6i to 10g.
    you can call it in wizard mode from the start menu (e.g. OracleDeveloperSuite <OraHome> => Forms Developer => Forms Migration Assistant (GUI Mode) and follow the instructions step by step
    or you can call it by batch to convert all your forms/librarys. The batch file is found in
    <ORA10g_HOME>BIN\frmplsqlconv.bat
    =>
    frmplsqlconv.bat <formname>

  • Everytime iTunes opens on my Windows 7 pc, I get the error message -42110 while it appears iTunes is trying to download a movie I didn't order.  Any suggestions?

    Everytime iTunes opens on my Windows 7 pc, I get the error message -42110 while it appears iTunes is trying to download a movie I didn't order.  Any suggestions?

    Thank you i been looking for a  answer to this all day but I couldn't find anything on it! Now I know I will find a file with it! thanks!

  • Error in UWL while opening workitem

    Hi All,
    I have implemented a ESS package, have 2 standard workflows Claims and Leave.
    I am getting error in UWL while opening workitem (advance claim) in inbox, error is as below:
    Service cannot be reached
    What has happened?
    URL http://stest.hapl.com:8000/webdynpro/dispatcher/sap.com/essinclaims/ClaimAdvanceApproval_IN call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system DBX with error code 404 and for the reason Not found.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:stest_DBX_00-v:0-s:404-r:Notfound
    HTTP 404 - Not found
    Your SAP Internet Communication Framework Team
    UWL connection is fine as  workflow is getting trigered and i can see work item in manager's inbox. I have created a  dedicated template system for UWL with Web AS as ECC host:port number and Web AS path as /sap/bc/bsp/sap.
    And maintained other connector and ITS properties and all connection test successully passed.
    As we have only one sever so while creating system using load balacing template, was not able to identify message server name which is to maintained in case load balancing system.
    Please help me finding out where can be the issue.
    Thanks,
    Honey
    Thanks
    Honey

    When registering the system in UWL, specify a WebDynpro Launch System. That should resolve the issue.
    WebDynpro Launch System -- create a system of type WAS and mention the WAS host name and WAS path.

  • WEBUTIL-URGENT FRM:40039 Cannot attach library WEBUTIL while opening form x

    Hi,
    I 'm working with 9iAS R2 on Linux.
    I'm testing the webutil by using a my test form.
    Give that in OS Windows 2000 the test form works fine.
    On Linux, I compile the form without problem, but when I run the form on web I have this error :
    FRM-400039 : Cannot attach library webutil while opening form TEST_FORM
    The Java console displaied this :
    JInitiator: Versione 1.3.1.8
    Uso della versione JRE 1.3.1.8 Java HotSpot(TM) Client VM
    Directory principale utente = D:\Documents and Settings\contug
    Configurazione proxy: Configurazione automatica proxy
    JAR cache enabled
    Location: D:\Documents and Settings\contug\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console windo
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://f92ias.inarcassa.it:7777/forms90/webutil/webutil.jar from JAR cache
    Loading http://f92ias.inarcassa.it:7777/forms90/webutil/jacob.jar from JAR cache
    Loading http://f92ias.inarcassa.it:7777/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    connectMode=HTTP, native.
    Versione Applet Forms: 90270
    I don't seem that nothing of unusual.
    Could You say me somethig ??
    Regards
    Giordano

    Hi Duncan,
    How Do I do recompile the pll on Linux?? The environment development doesn't exist on Linux !!
    I open my form in environment development on Win 2000, after I attach the pll without the path and save all.
    After I move all on linux and compile the form useing 'f90genm.sh'. Until this step I don't have problem, the form compiled fine, but
    when I running it, I show the error message FRM-40039 .......
    Do I mistake something ???
    I working on DB ver 7.0.2 and I can't produce the file PLX
    Regards
    Giordano

  • I cannot open my Yahoo Mail but everything else is OK.  When I click Yahoo Mail Icon, I get this error message "Safari Cannot open this page.  Safari can not establish secure connection with Yahoo Mail.

    I cannot open my Yahoo Mail but everything else is OK.  When I click Yahoo Mail Icon, I get this error message "Safari Cannot open this page.  Safari can not establish secure connection with Yahoo Mail.

    It sounds as though a script on the site, or an advertisement, is not working quite right...
    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Ctrl+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    orange Firefox button ''or'' Tools menu > Options > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies using either of these. Save any pending work first.
    While viewing a page on the site:
    * right-click and choose View Page Info > Security > "View Cookies"
    * Alt+t (open the classic Tools menu) > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?

  • Error while opening a standard form in apps11i

    while opening a po form POXPOEPO thru form builder, error is showing that some objects are unable to load.
    how to rectify that can someone help it out

    Have a look at this Re: URGENT: Forms 6i error

  • TS3212 Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any hel

    Still unable to download itunes to my pc. Tried with IE, Mozilla and Google Chrome. Keep getting an error message :"Windows cannot open itunes.exe the file is corrupt contact support."previous itunes files were wipped out by "disk cleaner." Any help??
    Please!
    Thanks!

    If anyone is reading this still looking for what caused the issue and how to fix it here is what I discovered.
    The antivirus program our company uses, Bitdefender Antivirus Plus, was causing some of the PDF files not to open. After troubleshooting the different modules and settings the culprit was..
    Scan SSL in Privacy Control Settings. Turning it OFF solved the problem and all the PDF files that previously would not open now open just fine. This issue has been sent to Bitdefender for them to review. If you use a different antivirus program and are having this issue try locating the Scan SSL setting and see if turning it off solves the problem.

  • A critical program error has occured while opening workbook

    Dear friends,
    A critical error has occured while opening workbook. The issue is that the same workbook is opening in some one machine but not in others.The following Dialog box is poping out when tried to open workbook:
    "A critical program error has occured.The Program will now terminate.Please refer to trace for further information."
    However,i  did the full updation of service pack3 of MS Excel 2003 on my machine and the same version as on that particular machine(on which workbook is opening). The problem is still there.Please provide some solution.
    Thankx a lot in advance!!!
    regards,
    Sandeep Singla

    The machine where the workbook is opening has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.7.1038
    Build : 967944
    Patch Level : 7
    and the machine where the critical program error is coming has a GUI :-
    Release : "710 Final Release"
    File Version : 7100.2.8.1039
    Build : 983952
    Patch Level : 8
    The Excel 2003 are similar in both the machines as the service pack3 has been installed in the machine where workbook was not opening.
    Any help will be appreciated.
    Thanks and Regards,
    Sandeep Singla

  • Getting a bad bind variable error while compiling a custom form in R12

    Hi,
    I am getting a bad bind variable error while compiling a custom form.
    I tried setting the forms_path variable and I am still getting the error. Can anyone please suggest what can be done?
    DECLARE
    BEGIN
    IF :parameter.p_line_ship_to = 'T'
    THEN
    IF :SYSTEM.cursor_item = 'LINE.SHIP_TO'
    THEN
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    oe_lines.ship_to ('WHEN-VALIDATE-ITEM');
    :parameter.lov_num_param1 := :line.ship_to_customer_id;
    END IF;
    :parameter.p_line_ship_to := 'F';
    END IF;
    END;
    I am getting this error:
    Bad bind variable 'parameter.p_line_ship_to'

    The Parameter is not defined in the form.. But, this form is already been compiled and deployed.. I have to make some changes to the form and tried to compile it, when i am getting this error. Is it possible that the parameter would be defined in some other form or can this error be due to some other reasons?
    Thanks in Advance.

  • I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file

    I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file me be open in another application."Please help I really need to get this file open.

    Since you've shown us the folder contents it's a good bet it isn't in use (no lock file). And it doesn't look like the file is mis-named as there doesn't seem to be anything else there that would be the .indd file (but just in case, open it in TextEdit and paste the first few lines here so we can see what the file header says), so the most likely case is the file is damaged. Is that on a removable device of some sort?
    You can try the tool at Repair corrupt InDesign Adobe files on Mac OS X  or send me a link to the file by private message and I'll try the recovery tool I have for Windows.

  • I am facing the problem on downloading apps from Mac App Store, when I try to install the application from App store, I am getting an error message "Status_Code_Error" while click on "Login"

    I am facing the problem on downloading apps from Mac App Store, when I try to install the application from App store, I am getting an error message "Status_Code_Error" while click on "Login"

    Same problem here in Brazil.
    It seems to be a problem with logging in App Store in the Mac (Yosemite 10.10.2).
    When I tried the very same userid and password I was able to login in to use my iCloud account from the same computer and also from my iPhone.

  • "Access Denied" pop up error while opening adobe online form in IE8.

    "Access Denied" pop up error while opening adobe online form in IE8. I use crosslink to connect to client network and then open IE with App Tunnel. Tried to re-install Acrobat reader multiple times but issue still persist. Even tried to change the PDF properties (Edit-> Preference- General/Internet/Security Enhanced)

    Hello Adobe technical Team,
    I am struggling to fix the issue. Tried a lot of combinations to manipulate PDF preference, browser setting but failed to fix the issue. Can someone please look into the details and advise? Thanks in advance for any help.input.

Maybe you are looking for