How to compile the9i form on RH EL5 64-bit with 11g Forms Services install

Hi,
I have a form developed with forms 9i. I need to compile it on RH EL5.4 to get the fmx file that I need for Forms Services 11g that I just installed.
I looked on the box but there are no fgen*.sh files. Did I miss some component during the installion or there is another way to get the fmx?
Thank you
Anatoliy

Hello,
One solution for this problem is to use parameter FORMS_MMAP/FORMS60_MMAP as described
in the following metalink document :
Note:151618.1 "Unable to Replace .fmx Files 'On The Fly' During Forms Runtime"
However as described in this document, this parameter should not be used in production
environments.
When there is no or very little maintenance periods in production systems to
perform such copy operations or there is an urgent need to replace a runtime module,
the following method is the recommended method :
Keep two directories including the same fmx/plx/pll/mmx, etc files, and
reference one of them in the FORMSXX_PATH in default.env/registry according to
the patform. Here FORMSXX_PATH stands for
FORMS60_PATH for Forms version 6.0.X
FORMS_PATH for Forms version 10.X /11.X
When you need to replace one/some runtime modules, replace the one
in the directory that is NOT referenced in the FORMSXX_PATH variable, then
change the reference to the updated directory in FORMSXX_PATH. From now on, the
new connections will start using the updated runtimes. When all the users
logout from their current sessions and connect to application once more, the old
directory will be ready for modifications. And at that time you can synchronize
the old directory with the new one and continue this way switching the
directories whenever needed.
Please note that, when there is a need to replace another form or the same form
once more, before having the chance to synchronize the directories, this 2
directory approach can be extended to 3,4 or more directories according to needs.
FORMS_PATH can be set up in default.env file.
Regards,
Alex
If someone's answer is helpful or correct please mark it accordingly.

Similar Messages

  • Compatibility of 11g Express Edition with 11g forms/reports.

    Hi,
    We are using 11g Forms/reports. Now, we want to use Oracle Database Express Edition 11g alongwith it.
    Please guide me version compatibility of 11g forms/reports with 11g Database Express Edition & Weblogic Server.
    Thanks/Regards.
    Bhatt

    Without more detail, it will be difficult to accurately answer your question.  "11g" is part of a product name and not a product version.  Therefore helping you with certification information will be difficult.  I will share information about the very latest versions.  Older versions will have different certifications.  You can look those up on your own in the Certification document(s) included below.
    The following are certified:
    Forms/Reports 11.1.1.7 - WebLogic Server 10.3.6
    Forms/Reports 11.1.2.2 - WebLogic Server 10.3.6
    Regarding the database, refer to the Certification documentation below.  Be sure to reference the correct one for the Forms release you are using.  Generally speaking, the XE databases are not certified, but can be used with limited support.  Again, for exact versions, refer to the documentation.
    Fusion Middleware Certifications
    http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html

  • How can I o create, modify or delete users using OIM 11g web services?

    Hi,
    I have a requirement to create, modify or delete users using OIM 11g web services.
    The end users will be signing on to the online application, a user interface to request ids online. The user interface is the home grown application to request ids.
    I want to integrate this user interface with OIM 11g. I generated the java classes using the out of the box wsdl file as mentioned in the Developer’s Guide for Oracle Identity Manager 11g. But I need to know how to create users using web server client from a given wsdl file? Is there a sample web service client program to create a user in OIM?
    If you know of any document which I can follow or if you can give any details I really appreciate.
    Thanks and Regards,
    Viraf

    Hi Chong,
    Were you able to figure out the approach? I am facing the same issue like this. I have created a web service where the input values are no. of days to extend user's end date and user's employee ID. Output will be true or false. But I am getting error while searching user in OIM DB. I think my web service is not to query OIM DB
    Please let me know if you have worked on this senario.
    Thanks,
    Kalpana.

  • How to compile Universal binaries in Mac OS X Lion with static linking

    Hello Experts,
    I have a projects which needs to be ported on Mac. This project uses some third party libraries and link them statically. I am new to Mac world and hence struggling to compile universal binaries with static linking on Mac 10.7.3 system installed with Xcode4.3.2 .
    Any help ?
    Best Regards
    Sudhir

    Uncheck Organize by Coversation:

  • How to compile and deploy an custom plugin access gate with java?

    Hi.
    How can deploy and registrer my custom plugin, for ready to use in the Access System Console in Authentication Managment?
    thanks

    Hi,
    Is it an AccessGate, or an authentication plugin? The procedure for adding custom plugins for use in OAM authentication schemes is described here:
    http://docs.oracle.com/cd/E21764_01/doc.1111/e12491/authnapi.htm#BABCEIIA
    Regards,
    Colin

  • 32 bit compiled Java Program not connecting to 64 bit Oracle 11g

    Hi,
    I am using one java program to connect to Oracle 11g (64 bit version) using Oracle10g 32 bit client libraries using OCI calls. Below is the program. If I compile it using 64 bit Oracle 10g libraries ($ORACLE_HOME/lib and $ORACLE_HOME/rdbms/lib) , it perfectly connects to Oracle11g but when i compile it using $ORACLE_HOME/lib32 and $ORACLE_HOME/rdbms/lib32, it hangs and keeps trying and takes 100% cpu usage. it does nothing. Please suggest what is going wrong in the environment.
    ============================
    import java.sql.*;
    class dbAccess {
    public static void main (String args []) throws Exception
    Class.forName ("oracle.jdbc.OracleDriver");
    Connection conn = DriverManager.getConnection
    ("jdbc:oracle:oci8:@lvfd", "fde", "fde");
    // or oci7 @TNSNames_Entry, userid, password
    try {
    Statement stmt = conn.createStatement();
    try {
    ResultSet rset = stmt.executeQuery("select * from tab");
    try {
    while (rset.next())
    System.out.println (rset.getString(1)); // Print col 1
    } finally {
    try { rset.close(); } catch (Exception ignore) {}
    } finally {
    try { stmt.close(); } catch (Exception ignore) {}
    } finally {
    try { conn.close(); } catch (Exception ignore) {}
    ================================================

    >
    I am compiling like when LD_LIBRARY_PATH set to $ORACLE_HOME/lib32:$ORACLE_HOME/rdbms/lib32.
    javac -cp .:$ORACLE_HOME/jdbc/lib/ojdbc14.jar dbAccess.java
    as my program resides in current directory. I run it like :
    java -cp .:$ORACLE_HOME/jdbc/lib/ojdbc14.jar dbAccess
    Output: it hangs forever.
    I am compiling like when LD_LIBRARY_PATH set to $ORACLE_HOME/lib:$ORACLE_HOME/rdbms/lib
    javac -cp .:$ORACLE_HOME/jdbc/lib/ojdbc14.jar dbAccess.java
    as my program resides in current directory. I run it like :
    java -cp .:$ORACLE_HOME/jdbc/lib/ojdbc14.jar dbAccess
    Output: It gets connected and list all the tables as output.
    >
    The ojdbc14.jar file is for use with Java 1.4 VMs.
    Are you still using Java 1.4? If so, why?
    For Oracle 11g you should be using the latest JDBC jar file (ojdbc6.jar) and the latest version of Java 1.6.
    You are not only using an old JDBC driver and Java version but are also trying to mix 32 bit and 64 bit operations.
    I suggest you start using recommended practices and update your Java and JDBC versions and select EITHER 32 bit or 64 bit operations.
    See the Official JDBC FAQ for the details on the support available for various combinations of Oracle DB, Java and the JDBC drivers:
    http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-faq-090281.html

  • Forms central and dreamweaver CS6 - trouble with contact form

    So I'm a noob. I created a simple one-column layout in DW CS6 and cannot seem to get this Forms Central contact form template to align correctly. I'm sure it is something simple (CSS related). Any help would be appreciated. It is inserted in the beginning of the body tag - here take a look.
    -->
    </style></head>
    <body>
    <script type="text/javascript" src="https://formscentral.acrobat.com/Clients/Current/FormsCentral/htmlClient/scripts/adobe.for m.embed.min.js"></script>
    <script type="text/javascript">;ADOBEFORMS.EmbedForm({formId:"Tdaq4TZp4ArEoczwH3UmuQ"});</script>
    <div class="container">
      <div class="header"><a href="#"><img src="" alt="Insert Logo Here" name="Insert_logo" width="180" height="90" id="Insert_logo" style="background-color: #C6D580; display:block;" /></a>
        <!-- end .header --></div>
      <div class="content">
        <h1>Instructions</h1>
        <p>Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the fixed layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - <a href="http://www.adobe.com/go/adc_css_layouts.http://www.adobe.com/go/adc_css_layouts">http://www.adobe.com/go/adc_css_layouts</a>.</p>
        <h2>Layout</h2>
        <p>Since this is a one-column layout, the .content is not floated. </p>
        <h3>Logo Replacement</h3>
        <p>An image placeholder was used in this layout in the .header where you'll likely want to place  a logo. It is recommended that you remove the placeholder and replace it with your own linked logo. </p>
        <p> Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes. </p>
        <p>To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)</p>
        <!-- end .content --></div>
      <div class="footer">
        <p>Footer</p>
        <!-- end .footer --></div>
      <!-- end .container --></div>
    </body>
    </html>

    Hi,
      Try to insert the embed code inside one of your <div> tags say the div-content tag after your <p>..</p> tags.
    The embed code should work inside <div> ... </div> tags according to the layout defined there.
    Thanks,
    Lucia

  • How does the wifi hotspot work on the iphone 5s with IOS 8 just installed?

    I donwloaded IOS 8 just a few minutes ago. I don't know how to enable the personal hotspot on my phone.

    Hey, I had this same issue (iPhone 5 tho). I used to have the enable hotspot on my main menu but Apple decided to turn it off and bury it before I could use it again.
    Settings > Cellular > Cellular Data Network
    Scroll down to the bottom. There should be a section that says "Personal Hotspot". Make sure that section has information in it (mine was blank). Copy and paste the APN from "Cellular Data" (the top section) into the "Personal Hotspot", then go back. See if that turns on an option that says "set up personal hotspot", then tap it to start customizing names and password settings.
    Hope this helps! What a frustrating thing...

  • HT3406 How do I switch my iPod apps to an iPhone (with no phone service)

    I used an iPod2 for years. Got message that some apps are no longer supported so I upgraded to an iPod4. Nice but no GPS. I have been informed iPhone3GS has GPS so I purchased one this morning. When I connect to iTunes, it won't switch my iTunes account to the iPhone.
    How do I do this?

    The phone is a LG Revere (Basic Phone).  Not sure if there is some SIM card issue that needs to be addressed.  The iPhone 5s was reset so I don't know how to make the iPhone take the old LG phone number?  Will the iPhone think it is for my daughters number if I try to start it up again?

  • How can I find out what phone number is associated with my internet service?

    It is not on a bill.  I can not find information regarding a Verizon account number.  Need to know what or how to find out the phone number associated with this account.

    It will be on your bill.  Everything from VZW has a phone number associated with it. That is how your device dials in and connects with VZW, even through you as a user never needs to.
    If you post your VZW device perhaps we can find the steps for you to look up the VZW number directly on the device through some of the support documentation.

  • How do I contact Tech Support to report an outage with no phone service?

    Again - no phone service near Williamsport, PA.  Cannot contact anyone.  I chatted with the sales person who could not help - she suggested that I drive to a nearby place that has service.  This really is awul!  There shoudl be a way to report this other than using a phone.

        Brownie129, you can definitely reach out to us anytime through social media. I'm sorry for the delay in response but are you currently still having issues with your phone sevice in Williamsport, PA? Could you provide me with exactly what zip code you are located in? I can't wait to hear back from you at your earliest convenience.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • How to compile and run windows built .fmb file in linux

    Hi,
    I have developer suite 10g installed in windows OS.
    i built a .fmb forms binary file in windows. now i want to compile and deploy this .fmb file into .fmx file in linux and run it.
    I have Oracle Application Server Enterprise version along with Forms/Reports services installed on my linux box.
    Can someone guide how to use my AS Form services in linux to complie and run my .fmb file.
    Thanks in advance,
    Philip.

    is there a easier way or is this the only way to
    compile a .fmb file in a linux machine.Yes, there also a way interactive(not in batch), but you have to need use X-session (GUI) variables DISPLAY
    You can compile module after module if you change $i with you form(FMB) userid
    frmcmp_batch.sh userid=scott/tiger@bs817 batch=no module=$i module_type=form
    compile_all=yes window_state=minimize
    Remember you must set FORMS PATH and ORACLE_HOME/bin where frmcmp_batch is
    Then, run file where you insert frmcmp_batch.sh
    How do i invoke forms builder, forms compiler in a
    linux machine where i have installed Application
    Server Enterprise edition?You don't invoke FORM BUILDER
    (assumption is that the "development" machine is a MS Windows platform and the "deployment" machine is a Unix platform)
    FMX, MMX, and PLX files are NOT portable between platforms. Source code (FMB, MMB, PLL) must be recompiled when moving from one platform to another. This includes moving from one Unix platform to another (i.e. Sun Solaris to Linux) or one Windows platform version to another.
    frmcmp_batch.sh is script that run executable (compiler) for Linux OS
    In Forms 10.1.2.0.2 and newer, the executable and script names are. frmcmp , frmcmp_batch..
    Once all of the executables have been generated the path to these files will need to be included in the Forms deployment environment. In most cases this will be the FORMS90_PATH value in the Forms env file, "default.env"
    I hope to have been clear
    Regards

  • How To Compile Valhalla Chat Source Code

    Hey guys, I really need to know how to compile the source code of Valhalla Chat (www.valhallachat.com). If anyone knows how to do this, please post it here or email me at [email protected] I need to make a customized version of Valhalla so thats why i need to know how to compile. Thanks so much!

    It's also bad form to cross post.
    {color:0000ff}http://forum.java.sun.com/thread.jspa?threadID=5277791
    {color}
    Cross posting is rude.
    db

  • How to compile and run java program at command console

    hi there
    can anyone tell me how to compile and run a java program at command console? I have installed JRE 1.3.1, and also have installed JBuilder 5 if it helps.

    try this
    System.out.println("Enter your Name : ");
    BufferedReader console = new BufferedReader( new InputStreamReader( System.in ) );
    String s = console.readLine();
    System.out.println("Hello : "+ s+" !" );

  • How to compile swf with ANT en ASC 2.0?

    He All,
    I used to compile a swf in Flash builder with this antscript below. But mxmlc in not supported anymore. Any idea how to compile the swf with ASC 2.0?
    <target name="compile.apple" depends="clean.apple">
      <echo message="Compiling swf"/>
      <mxmlc file="${app.projectfile}" output="${app.rootfile}" optimize="true" configname="airmobile" debug="false">
      <load-config filename="${app.rootdir}/resources/ant/build.config"/>
      <source-path path-element="${flex.sdkPath}/frameworks"/>
      <source-path path-element="${app.sourcedir}"/>
      <source-path path-element="${app.rootdir}/libs"/>
      <static-link-runtime-shared-libraries/>
      <compiler.library-path dir="${flex.sdkPath}/frameworks" append="true">
      <include name="libs/*" />
      </compiler.library-path>
      <arg line="-swf-version=17" />
      <arg line="-define=CONFIG::debug,false" />
      <arg line="-define=CONFIG::device,true" />
      <arg line="-define=CONFIG::local.false" />
      <compiler.library-path dir="${app.rootdir}" append="true">
      <include name="libs/*" />
      </compiler.library-path>
      </mxmlc>
      </target>

    He Peter,
    Thanks for your reply. I've made some steps, but still no perfect solution. I've managed to compile a swf with ant using only the AIR SDK.
    But, check these results
    - Compiled using Flash Builder release : 455 kb
    - Compiled with ant using mxmlc : 104 kb
    - Compiled with ant using compc : 139 kb
    Can you provide us an example, how to compile a swf using ant. For example, with an AIR mobile project.
    Thanks Peter.
    Tim.

Maybe you are looking for