Form TEST using TEMPLATE.fmb does not work

Hi Hussein/Helios,

I created an example using the TEMPLATE.fmb test form. I just created a single block of data using 2 columns
on a table. Then I compile it. Then I click Run, but the form just run and any form of window appeared :(
It seems out unconditionally.


Help, please

Thank you very much

Mrs. k

Hi yxes2009,

You try to execute the form directly from the form's constructor? That usually will not work. The way of the development of Oracle Applications (E-Business Suite) forms is:

1 copy and rename the TEMPLATE.fmb and use this copy as a starting point for your form.
2. develop the form with Forms Builder (Windows), compile it, and check that there are no errors (do not run).
3. transfer the form to the server Oracle Apps (linux) and compile the form.
4. move the compiled form (xxx.fmx) to the appropriate location (Nom_liste)
5. connect to Oracle Applications, run the form a from there and test it.

To develop the form (step 2), you must follow the standards as stated in the Guide to the application developer. Also, to correctly compile the form to the server, you must have the source (forms, libraries) directories in the path of forms. And of course, before step 5, you must perform some configuration in the application (form-function, menu creation, responsibility, assign the user).

I hope this helps.

Kind regards.

Tags: Oracle Applications

Similar Questions

  • Serial cable using IrDA protocol does not work correctly. Steve Stephens, * address email is removed from the privacy *.

    The difficulty it Center Microsoft said that my serial cable using IrDA protocol does not work properly.

    Appreciate any suggestions on how to solve this problem.

    Steve Stephens, * address email is removed from the privacy *.

    Hi, Steve Stephens.

    Did you run the fixit available in the link below?
    Hardware devices do not work or are not detected in Windows

    Method 1: Check for any error message in Device Manager

    When a device is not functioning, Device Manager also typically displays an error message with an error code that comes with it. First, search for errors in the Manager of devices to do this, follow the steps below:

    (a) open Device Manager by clicking the Start button, click on the Control Panel, clicking system and Maintenance, and then clicking Device Manager.

    (b) If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (c) in the Device Manager, find your device, and then double-click the device name.

    (d) If an error code has been generated, the code appears in the status area of the device under the general tab


    Method 2:
    download and install all available Windows Update

    Install Windows updates
    http://Windows.Microsoft.com/en-us/Windows-Vista/install-Windows-updates

    Method 3: Download and install SP2

    Learn how to install Windows Vista Service Pack 2 (SP2)
    http://Windows.Microsoft.com/en-us/Windows-Vista/learn-how-to-install-Windows-Vista-Service-Pack-2-SP2

  • After having used dvd audio does not work for anything else until I restart

    After that I watched a dvd that my sound does not work for my internet browser (chrome) does work stil for hp dvd drive, drive windows media and regular windows functions (as when I put the sound level, it gives the "ring" test to show me the volume

    thakns

    Thank you irfan. I tried exploring and there worked aand it occurred to me that it was just because my browser is open to before it didn't work - so I tried closing and reopening chrome and it worked, maybe! the Explorer has worked even without reopening. Thanks again

  • UCM, RIDC sorting using custom metadata does not work

    I'm doing a search using GET_SEARCH_RESULTS and I am trying to sort the results, but unfortunately it does not work. I get this exception:

    Unable to retrieve search results. Error occurred while retrying the search query. Error occurred while processing. Unable to return results.
    oracle.stellent.ridc.protocol.ServiceException: Unable to retrieve search results. Error occurred while retrying the search query. Error occurred while processing. Unable to return results.

    at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:142)

    at oracle.stellent.ridc.protocol.ServiceResponse.getResponseAsBinder(ServiceResponse.java:108)

    to the sample. Connection.main (Connection.Java:661)

    The binder is like:

    binder.putLocal ("IdcService", "GET_SEARCH_RESULTS");

    binder.putLocal ('ResultCount', '10');

    binder.putLocal ("QueryText', 'xDocAudvTitle < contains >"togados"');

    binder.putLocal ('SortField', 'xDocAudvTitle');

    binder.putLocal ("SortOrder", "Asc");


    If I do not use the sortField and SortOrder parameter, the query retrieves the correct results.


    Any idea on this exception?


    Kind regards

    Juan Carlos.

    Thank you all,.

    The problem is that the custom metadata field is of type Memo, both because of its size is not optimizable, so I can't sort by using xDocAudvTitle.

    I'm done with the help of another field to sort.

    Once again, thank you to you two.

    Kind regards

    Juan Carlos.

  • When you use a form variable, the paging bar does not work

    I have the following query:

    $maxRows_RS_Search = 7;
    $pageNum_RS_Search = 0;
    if (isset($_GET['pageNum_RS_Search'])) {
      $pageNum_RS_Search = $_GET['pageNum_RS_Search'];
    }
    $startRow_RS_Search = $pageNum_RS_Search * $maxRows_RS_Search;
    
    
    $colname_RS_Search = "-1";
    if (isset($_POST['Search'])) {
      $colname_RS_Search = $_POST['Search'];
    }
    mysql_select_db($database_dconn, $dconn);
    $query_RS_Search = sprintf("SELECT * FROM products WHERE (Category LIKE %s OR products.Manufacturer LIKE  %s OR products.Model LIKE  %s OR products.Color LIKE  %s) AND Category!= 'Stage Pianos' AND Category!= 'Recent Pianos' AND Category!= 'Recent Keyboards' AND hidden ='no'", GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"));
    RS_Search = mysql_query($query_limit_RS_Search, $dconn) or die(mysql_error());
    $row_RS_Search = mysql_fetch_assoc($RS_Search);
    
    
    if (isset($_GET['totalRows_RS_Search'])) {
      $totalRows_RS_Search = $_GET['totalRows_RS_Search'];
    } else {
      $all_RS_Search = mysql_query($query_RS_Search);
      $totalRows_RS_Search = mysql_num_rows($all_RS_Search);
    }
    $totalPages_RS_Search = ceil($totalRows_RS_Search/$maxRows_RS_Search)-1;
    
    
    $queryString_RS_Search = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_RS_Search") == false &&
            stristr($param, "totalRows_RS_Search") == false) {
          array_push($newParams, $param);
        }
      }
      if (count($newParams) != 0) {
        $queryString_RS_Search = "&" . htmlentities(implode("&", $newParams));
      }
    }
    $queryString_RS_Search = sprintf("&totalRows_RS_Search=%d%s", $totalRows_RS_Search, $queryString_RS_Search);
    uery_RS_Search = sprintf("SELECT * FROM products WHERE (Category LIKE %s OR products.Manufacturer LIKE  %s OR products.Model LIKE  %s OR products.Color LIKE  %s) AND Category!= 'Stage Pianos' AND Category!= 'Recent Pianos' AND Category!= 'Recent Keyboards' AND hidden ='no'", GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"),GetSQLValueString("%" . $colname_RS_Search . "%", "text"));
    
    

    The navigation bar

    </table>
             <?php } while ($row_RS_Search = mysql_fetch_assoc($RS_Search)); ?>
           <table border="0">
             <tr>
               <td><?php if ($pageNum_RS_Search > 0) { // Show if not first page ?>
                   <a href="<?php printf("%s?pageNum_RS_Search=%d%s", $currentPage, 0, $queryString_RS_Search); ?>">First</a>
                   <?php } // Show if not first page ?></td>
               <td><?php if ($pageNum_RS_Search > 0) { // Show if not first page ?>
                   <a href="<?php printf("%s?pageNum_RS_Search=%d%s", $currentPage, max(0, $pageNum_RS_Search - 1), $queryString_RS_Search); ?>">Previous</a>
                   <?php } // Show if not first page ?></td>
               <td><?php if ($pageNum_RS_Search < $totalPages_RS_Search) { // Show if not last page ?>
                   <a href="<?php printf("%s?pageNum_RS_Search=%d%s", $currentPage, min($totalPages_RS_Search, $pageNum_RS_Search + 1), $queryString_RS_Search); ?>">Next</a>
                   <?php } // Show if not last page ?></td>
               <td><?php if ($pageNum_RS_Search < $totalPages_RS_Search) { // Show if not last page ?>
                   <a href="<?php printf("%s?pageNum_RS_Search=%d%s", $currentPage, $totalPages_RS_Search, $queryString_RS_Search); ?>">Last</a>
                   <?php } // Show if not last page ?></td>
             </tr>
           </table>
    
    

    As you can see I'm using $_POST when running the database. It works fine the first time, however when you use the back of the navigation bar for a reason any he does not post research. When I change this back to a ' $_GET ' pagination works fine. Is there a way to get the paging function with the $_POST?

    Any help welcome

    Using GET to interrogate a database is fine as long as you take precautions to disinfect all input to prevent SQL injection, and to ensure that the user will not be able to return lines, so that they are not allowed. Other than that, you can store the value of research in a session variable.

  • Model of resizing by using shift + alt does not work

    Hi all

    I have training in CS6 Adobe® Illustrator® class in a book and in Chapter 6, it is a sectoion on creating templates.

    I use Illustrator CS6 on Windows 7 64 bit.

    The instructions are:

    Select the Selection tool and, by pressing the keys Shift + Alt (Windows) or the keys shift + Option (Mac OS), do drag the high limit point of the rectangle selected downwards until the width and height are about 30 pt.

    However, no matter what I try I can't achieve this goal.

    When I press SHIFT + alt and head upward point limit, the icon changes to an arrow plus a beautiful place but everything what is the entire model. It does not resize as ssays example.

    Anyone have any ideas why?

    Kind regards

    Martin Kozma

    You have the visible bounding box? Display > display the bounding box.

  • iBooks using iCloud synchronization does not work.

    I can't make this work. All of my devices have enabled iCloud iBooks synchronization. Delete a PDF in iBooks on my Mac, he asks what I want to remove it from everywhere, I say yes, but it removes not other devices. I add a PDF to my Mac iBooks library, I expect to add to iBooks on my other devices, but it's not. How to make this work?

    I have this problem too, if I add an .epub to iBooks on my Mac, it does not appear in iBooks in iOS.

  • My Windows Media Player does not open upward when you click it in the list of available programs, nor will any media over the internet using Windows Media does not work

    My Windows Media does not open upward, when you click on Window Media Player in the list of available programs nor play any internet media using the Media window. I have the 110.6002.18311 version. Any help to fix this problem will be appreciated.

    Hello

    You can try to re register the dll files for windows media player and if it helps fix your problem. To do this, please follow the steps below:
    1. Click Start, type cmd in the search box and right-click on cmd.exe, and then click Run as administrator.
    2. At the command prompt, type the following commands and press ENTER after each command:
    regsvr32 vbscript.dll
    regsvr32 jscript.dll
    regsvr32 wmp.dll
  • Satellite L300D-202: restore using recovery disk does not work

    Good afternoon

    Wonder if anyone can shed some light on this error message I get when trying to restore my laptop...

    «Setting permissions V:\HDDRecovery...»
    V:\HDDRecovery the system cannot find the specified file
    Unpack the WinRE...

    L ' ImageX for Windows tool
    Copyright bla...

    Opening the file in error [V:\HDDRecovery\SWImg\06546XSP.svml
    ERROR: ImageX could not apply WinRE V:\HDDRecovery\SWImg\06546XSP.svm index 1 of the HARD drive to W:!

    Press any key to continue... »

    After that, I find myself with the Toshiba Recovery with no action software and a screen BACK Active but nothing happens...

    I'm guessing that lack of HD, received today from Toshiba for this system recovery media

    Laptop is:
    Satellite L300D 202

    NB. If I restart the laptop start date and shows BOOTMGR is missing Ctrl Alt Del to restart...

    Any help appreciated,
    Thanks in advance,

    Rick0684

    > NB. If I restart the laptop start date and shows BOOTMGR is missing Ctrl Alt Del to restart...

    Hmm... for me, it seems that the laptop does not start from the disc (DVD), but it attempts to boot from the HARD drive...

    In any case, have you tried to boot from another disk; for example, Win XP, Linux Live CD?
    To do this, and check if it is possible... If Yes, format the HARD drive and try to boot from the recovery again disc!

    PS: Have you tried a HARD drive recovery option?
    Turn on the unit, press F8 and choose fix my computer
    After that, select Toshiba HDD recovery option if possible.

  • I've updated to v10.0 version, now a specfic program that runs using a bowser does not work. The problem is when the program runs a compliance test the following error message is displayed in the test results: Test; Version of the browser, the Test result

    COMPLIANCE TEST
    Results of Test test
    Firefox browser
    Version 1 browser higher than 2.0 must
    Acrobat Reader Version 9.5.0.270
    Sun Java Plug-ins active true
    Java JAVA version
    JavaScript 1.8
    Flash Flash Player 11
    ERROR Please correct

    This program is probably only read 1 of the number 10 - IOW, it is not able to read a number with 2 digits before the decimal point.

    Contact the developer of this program and let them know that they have some Fixin ' to do.

    See the MP I send to you. See your Inbox at the top of the forum pages.

  • Photo filter in CS4 - using the eyedropper does not work

    Sometimes I correct a dominant book using the photo filter, a technique that I shot of Katrin Eismann "restoration and retouching" color all over.


    You add a layer of Photo filter, make sure the 'brightness' checkbox is checked, push 'density' up to 100% and click the shade of color in the dialog box.


    Select color filter dialog box opens, with digital displays for STL, RGB, CMYK and Lab color In addition, the cursor turns into a dropper.


    You click in a box to the image problem. Change numbers. You reverse the 'a' and 'b' values in LAB color boxes. For example if LAB is called 65,16,24, you replace 16 and 24-16 and -24 (so that in my example the LABORATORY values are now 65-16,-24. You click OK and then adjust the opacity of the layer of color filter to your liking.


    Today I tried this in CS4 for the first time. When I click in a box to the image problem, LAB values becomes 100,0,0 - whatever the picture, no matter where I click.


    This result is not consistent. I did a number of tests on 2 different images, try stuff as brightness release, mowing the Photo layer filter to the underlying layer, use the dialog box filter of Photo that you can access from the bottom of the layers palette, rather than the settings panel, etc. Twice I got reasonable values when I clicked on the picture of the select a color filter dialog box. But try again the same parameters (brightness turned off, for example) into another image, or in the same image, led to the now dreaded 100,0,0


    I have reset my prefs. Same result.


    I got my partner to try it. He got the same result. I am running CS4 on Windows 7 x 64. It is on a Mac with Snow Leopard.


    Is this a known issue?


    Thank you


    Mary

    This is because the layer mask is active and therefore clicking on the image with the eyedropper picked up the pure white of the layer mask. You can also see that, in the title bar, it should say something like (Photo Filter 1, Layer Mask/8). To fix it just click on the adjustment layer thumbnail of the

  • Forms 10g get_item_property ('item', justification) does not work?

    Hi all

    It makes me crazy... I want just the justification (alignment) of the data in an element... the prompt_text_alignment works but not the, seemingly simple, get_item_property ('item', justification); -even if this is in the help text.

    Is this what? misspelled or called something else?

    TIA
    Steve

    It works for me:

    SET_ITEM_PROPERTY('BLOCK.ITEM', ALIGNMENT, ALIGNMENT_RIGHT);
    
  • 'open with' program Pop Up on every Application I try to use it, but does not work

    When I try to install anything, open it with the Application comes up and no matter what I do, it does allow Me to install games, or Windows 7

    When I try to install anything, open it with the Application comes up and no matter what I do, it does allow Me to install games, or Windows 7

    Open this link below, go to the answer given by Phantom 010
    http://forums.techguy.org/Windows-Vista/899995-solved-Open-box-opens-every.html
    t-4-2
  • When I try to use autoblend his does not work

    I did the thing expand, they said to do in the tutorials, and I had the two selected layers and happens every time ive been trying for more than a hour to understand this out.any help is appreciatedUntitled.jpg

    It is likely that there is not enough overlap of the two images. The face you're insertion must have an area of the face much more around him so he can blend in, as do the hidden section of the face must be smaller to allow for more of the image at the top to blend.

  • 2 users on the computer. both use FF 8.0 #1 version of the menu bookmark and it's work. #2 uses another menu does not work. I want both to use the same as #1 for both users use the same method of bookmarking?

    There is nothing more I can add. The issue remains as above.

    Please get back to me with a solution...

    This never happened with older versions of FF...

    Should I go back to FF7?

    See:

Maybe you are looking for

  • Cannot install WinXP on Satellite Pro A200 - No. HDD

    Hello Please can someone help me. I just brought 52 portable Satellite Pro A200. They come with pre-installed Vista, but I want to wipe and install Windows XP. However, I have a big problem - when I put my XP CD in and start it, then click on enter t

  • Read/write port DAQmx questions

    Environment Windows XP SP3 LabView 7.1 NOR-DAQmx 8.7.1 (2) PCI-DIO-96 cards I'm trying to move from the level of registry TDAQ programming DAQmx and give me an "intensive" in mx.  I'm not sure about a few things. I need to put in place 20 channels/ta

  • After that the virus, any link on my desktop now asks me to choose a program to open it.

    Title: Computer Reset of origin? I just bought my computer a few weeks ago. I ended up buying a virus protection. which was a virus itself. I spoke to a support Member and he used the microsoft safety scanner. now, when I click on a link on my deskto

  • Cannot install windows update, error: 8024 to 000 and oxc8000222

    Original title: Impossible to install PowerShell error codes a 8024, 000 and oxc8000222 tried microsoft solve this problem, no luck any suggestions will be useful ty michael caltieri

  • SE CHAPIDemo the work of browser

    Hi all I am trying to use the API Content Manager to have my 3rd party app launch when the user navigates to a URL that points to the type of native document of my application. I had the CHAPIDemo and work at first just try to get the browser to call