How can you do this near complex form-> operation in the form of opening

We do default setting for a management of hotel services. One of the defects involved a law not calculated in a specific scenario. The scenario is as follows:

One-> indicates a call_form

Select a booking at the reservation.fmb-> resv_options.fmb-> Blling.fmb-> Billing_options.fmb-> Reservation.fmb

Thus, the user is in the booking form. It then calls this form again (from the billing_options. Here he made a change number of nights of the reservation and saves it.

Now, it closes the form and is now in the billing_options.fmb. He closed it and goes back to the Billing.fmb.

Now, his Bill should be calculated and posted in this form. But it's not.

So now, we're going to open and close the billing.fmb he earn resv_optins.fmb,.

the Bill is calculated and displayed.  So the problem is a is not refreshing.

Invoicing is performed and records displayed by a program called startup_procs unit, which is called in the

A billing.fmb TIMES-NEWS-FORM-INSTANCE trigger.

I did call this exact procedure of relaxation WHEN-WINDOW-ENABLED.

that is the only trigger activated when you close the billing_options.fmb and return to the

Billing.FMB.

Problem is that the Bill is miscalculated and list of documents reserve hurt another and not the selected resv.

The starup_procs is a very complex process that has about 500 lines of code. If I didn't know

exactly how the Bill is calculated and displayed.

My question is: is it possible, in triggering WHEN-WINDOW-ACTIVATED the Billing.fmb

to close the form and call again? Thus, when it is called again, the Bill will be calculated

and displayed.

I tried, but id did not work.

Any help would be grately appreciated.

I did call this exact procedure of relaxation WHEN-WINDOW-ENABLED.

that is the only trigger activated when you close the billing_options.fmb and return to the

Billing.FMB.

It is not true if you use CALL_FORM.

Execution of the program stop exactly on the line where the CALL_FORM is placed and continues exactly on the line after the CALL_FORM when the called form is closed. If your logic should be

CALL_FORM ('billing_options');

startup_procs;

Tags: Oracle Development

Similar Questions

  • computer automatically opens Internet start up how can I stop this? When I would use the computer and open internet when I'm ready to use it

    computer will automatically connect to IE start up how can I stop this.

    When I would use the computer and open IE when I'm ready to use it.

    I have a ZYXEL router.

    This has happened only since I checked a pop box that says connect automatically very stupid, I know, but now can not cancel.

    help please

    Hi Tansy,

    Thanks for posting your query in Microsoft Community.

    I understand how it could be frustrating when things do not work as expected. Please, I beg you, don't worry I'll try my best to resolve the issue.

    I understand that you want to disable the open Internet Explorer at startup option.

    Method 1
    Step 1: I suggest to start the computer in safe mode with network and check if the problem persists.

    Startup options (including safe mode)
    http://Windows.Microsoft.com/en-us/Windows7/advanced-startup-options-including-safe-mode

    Step 2: If the problem is solved in SafeMode with networking, then I suggest to perform clean boot and remove the program that is causing the problem.

    How to perform a clean boot for a problem in Windows Vista, Windows 7 or Windows 8
    http://support.Microsoft.com/kb/929135
    Note: Follow step 3 of section of boot KB929135 to reset the computer in normal mode.

    Method 2
    I suggest you run virus scan online by using the Microsoft safety scanner.

    Microsoft safety scanner
    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: when you do an antivirus online, you will lose data that are affected by the virus. Microsoft is not responsible for the loss of this data.

    See also: Stop a program from running automatically when Windows starts
    http://Windows.Microsoft.com/en-in/Windows7/stop-a-program-from-running-automatically-when-Windows-starts

    Thanks for posting the results and let us know if you need help to solve the problem and we will be happy to help you

  • I recently downloaded my favorite CD music in my I tunes library, how can you transfer this music on a USB Flash drive so that I can play the music through my stereo system H D - Bike. I'm 10 Windows on my PC

    I recently downloaded my favorite CD music in my I tunes library, how can you transfer this music on a USB Flash drive so that I can play the music through my H D - bike

    stereo system.

    I'm 10 Windows on my PC

    Select the songs in iTunes, let them slip into a file Explorer window showing the flash drive, drop.

    TT2

  • Due to a corrupted windows profile, I had to reinstall ACROBAT PRO XI.  After re - install, I kep "error 16"!  How can you fix this?

    Due to a corrupted windows profile, I had to reinstall ACROBAT PRO XI.  After re - install, I kep "error 16"!  How can you fix this?

    Hello

    Please try the link below

    In Adobe Creative Suite or Adobe Creative Cloud configuration error

    For more details, please visit https://forums.adobe.com/thread/1177032

    You can also consult Re: persistent Configuration 16 error

    Let us know if this helps!

  • How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    How can I make a cell formula will apply for the entire column? For example D2 appears B2 - C2. How can I copy this formula for each cell in the column?

    If you want the formula is the same (B2 - C2) in the cell of each column you must change it as ($B$ - 2$ C$ 2). Then copy it, select the whole column and paste.

  • How can you save pictures to a text message on the sd card?

    How can you save pictures to a text message on the sd card?

    tap and hold the picture and you get a pop-up menu to save the image.

  • How can you add item (object) complex "nested table"?

    Hello I did some reading on * "Associative" * and * "Nested Table" * and I would like to enumerate the collection using the later version (http://www.devshed.com/c/a/Oracle/Database-Interaction-with-PLSQL-Nested-Tables/2/)
    -know list "Nested Table"

    However, encountered problem try to * 'EXTEND' * my nested table (add items to the complex type or OBJECT I defined, namely 'TmpHierarchyMapObjType' below) - detail as follows:

    -NOTE 1: Here's how to create the type object (be well if I just say "CREATE or REPLACE TYPE TmpHierarchyMapObjType AS OBJECT (_TMP_HIERACHICAL. ROWTYPE_)"instead of having to duplicate the column definition.
    CREATE OR REPLACE TYPE TmpHierarchyMapObjType AS OBJECT
    (
    ID numeric (19.0),.
    ParentId numeric (19.0),.
    ChildId numeric (19.0),.
    ...
    TmpUID varchar2 (32),
    ReferencedId numeric (19.0),.
    ...
    );

    -NOTE 2: I can't put 'TmpHierarchyMapObjType' inside the package, but it's not crucial, I guess.
    Types of CREATE or REPLACE PACKAGE
    AS
    TYPE cursorType IS REF CURSOR;
    TYPE TmpHiearchyMapTableType IS TABLE OF THE TmpHierarchyMapObjType; / * Use 'Nested Table' instead of an associative array * /.
    / * TYPE TmpHiearchyMapTableType IS TABLE OF THE TMP_HIERARCHYMAP % ROWTYPE INDEX DIRECTORY. */
    END;

    -NOTE 3: Here is my FUNCTION TABLE that now returns a "Nested Table" as assumed to 'Associative' (with a syntax different enumeration)
    FUNCTION to CREATE or REPLACE spGetParentsTable
    (
    Number to the ObjectId,
    ObjectClassifier varchar2
    )
    RETURN types . TmpHiearchyMapTableType -now a 'Nested Table', not 'voluntary '.
    IS
    Types of TmpHierarchyMap. TmpHiearchyMapTableType;
    ThisTempId varchar2 (32);
    CURSOR spGetParents_cursor IS
    SELECT
    ReferencedId Id,
    ParentId,
    ChildId,
    ...
    OF TMP_HIERARCHYMAP
    WHERE TmpUID = ThisTempId;
    BEGIN
    SELECT sys_guid() IN the double ThisTempId;

    spRecursiveGetParents (ObjectId, ObjectClassifier, ThisTempId);

    -(Commentary) TmpHierarchyMapMAX: = 0;
    FOR oMap in spGetParents_cursor LOOP
    -(Commented out) TmpHierarchyMapMAX: = TmpHierarchyMapMAX + 1;

    -QUESTION: FAILED here! How can I add/elements of complex types?
    TmpHierarchyMap.EXTEND (cast (oMap as TmpHierarchyMapObjType));

    /*
    NOTE: (In the comment) use is not "Associative", now using "nested table" instead.
    TmpHierarchyMap (TmpHierarchyMapMAX). ID: = oMap.Id;
    TmpHierarchyMap (TmpHierarchyMapMAX). ParentId: = oMap.ParentId;
    TmpHierarchyMap (TmpHierarchyMapMAX). ChildId: = oMap.ChildId;
    ...
    */
    END LOOP;

    DELETE FROM TMP_HIERARCHYMAP WHERE TmpUID = ThisTempId;

    RETURN TmpHierarchyMap;

    END spGetParentsTable;

    -Finally, I would like to enumerate the nested table.
    DECLARE
    types of oMappingTable. TmpHiearchyMapTableType;
    BEGIN

    oMappingTable: = spGetParentsTable(2,'ThinkFundamentals.Util.Security.SystemUser');

    -NOTE 4: this is my final goal!
    Select * from table (cast (oMappingtable as types.) TmpHiearchyMapTableType));

    dbms_output.put_line ('done!');
    END;


    REF:
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14261/Collections.htm#LNPLS005
    http://www.DevShed.com/c/a/Oracle/associative-arrays-in-Oracle-PLSQL-introduction/2/
    http://www.DevShed.com/c/a/Oracle/database-interaction-with-PLSQL-nested-tables/2/

    Hello

    Try this,

    TmpHierarchyMap.Extend();
    TmpHierarchyMap(TmpHierarchyMap.Count) := TmpHierarchyMapObjType( oMap.Id
                                                                    , oMap.ParentId
                                                                    , ... );
    

    Kind regards

    Christian Balz

  • I need to make a banner 300 inches wide, but it is defaulted to 224 inches.  How can you make your plan of work greater than the maximum allowed?

    I ned to do a banner 12' high x 25 ft wide.  The default width to 224 inches.  How can I extend this to my width?

    As SRiegel suggested above - I would half work to make things easy for you. So, make your plan of work 6' x 12.5 then output the file to 200%. See also the note above from messages on images.

  • How can you determine what version of PHP is on the cold fusion Server

    I'm trying to find out which version of PHP is on my cold fusion server, how can I do this? ColdFusion comes with PHP?

    In the C:\Windows folder, locate the file named php.ini and open it in Notepad.

    I answered myself. Maybe it can help someone else.

  • How can you do this when you open a document Tools pane is not displayed?

    When I opened a document provided me the tools Panel appears on the right side of the screen and I have to reduce it. How can I do for you when you open a document and appear reduced?

    Hi P,

    We have updated Acrobat and Acrobat Reader DC, so that you can now hide the Panel of tools permanently. Please see hide the tools Panel in Acrobat and Acrobat Reader DC at all times.

    Best,

    Sara

  • How can you add more options of basic research for the Service Profile Configuration Directory profile

    In the CUCM, under Service Profile Configuration.  I created a service profile.  In the profile directory section, I can only have 3 Research Bases.  I have 6 domains I have to link them.  They are in a forest.  How can I extend the search to users?

    It is with regard to the Jabber Clients.  I can't find the users in the second research base.

    IN the LDAP authentication, it allows only 2 additional redundant LDAP servers.  Why not add each of them?

    Thank you

    Cathy

    Hi Cathy,.

    Please take a look at the following link: Jabber - config.xml

    I hope this helps.

  • How can you Hotsync a T5 and one E4 with the same Palm desktop program?

    My husband and I had 2 Palm Tungsten, a T5 and an E2. How do you use the same office palm hotsync our Palms? What program would work better for both of them? Thank you!

    All available versions of Palm Desktop can be downloaded here:

    http://KB.Palm.com/SRVS/Nua/launchKB.asp?c=33529

    Please note that what you are looking for is Palm Desktop 4.1.4E.  The E stands for "extended", which is required for the fields in the database of contacts who use the T5 and E2.  If you only download the version 4.1.4 (without the E), you will lose this feature on your desktop.  I think both versions are also the same.

    You will notice that the E2 is not in the list for version 4.1.4E.  It is only because they now recommend the new version (6.2) which was designed for Vista desktop computers.  Unless you have a Vista desktop, you gain nothing by using version 6.2 and you actually lose some features.

    Message relates to: None

  • How can you "Bring object to Front" (but not to the end!) in AS3?

    1. imagine a swf file that shows an image (the image is a music video btw).

    2. now imagine three objects behind which frame (each are video clips).

    3. I use the ' object bring forward the "code snippit of each have three objects come forward when you click it.

    Question: How can I do so that the objects do not go in front of the image?

    P.S. I'm super new to AS3, so feel free to talk to me like I'm a child of five. I'm not offended.

    / * Wear any object clicked forward

    By clicking on any symbol on the stage posing in front of all other cases.

    */

    This code makes all occurrences of symbol on the clickable scene by listening for the CLICK event.

    for (var fl_ChildIndex:int = 0;

    fl_ChildIndex<>

    fl_ChildIndex ++)

    {

    this.getChildAt (fl_ChildIndex) .addEventListener (MouseEvent.CLICK, fl_ClickToBringToFront);

    }

    This is the function that moves the selected object to the front of the display list

    function fl_ClickToBringToFront(event:MouseEvent):void

    {

    this.addChild (event.currentTarget as DisplayObject);

    this.addChild (yourpictureframe);

    }

  • Can you identify this element of Vista installed at the factory... it is hardware or software?

    I have a desktop HP Pavilion Media Center under Windows Vista Home Premium. I am trying to solve a problem with the TV Tuner. I tried everything I can find to solve the problem, but without success. I just need an answer to this...

    On the bottom of my computer, I see a list of hardware and software that has been installed at the factory. I am interested is displayed as "GENUINE WINDOWS VISTA HOME Premium TUNER DIGITAL".

    My question: is - this software or hardware? If it is a software, I can't find to uninstall and reinstall, which is what I would do. If it is hardware, what it look like? I would like to locate and replace it.

    Thank you

    Back to the original question, to which I have the answer. "GENUINE WINDOWS VISTA HOME Premium DIGITAL TUNER" is Microsoft Vista which is loaded on the hard drive. It is NOT hardware and software it's my operating system.

    There is no guessing what is in my PCI-E slot. It's My Nvidia GeForce 9800 GT 1024 MB graphics card. There is no tuner embedded, or "video" as you call it.

    To finalize my contributions to this post, I have fixed my original problem I came here looking for advice for in the first place. It's actually a corrupt Windows operating system file that runs my TV tuner, which caused all my problems. I reinstalled my Vista operating system to its original state, and now the TV tuner works fine.

    Thank you for making at least an attempt to help out me. As you can see, over 6 billion people on the planet, only came forward... I appreciate it.

    Mr. Fix It

  • How can I fix this error: DF024: unable to preserve the original file to... Error 32 the process cannot access the file because it is being used by another process. SEQ (1352).  ?

    I install creative cloud desktop application Illustrator on a machine with windows 7 64 bit running in a domain environment.  The download begins and takes about runs for a bout 10 minutes and then stops with error: DF024: impossible to preserve the original in "C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\Contents\Windows\AdobeLinguistic.dll" file error 32 the process cannot access the file because it is being used by another process. SEQ (1352)

    I am logged on as network administrator, and there is no other apps except a web browser (Chrome) running.  There is no other users logged in to the machine.

    How can I see what another process is using the file necessary so that I can fix it?

    Thank you

    MelissaB34 if you continue to face the difficulties of installation, you can also try to use the CC cleanup tool to help ensure a clean removal of the software.  You can find more information, as well as a link to download the CC cleaning tool, to use the CC cleaning tool to resolve installation problems. CC, CS3 - CS6 - http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html.

Maybe you are looking for