Template.fmb  error  with  Forms 9i

Hi, please could someone explain how the following error can be solved.
I have been given a Form as an .FMB file which I need to modify slightly and then compile to an .FMX file. However when I load the .FMB file into Forms Builder 9i an error dialog appears containing the message:
FRM-18108: Failed to load the following objects.
Source Module:Template.fmb
Source Object: WHEN-NEW-FORM-INSTANCE
Source Module:Template.fmb
Source Object: WHEN-WINDOW-CLOSED
etc, etc, etc.
This is followed by a second error dialog stating:
FRM-10102: Cannot attach PL/SQL library Form. This library attachment will be lost if the module is saved.
FRM-10102: Cannot attach PL/SQL library Company. This library attachment will be lost if the module is saved.
Can someone please explain this? I can find no trace of a file called 'Template.fmb' anywhere on my machine!
Many thanks for your help. I will be very grateful for any clues!
Terry.

Thanks for your reply Professor Yaffle. Originally I assumed that 'Template.fmb' (plus other library files) must be something specifically developed by the people who gave me the .FMB source file, however I then did a search with Google and came across several references to a file called 'Template.fmb' (usually in the context of an older version of Forms, 6), which suggested that this file may be a generic Oracle file which ships with Forms (or an old version of Forms).
Unfortunately none of the hits that I obtained with Google were particularly useful in telling me what this file is or where I can get a copy (if it is a generic publicly available file). There were several comments along the lines of, "download files from the $AU_TOP/resources directory to your local disk", but what is $AU_TOP?
I am now beginning to think that perhaps 'Template.fmb' really is something that was developed by the people who gave me the .FMB source file, as you suggest.
By the way Professor Yaffle, I see that you are in Bath, UK which, by coincidence, is only about 14 miles north of where I am (Frome)! Small world, as they say.
Terry.

Similar Messages

  • How to use template.fmb file within form builder

    Hi
    I have created forms without using template.fmb file
    and deploy them on EBS then they working fine
    But when I try to use template.fmb file then it gives an error
    following are the steps :
    1:open template.fmb file with form builder
    2:rename that file with XXXX.fmb
    compile that file and deploy XXXX.fmb file in AU_TOP
    after that
    in putty i m trying to create XXXX.fmx file in same TOP but it gives an error
    Forms 10.1 (Form Compiler) Version 10.1.2.3.0 (Production)
    Forms 10.1 (Form Compiler): Release - Production
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle Procedure Builder V10.1.2.3.0 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.0 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE 10.1.0.5.0 Production
    Compiling package specification APP_CUSTOM...
    No compilation errors.
    Compiling package specification APP_CUSTOM...
    No compilation errors.
    Compiling package body APP_CUSTOM...
    Compilation error on package body APP_CUSTOM:
    PL/SQL ERROR 302 at line 22, column 19
    component 'DISABLED' must be declared
    PL/SQL ERROR 0 at line 22, column 5
    Statement ignored
    PL/SQL ERROR 201 at line 40, column 5
    identifier 'APP_WINDOW.CLOSE_FIRST_WINDOW' must be declared
    PL/SQL ERROR 0 at line 40, column 5
    Statement ignored
    Compilation errors have occurred.
    Form not createdfollowing is command
    $ frmcmp_batch module=$AU_TOP/forms/US/XXXX.fmb userid=APPS/apps output_file=$AU_TOP/forms/US/XXXX.fmx module_type=form batch=NO compile_all=special

    for you question - EBS General Discussion General EBS Discussion
    Compiling Forms In R12
    and search on forum

  • Invalid number error with Form on table page

    We used the "Form on Table..." wizard to create a simple page to update the SCOTT.EMP table. When we submit the page we get the ORA-01722: invalid number error. When I view the data in the WWV_FLOW_DATA view in the FLOWS_010500 schema, I can see all the data from our form in long format with the actual values that were submitted. But I can not track down where this error is coming from.

    James,
    What data did you enter in each field? Could it be as simple as you tried to enter character data into the deptno column?
    Sergio

  • Please debug my javascript (error with form.submit())

    help!! help!! i have used form.submit() where form = document.forms[0] but this time it gives me an error, please help, i will give you $10
    <html>
    <head>
    <script>
    <!--
    var sw;//switch
    sw=true;//default true
    var str;//string used if invalid data
    //validates all required form fields
    function validate(form){
    sw=true;//default true
    str="The following errors occurred while processing...\n";
    form = document.forms[0];
    //check name
    if(isWhitespace(form.fullName.value)){
    str += "-You must enter your Full Name\n";
    sw=false;
    }else
    if(!isAlphabetic(form.fullName.value)){
    str += "-Your Full Name must consist of only letters\n";
    sw=false;
    //check company name
    if(isWhitespace(form.compName.value)){
    str += "-You must enter your Company Name\n";
    sw=false;
    //check address
    if(isWhitespace(form.add1.value)){
    str += "-You must enter your Address\n";
    sw=false;
    //check city
    if(isWhitespace(form.city.value)){
    str += "-You must enter your City\n";
    sw=false;
    //check state
    if(isWhitespace(form.state.value)){
    str += "-You must enter your State\n";
    sw=false;
    //check zip
    if(isWhitespace(form.zip.value)){
    str += "-You must enter your Zip Code\n";
    sw=false;
    }else
    if(!isZIPCode(form.zip.value)){
    str += "-Your Zip Code must be digits only\n";
    sw=false;
    //check email
    if(isWhitespace(form.email.value)){
    str += "-You must enter your E-Mail\n";
    sw=false;
    }else
    if(!isEmail(form.email.value)){
    str += "-You must have a valid E-Mail address\n";
    sw=false;
    //check dayPhoneNumber
    if(isWhitespace(form.dayPhone.value)){
    str += "-You must enter your Day Time Phone Number\n";
    sw=false;
    }else
    if(form.dayPhone.value.length < 10 || form.dayPhone.value.length > 14 )
    str += "-You must enter a valid Day Time Phone Number (XXX)XXX-XXXX\n";
    sw=false;
    //check evePhoneNumber
    if(isWhitespace(form.evePhone.value)){
    str += "-You must enter your Evening Phone Number\n";
    sw=false;
    }else
    if(form.evePhone.value.length < 10 || form.evePhone.value.length > 14 )
    str += "-You must enter a valid Evening Phone Number (XXX)XXX-XXXX\n";
    sw=false;
    if(sw)
    form.submit();
    else
    alert(str);
    }//end validate
    // whitespace characters
    var whitespace = " \t\n\r";
    // non-digit characters which are allowed in ZIP Codes
    var ZIPCodeDelimiters = "-";
    // our preferred delimiter for reformatting ZIP Codes
    var ZIPCodeDelimeter = "-";
    // U.S. ZIP codes have 5 or 9 digits.
    // They are formatted as 12345 or 12345-6789.
    var digitsInZIPCode1 = 5;
    var digitsInZIPCode2 = 9;
    var defaultEmptyOK = false;
    // Returns true if string s is empty or
    // whitespace characters only.
    function isWhitespace (s)
    {   var i;
    // Is s empty?
    if (isEmpty(s)) return true;
    // Search through string's characters one by one
    // until we find a non-whitespace character.
    // When we do, return false; if we don't, return true.
    for (i = 0; i < s.length; i++)
    // Check that current character isn't whitespace.
    var c = s.charAt(i);
    if (whitespace.indexOf(c) == -1) return false;
    // All characters are whitespace.
    return true;
    // Check whether string s is empty.
    function isEmpty(s)
    {   return ((s == null) || (s.length == 0))
    // isAlphabetic (STRING s [, BOOLEAN emptyOK])
    // Returns true if string s is English letters
    // (A .. Z, a..z) only.
    // For explanation of optional argument emptyOK,
    // see comments of function isInteger.
    // NOTE: Need i18n version to support European characters.
    // This could be tricky due to different character
    // sets and orderings for various languages and platforms.
    function isAlphabetic (s)
    {   var i;
    if (isEmpty(s))
    if (isAlphabetic.arguments.length == 1) return defaultEmptyOK;
    else return (isAlphabetic.arguments[1] == true);
    // Search through string's characters one by one
    // until we find a non-alphabetic character.
    // When we do, return false; if we don't, return true.
    for (i = 0; i < s.length; i++)
    // Check that current character is letter.
    var c = s.charAt(i);
    if (!isLetter(c))
    return false;
    // All characters are letters.
    return true;
    // Returns true if character c is an English letter
    // (A .. Z, a..z).
    // NOTE: Need i18n version to support European characters.
    // This could be tricky due to different character
    // sets and orderings for various languages and platforms.
    function isLetter (c)
    {   return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) )
    // isZIPCode (STRING s [, BOOLEAN emptyOK])
    // isZIPCode returns true if string s is a valid
    // U.S. ZIP code. Must be 5 or 9 digits only.
    // NOTE: Strip out any delimiters (spaces, hyphens, etc.)
    // from string s before calling this function.
    // For explanation of optional argument emptyOK,
    // see comments of function isInteger.
    function isZIPCode (s)
    {  if (isEmpty(s))
    if (isZIPCode.arguments.length == 1) return defaultEmptyOK;
    else return (isZIPCode.arguments[1] == true);
    return (isInteger(s) &&
    ((s.length == digitsInZIPCode1) ||
    (s.length == digitsInZIPCode2)))
    // isEmail (STRING s [, BOOLEAN emptyOK])
    // Email address must be of form [email protected] -- in other words:
    // * there must be at least one character before the @
    // * there must be at least one character before and after the .
    // * the characters @ and . are both required
    // For explanation of optional argument emptyOK,
    // see comments of function isInteger.
    function isEmail (s)
    {   if (isEmpty(s))
    if (isEmail.arguments.length == 1) return defaultEmptyOK;
    else return (isEmail.arguments[1] == true);
    // is s whitespace?
    if (isWhitespace(s)) return false;
    // there must be >= 1 character before @, so we
    // start looking at character position 1
    // (i.e. second character)
    var i = 1;
    var sLength = s.length;
    // look for @
    while ((i < sLength) && (s.charAt(i) != "@"))
    { i++
    if ((i >= sLength) || (s.charAt(i) != "@")) return false;
    else i += 2;
    // look for .
    while ((i < sLength) && (s.charAt(i) != "."))
    { i++
    // there must be at least one character after the .
    if ((i >= sLength - 1) || (s.charAt(i) != ".")) return false;
    else return true;
    // isInteger (STRING s [, BOOLEAN emptyOK])
    // Returns true if all characters in string s are numbers.
    // Accepts non-signed integers only. Does not accept floating
    // point, exponential notation, etc.
    // We don't use parseInt because that would accept a string
    // with trailing non-numeric characters.
    // By default, returns defaultEmptyOK if s is empty.
    // There is an optional second argument called emptyOK.
    // emptyOK is used to override for a single function call
    // the default behavior which is specified globally by
    // defaultEmptyOK.
    // If emptyOK is false (or any value other than true),
    // the function will return false if s is empty.
    // If emptyOK is true, the function will return true if s is empty.
    // EXAMPLE FUNCTION CALL: RESULT:
    // isInteger ("5") true
    // isInteger ("") defaultEmptyOK
    // isInteger ("-5") false
    // isInteger ("", true) true
    // isInteger ("", false) false
    // isInteger ("5", false) true
    function isInteger (s)
    {   var i;
    if (isEmpty(s))
    if (isInteger.arguments.length == 1) return defaultEmptyOK;
    else return (isInteger.arguments[1] == true);
    // Search through string's characters one by one
    // until we find a non-numeric character.
    // When we do, return false; if we don't, return true.
    for (i = 0; i < s.length; i++)
    // Check that current character is number.
    var c = s.charAt(i);
    if (!isDigit(c)) return false;
    // All characters are numbers.
    return true;
    // Returns true if character c is a digit
    // (0 .. 9).
    function isDigit (c)
    {   return ((c >= "0") && (c <= "9"))
    //-->
    </script>
    <body>
    <form method="post" enctype="text/plain" action="mailto:[email protected]">
    <table border="0" bgcolor="yellow">
    <tr>
    <td width="150">Name*</td>
    <td width="250"><input type="text" size="30" maxlength="60" name="fullName"></td>
    </tr>
    <tr>
    <td width="150">Company Name*</td>
    <td width="250"><input type="text" size="30" maxlength="50" name="compName"></td>
    </tr>
    <tr>
    <td width="150">Address- Line1* </td>
    <td width="250"><input type="text" size="30" maxlength="50" name="add1"></td>
    </tr>
    <tr>
    <td width="150">Address- Line 2</td>
    <td width="250"><input type="text" size="30" maxlength="50" name="add2"></td>
    </tr>
    <tr>
    <td width="150">City*</td>
    <td width="250"><input type="text" size="15" maxlength="30" name="city"></td>
    </tr>
    <tr>
    <td width="150">State*</td>
    <td width="250"><input type="text" size="10" maxlength="25" name="state"></td>
    </tr>
    <tr>
    <td width="150">Zip Code*</td>
    <td width="250"><input type="text" size="5" maxlength="10" name="zip"></td>
    </tr>
    <tr>
    <td width="150">E-mail*</td>
    <td width="250"><input type="text" size="30" maxlength="50" name="email"></td>
    </tr>
    <tr>
    <td width="150">Day Phone*</td>
    <td width="250"><input type="text" size="15" maxlength="25" name="dayPhone"></td>
    </tr>
    <tr>
    <td width="150">Evening Phone*</td>
    <td width="250"><input type="text" size="15" maxlength="25" name="evePhone"></td>
    </tr>
    <tr>
    <td width="150">Fax Number</td>
    <td width="250"><input type="text" size="15" maxlength="25" name="fax"></td>
    </tr>
    </table>
    <br>
    <table>
    <tr><td><input type="button" value="next" size="20" name="submit" onClick="validate(this.form)"></td></tr>
    </table>
    </form>
    </body>
    </html>

    With this changes your program works:
    function validate(){
    if(sw)
    return true;
    else {
    alert(str);
    return false;}
    <form method="post" enctype="text/plain" action="mailto:[email protected]" onSubmit:"return validate()">
    <tr><td><input type="submit" value="next" size="20" name="submit"></td></tr>
    (also, note that you should advice that you need 5 digits in the ZIP field.
    Fill the field with 3 digits to see what I mean).
    �am �am duke duke duke :) dollarssss

  • Unexpected error with form submittals

    We have end users at various locations. I created a form for them to fill out and submit back. Some locations have no problems submitting the form and others get an "unexpected error." It's pretty clear that the locations that are not able to submit the forms are being blocked somehow. We can ask the administrators to let the forms go through but I'm not sure what to ask them to do. Can anyone help me out?

    Hi;
    Can you share the URL of the form with me and the appoximate time of any of the failed submissions?  We'd like to investigate on our end.  Mail to [email protected]
    Are the users entering large blocks of text?  Attachments?
    Thanks,
    Josh

  • Recordset filter error with form

    I have a good working recordset which views my records good.
    When I change this to a recordset with a filter (form value)
    it doesn't work anymore (I did a test in de recordset window with
    the same value)
    In my browser I get: (dreamweaver closed and database isn't
    locked anymore)
    HTTP 500.100 - Internal Server Error - ASP error
    Internet Information Services
    Error Type:
    Provider (0x80004005)
    Unspecified error
    /spxcrm/slsklantselectie.asp, line 16.
    What could this be?

    I found that the problem must be in security and rights.
    I've set up in the folders that IUSR_[username] should
    havefull rights. This solves the problem, but not 100%.
    Now I can run my page 2 times. The 3rd time I get the same
    error.
    Hope somebody has a better idea.

  • Error in form trace

    Hi all,
    with 10 g database, 11i and os is AIX.
    Getting error with form trace something like
    Dump of memory from 0x0FFFFFFFFFFAA6D0 to 0x0FFFFFFFFFFAA6E6
    FFFFFFFFFFAA6D0 FEFFFFFF FFFFFFFF FFFFFFFF FFFFFFFF [................]
    FFFFFFFFFFAA6E0 FFFFFFFF FFFFAB5C [.......\]
    Bind#3
    oacdty=11 mxl=16(16) mxlc=00 mal=00 scl=00 pre=00
    oacflg=10 fl2=0001 frm=01 csi=00 siz=16 off=0
    kxsbbbfp=ffffffffffab080 bln=16 avl=16 flg=09
    value=00090C83.0014.00EB
    WAIT #142: nam='db file sequential read' ela= 11513 file#=481 block#=233521 blocks=1 obj#=4060507 tim=18467017003805
    EXEC #142:c=10000,e=12809,p=1,cr=1,cu=1,mis=1,r=1,dep=2,og=4,tim=18467017003893
    also have taken tkprof but not able to see any error .......
    And the most important thing is, this form is running on PROD but not on TEST and UAT.....
    Please suggest what could be the posssible reason and how I can run this on TEST .....??????
    Thanks in ADV !

    Hi,
    Getting error with form trace something likeWhat is the error? I do not see any error in your entries.
    also have taken tkprof but not able to see any error .......What is the command you have run?
    And the most important thing is, this form is running on PROD but not on TEST and UAT.....What is the issue with this form? Did you try to regenerate the form manually and check then?
    Please suggest what could be the posssible reason and how I can run this on TEST .....??????Run what? If you mean trace, then please refer to (Note: 296559.1 - FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12) and decide what trace option you need to go with.
    Regards,
    Hussein

  • Forms 6i and template.fmb form causes ros error -200

    hi.i am trying to create a custom form...i copied the indicated plls and the template.fmb and the appstand.fmb to my client machine...i set the registry for forms60_path to point to this area...now i try to open the template.fmb form and get ros error: -200...don't get anything else...????what am i missing?

    Try ROS ERROR -200 / FRM-10081 / PDE-PER001 Internal error (depep 8) -  Help appreciated

  • Edit template.fmb to incorporate my custom forms

    Hi guys,
    I have created 2 forms on my win xp workstation using Forms 6i Builder, both of which work fine. Now i want to install them into the
    oracle application on our server (which runs on linux platform). Copied template.fmb, appstand.fmb, the libraries and changed the the
    FORMS60_PATH registry to match the folder with the libraries. I can open/compile the template form without any errors or problems.
    As far as i understood i have to incorporate them in the template.fmb but i wasnt able to do this. Tried to copy each object from my forms
    in the object lists of template.fmb but when i was opening the canvas all elements were piled up in the top left corner of it and were scaled to tiny sizes.
    How exactly do i go from here? Just to remind you i have 2 forms so i have to go through the process twice.
    i have just tried something else. I have copied the objects from my forms to a new blank form and it works. But with template.fmb
    everything is messed up.
    Thanks,
    Iulian
    PS: Sry if this is the wrong branch, i've just been told to post in the E-business Suite.

    So basicly you are saying this :
    1. I can just as well compile my forms on the server as they are and they would work but it wouldnt follow the recommended standard.
    2. What i did is just circling the bullseye.. in other words i didn't use the template as intended. If this is true please tell me how to actually edit the template.fmb to bring in the content that i have already created. I have read other threads about this and none explained this issue.
    A quick step by step would help.
    Right?
    Thanks Kiran!
    So this question remains open for the moment.
    Edit: going home now, will answer tomorrow.
    Edited by: iulianB on Feb 22, 2010 8:01 AM
    Edited by: iulianB on Feb 23, 2010 2:30 AM

  • Professional Oracle Forms 6i/9i Template - FMB

    Hello,
    I know Forms6i in C/S and Web environment.
    What I am looking for is a Professional Oracle Forms 6i/9i Template - FMB
    or a tool for generating a template form with:
    - "professional" (usability tested) Visual Attributes
    with tested:
    colors (for all kind of objects),
    small and large fonts (for 1024 x 768 and higher)
    for c/s and web-deployment
    - personal color settings for forms with user interaction
    I would prefer a form where the user/developer can set the colors of all objects for the template form (with certain colors) himself, which is stored in Database or in a local configuration file.
    - with tested settings for size of objects (height) and fonts in certain resolution
    - with tested generic triggers (error handling, etc)
    Where can i get such a tested template master-form ?
    Is there any professional product ?
    Who can send me his tested template form ?
    to: [email protected]

    Headstart Designer would be a good choice, though it might be an overshot, since it gives you more than a template, it's a whole suite of tools and design methodology. You can get it from your local support, it is given away to you if you buy a certain amount of consulting days.

  • Video or step by step tutorial link for create forms using template.fmb

    Hi,
    Give me link which provides step by step tutorial or video tutorial for the following:
    1. where should i save the template.fmb and library files in my local machine
    2. how to create customize form using template.fmb
    3. how to do test run that form in local machine (i'm asking this because the template form having reference to app libraries)
    3. how to convert .fmb to .fmx
    4. how to register that form in apps
    i understood about how to do the above process through existing threads in this forum, but i getting lot of errors and confusion while i'm implementing. so please tell me steps or give link which provides details.

    What Forms version are you using? While you're at it, what is your database and OS versions also? Can you provide us with an example of the type of errors you are getting?
    (i'm asking this because the template form having reference to app libraries)Developing Forms for Oracle Enterprise Business Suite (EBS) is different from non-EBS applications because of the EBS Framework and standard processing that occurs.
    Your BEST resource for developing EBS Forms is the Oracle Applications Documentation library. Select your EBS version and then find scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    For most of your questions, you'll find the answers in the aforementioned documents.
    1. where should i save the template.fmb and library files in my local machineMy guess is that many of the errors have to do with attached libraries. The APPSTAND.fmb, TEMPLATE.fmb and all of the Apps Libraries (.pll) must be in the FORMS_PATH. Which means you will need to modify the FORMS_PATH registry entry for your Forms version (6i or 10g) and EBS version (R11 or R12).
    3. how to do test run that form in local machine (i'm asking this because the template form having reference to app libraries)You can't - there are too many EBS Framework calls that will generate errors when the form runs outside of the EBS Framework. You have to test your form in a Test/Dev EBS system.
    3. how to convert .fmb to .fmxUse the Forms compiler executable. (frmcmp.exe - on Windows)
    4. how to register that form in appsThis process is too indepth to explain in the Forum - read the Administrator Guides ;-)
    I get the feeling you are trying to learn this on your own rather than attend a class. My advise is to attend some classes. They are well worth the investment! :)
    As to videos, you might want to try searching uTube. I've seen some Forms tutorial videos out there in the past.
    Lastly, your best source of 'Forum' help is the General EBS Discussion forum.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.
    Edited by: CraigB on Oct 14, 2010 9:23 AM

  • Creating Form using TEMPLATE.fmb

    Hi Friends,
    I am practising creating a new customized form for Oracle Apps 11i Linux.
    The first thing I did are the ff:
    1. Install Forms6i in my Windows XP desktop.
    2. Copy the TEMPLATE.fmb from the Oracle Apps 11i at Linux server $AU_TOP/forms/US
    3. Open the TEMPLATE.fmb on windows using form builder.
    But i got these errors :(
    FRM-10102: Cannot attach PL/SQL library APPCORE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library APPDAYPK. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library GLOBE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library FNDSQF. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library JA. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library JE. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library JL. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library GHR. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library PQH_GEN. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library PSAC. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library CUSTOM. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library OPM. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT1. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT2. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT3. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT4. This library attachment will be lost if the module is saved.
    FRM-10102: Cannot attach PL/SQL library VERT5. This library attachment will be lost if the module is saved.What do i do now....
    Can you give me docs on how to create a customized oracle forms?
    Thanks a lot
    ms k

    Hi,
    You may want to post in [E-business suite|http://forums.oracle.com/forums/category.jspa?categoryID=3] forum as this is a standalone forms forum.
    However, for your error, have you tried setting the FORMS60_PATH environment variable (to the folder where you have all the apps related fmbs/mmbs/plls/olbs) before starting the forms builder (Or append to the FORMS60_PATH in your f60desm.sh).
    -Arun

  • How to develop forms using TEMPLATE.fmb

    hi,
    Anyone Should suggest me clear tutorial/links to learn forms development using TEMPLATE.fmb with step-by-step development procedure including forms development, register in apps.
    Thanks in advance.

    Abdetu is right, General EBS Discussion is the more appropriate forum for this question. Having said that, creating a new form based on the TEMPLATE.fmb just ensures your EBS Custom form has all of the basic EBS requirements for a EBS form. Developing for the EBS Framework has many requirements and I strongly recommend you review the Oracle Applications Documentation library. Select your EBS version and then scroll to the Standards section and review the following documents:
    <ul>
    <li>Oracle Applications Developer's Guide
    <li>Oracle Applications User Interface Standards for Forms-Based Products
    <li>Oracle Application Framework Personalization Guide
    </ul>
    If you are looking for general "Forms" tutorials, here are a few good links. Although a few of the following links are for older Forms versions, the concepts are still valid across all Forms versions.
    <ul>
    <li>A Tutorial on Oracle9i Forms and Reports
    <li>Tutorial for Oracle10g Forms / Reports
    <li>iSelfSchooling - Basic Introduction to Forms
    <li>Oracle Forms 10g: Demos, Tips and Techniques
    </ul>
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • BLOCKNAME data block from TEMPLATE.fmb displaying when I close my form

    Hi all,
    I'm developing a custom form in EBS, and when I close my form using the X button, the BLOCKNAME window from TEMPLATE.fmb is displayed. If I close using File -> Close Form, I get the expected behavior.
    Does anyone have any suggestions for how to fix this?

    Hi,
    I've still been unable to make any progress with resolving this issue. Does anyone have any suggestions?

  • How to create Test Form using TEMPLATE.fmb in APPS

    Hi,
    I need to create a Test Form (Extend oracle Forms) and deploy it in custom ASO_TOP.
    When I opened TEMPLATE.fmb(AU_TOP) i received following error.
    FRM-18108 Failed to load the following objects.
    Source Module:APPSTAND
    Source Object:Standard_PC_AND_VA
    Source Module:APPSTAND
    Source Object:Standard_Toolbar
    Source Module:APPSTAND
    Source Object:Standard_Calendar
    How can I resolve this error and proceed forward.
    Thanks,
    Mithun

    It means that the Test form has a reference to those objects and it can't find them. You need to make those files (forms and/or libraries) available to Forms Builder.

Maybe you are looking for

  • HP Color  LaserJet Enterprise M750n

    encoding problems on printer correct print on another printer how to solve the problem? driver version 5.9.0.18326 Spoiler (Highlight to read) may be problems in the firmware? may be problems in the firmware?

  • STO Stock in transit Negative stock

    Hi In Intercompany STO (2 step) In Circumstances like, GR posted by recieving plant before the shipping plant make GI, the stock in transit in MMBE appears as Negative stock under Stock in TransitCC. Can help to understand in detail please. thanks RG

  • No documents selected in MRRL

    Hi, I have a scenario here where a purchase order has been post goods receipt. However our daily batch job that runs the program in t-code MRRL, did not pick up this PO to automatically create the invoice. The indicators for Gr-based inv verif, the a

  • Where are fIle type / MIME preferences?

    I have run into a bit of a problem. I can't force Safari to download a certain type of file instead of trying to view it as text. There is a Flash-site that links to a nice file I want to download. The file is "rare" and possible misunderstood by the

  • Getting Runtime error R6025 when I exit Skype

    I am getting this message every time I close Skype.  It says: "R6025 -pure virtual function call" I am running Skype 7.0 and Windows 8.1.  It does not matter if I have been chatting or doing a video call or have done nothing at all.