Using BAltered to check the data in the fields

I have 3 domains that must be met when a user selects an option (command simple mouseUp) I want to verify that the fields already have text in there.

If FIELD 1, given that the new selection should enter in field 2,
If the FIELDS 1 and 2 have given the new selection should go to zone 3,

using the script below I was able to check if ZONE 1 is used and if yes add to the FIELD 2 However, I need the script stops when it has identified that it is now used in field 2 and has no need to put it in the 3rd field as well.

I hope this makes sense

On mouseUp
bAltered = 0

If member("Activity1_mini").text <>then EMPTY bAltered = 1
If member("Activity2_mini").text <>then EMPTY bAltered = 1
If member("Activity3_mini").text <>then EMPTY bAltered = 1

If bAltered = 0 then--add to the first box

Member ("Activity1_mini"). Text = 'go & return '.

end if

If bAltered = 1 then - add to the next available zone

Member ("Activity2_mini"). Text = 'go & return '.

If bAltered = 1 then

Member ("Activity3_mini"). Text = 'go & return '.

end if

end if

end

I know right what you do, but something like this might work:

On mouseUp
bAltered = 0

If member("Activity1_mini").text <> VACUUM then bAltered = 1
If member("Activity2_mini").text <> VACUUM then bAltered = 2
If member("Activity3_mini").text <> VACUUM then bAltered = 3

case bAltered of
0:-Add to the first box
Member ("Activity1_mini"). Text = "go and back".
1:-Add to the next available zone
Member ("Activity2_mini"). Text = "go and back".
2 :--addto the last box
Member ("Activity3_mini"). Text = "go and back".
cases of termination

end

Tags: Director

Similar Questions

  • How can I use SQL to check the Version of Oracle Forms and object of the request?

    Hi all:

    How can I use SQL to check the Version of Oracle Forms and object of the request?





    Concerning
    Terry

    Terry,

    See the following threads/docs for the version of forms.

    How to find the developer version
    Re: How to find the developer version

    Note: 466890.1 - Script to find the Apache, Java, Jinitiator, version of forms and details of the JVM for Oracle E-Business Suite 11i
    Note: 392793.1 - how to get Forms Oracle Oracle Applications 11i Command Line Version
    Note: 468311.1 - Script to find the Apache, Java, JRE, Forms for Oracle E-Business Suite R12 version

    What purpose are you talking?

    Thank you
    Hussein

  • I'm figuring (add) a column on a PDF form and on the calculation tab, it doesn't let me select (check) the fields I want to calucalate.  It won't let me type in the fields of the box either.

    I'm figuring the shape (add) a column (sum) on a pdf file and on the calculation tab, it won't let me select (check) the fields I want to use in the calculation.  It won't let me type fields in the box either.  I'm doing something wrong?

    the mouse click on the name of the field and press the space key

  • Using Script to check the version of Adobe Reader software

    Hello. I am now currently using LiveCycle Designer to create a form that allows users to attach attachments. We found that if a user uses Adobe Reader 7.0 or below, there is a problem on fixing attachments. Accordingly, we would like to add a script to check the version of the Adobe Reader client in a ready state of the form. If a user uses Adobe 7.0 or below, the message box opens and suggests the user to download a more recent version of the Adobe Reader software. I would like to know is possible to do so. Thank you very much

    Hello

    the script might look like:

    If (typeof (app.viewerVersion)! = "undefined")

    If (app.viewerVersion<>

    {

    xfa.host.messageBox ("your Version of Adobe Reader is old...");

    }

    }

    You can use it in the docReady:Event of your form to inform users.

  • Is it possible to use preflight to check the effective PPI image throughout a book?

    As it says in the title.

    I want to assure you that the whole book is 300 + effective ppi.

    Open the preflight Panel (window > output > preflight). Go to the Panel menu and choose define the profile. Duplicate the base profile by pressing the button +. In the section IMAGES and OBJECTS, check the resolution of the Image and set your preferred resolution. Save the preflight profile.

    In your book, make sure the preflight profile is in your source document for style. In the book panel menu, choose book before the flight.

  • How can I delete email addresses used to automatically populate the field?

    I would like to remove the auto-complete email addresses in the field in an email. These aren't my contacts addresses. I tried to erase the form data, but is not delete stored e-mail addresses. (Vista, Windows Mail 6.0.6000)

    Well, the answer of about.com directed me to the solution that helped (a bit easier than editting the registry): http://email.about.com/od/windowsmailtips/qt/et_del_autocomp.htm

    Thank you all!

  • The version of this file is not compatible with the version of Windows you are using. You check the computer system information to see whether you need a x 86 (32 bit) or x 64 (64-bit) version of the program and then contact the software publisher.

    I can't use media or some features in windows 7 64 bit.  I tried to do a system repair and it doesn't seem to help.
    Any ideas anyone?

    Hey I just tried to do what this person said to no avail... then I realized that for some reason any when I opened the photos, he had failed to open in a program that I had uninstalled from my computer. Usually the images open in windows photo gallery, as soon as I changed it back to be opened in this program, it worked.

    hope this works for you too...

  • find duplicates by using multiple criteria in the field help...

    I have a Table and I want to choose the following fields


    Cust_id, number
    BANK number
    CONNECTION_TYPE, varchar2 (the client A between the sexes, B or C)
    STAMP_DATE varchar2 (example 072010) or MMYYYY not a real stamp Date/time


    Basically, if the CUST_ID appears twice, it's ok, as long as the CONNECTION_TYPE is not the same.

    So I need to find duplicates on CUST_ID, with the CONNECTION_TYPE being same.

    It would be nice:
    9122222     326     1      102010
    9122222     326     2      082010
    This would not be permitted:
    9122222     326     1      102010
    9122222     326     1      082010
    That's what I used, but I can't understand how to add the second condition for CONNECTION_TYPE:


    Select cust_id, stamp_date, connect_type
    from Table1
    where cust_id in

    (select cust_id
    from Table1
    Group of cust_id
    view count (cust_id) > 1)

    order of cust_id;

    Thank you.

    Try this

    WITH TABLE1 AS (
        SELECT 9122222 CUST_ID,     326 STORE,
              '1' CONNECTION_TYPE,      '102010' STAMP_DATE from dual union all
        select 9122222,     326     ,'2',      '082010' from dual union all
        SELECT 9122222,     326,     '1',      '082010' FROM DUAL
    )
    SELECT CUST_ID, STORE, CONNECTION_TYPE, STAMP_DATE
    FROM (
        SELECT T1.*,
               COUNT(*) OVER ( PARTITION BY CUST_ID, STORE, CONNECTION_TYPE ) X
        FROM TABLE1 T1
    )
    WHERE X > 1
    ORDER BY cust_id;
    
    CUST_ID                STORE                  CONNECTION_TYPE STAMP_DATE
    ---------------------- ---------------------- --------------- ----------
    9122222                326                    1               102010
    9122222                326                    1               082010     
    
  • How to check if the field is always get incremented by 1

    Hello all-

    This might be a very basic question. I'm just checking if a field is get incremented by 1 only. Here's my table structure:

    CREATE TABLE 'DIM_STAR_DAY '.

    (

    NUMBER of "DAY_DW_ID."

    "DAY."

    NUMBER OF "DAY_NBR_IN_EPOCH."

    NUMBER OF "DAY_NBR_IN_EPOCH_LY."

    NUMBER OF "DAY_IN_WEEK."

    NUMBER OF "DAY_IN_PERIOD."

    NUMBER OF "DAY_IN_QUARTER."

    NUMBER OF "DAY_IN_YEAR."

    CONSTRAINT 'PKDIM_STAR_DAY' KEY PRIMARY ("DAY_DW_ID") WITH THE HELP OF INDEX PCTFREE, INITRANS 10 2 MAXTRANS 255 COMPUTE STATISTICS NOLOGGING STORAGE (INITIAL MINEXTENTS THEN 1048576 65536 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 USER_TABLES FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "MART_INDX" ENABLE

    )

    I want to check the field DAY_DW_ID should it still increased by 1 which corresponds to DAY field which means this condition should never happen, because these are two continuous days and day_dw_id should increase by 1 only:

    • Day_DW_ID DAY
    • 5964-4/26 / 2014
    • 5981 4/27 / 2014

    How can I write a query that gives me all these days where corresponding day_dw_id is higher than its previous day_dw_id 1. Thanks for your help and your answers. Very much appreciated.

    Hello

    This sounds like a job for the analytic LAG function:

    WITH got_prev_day_dw_id AS

    (

    SELECT d. *- or else

    AS trolling (day_dw_id) prev_day_dw_id (ORDER BY date)

    OF dim_star_day d

    )

    SELECT *.

    OF got_prev_day_dw_id

    WHERE day_dw_id <> 1 + prev_day_dw_id - or >

    ;

    This will display the rows where day_dw_id is greater than 1 higher to day_dw_id on the previous line (where 'previous' means 'in the order of day").  It also displays the rows where day_dw_id is less than 1 higher than the previous day_dw_id.  If you want to only include rows where the difference is greater than 1, then use > in the WHERE clause instead of <> .

    I hope that answers your question.

    If not, post a small example data (CREATE TABLE and only relevant columns, INSERT statements) and also publish outcomes from these data.

    Explain, using specific examples, how you get these results from these data.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002

  • It is no longer possible to fill in the field "year" (Dutch: "jaar" with a date "1600" or an earlier version.)

    I used to fill in the field "jaar" with the date of origin of a piece of classical music. Many years before 1600 original parts. I spent many hours to fill the years because I have som 35000 tracks in my library. 2015 they was tgo is no longer possible to fill a date prior to 1600. Even worse: all already filled dates are missing.

    I ask reinstall the opportunity.

    lvhout wrote:

    I used to fill in the field "jaar" with the date of origin of a piece of classical music. Many years before 1600 original parts. I spent many hours to fill the years because I have som 35000 tracks in my library. 2015 they was tgo is no longer possible to fill a date prior to 1600. Even worse: all already filled dates are missing.

    I ask reinstall the opportunity.

    Lvhout,

    You seem to be the first person to notice him, but I just tried with iTunes 12.3.2 and found the same problem.

    You can send comments directly to Apple at this link:

    http://www.Apple.com/feedback/itunesapp.html

  • I can u still use Windows XP in the feature?

    Hello.

    I heard that this is Microsoft stop supporting Windows XP

    My question is, if some body will always use XP in functionality as normaal OS or on a virtual machine or virtual box of problems why Oracle I wil meet?

    Thank you

    Johan

    Hello. I use XP how long I can. Impossible to use ie8 a lot. Microsoft crippled it. So I'll use Firefox. Much faster. And the people who made that browser must be smarter than those of Microsoft. Microsoft has deliberately left the extra things for XP that could keep it around. They must sell 8. I hate Virtual Box for systems I use regularly. I use it to check the other operating systems like Linux, dud ReactOS, Windows 95, etc.. Windows XP is great.

  • Hardware changes not detected using a flash drive, the missing, system restore points tried every fix that MS can offer in Windows 7

    All of a sudden, I have several problems with my computer.  I can't not computer to recognize a flash drive.  Printer works in the same usb port.  I used Device Manager, checked the drivers, made every difficulty that MS has to offer, each difficulty that Dell can offer, but the problem remains.  I don't feel uncomfortable so I don't have to play with the registry.  I uninstalled the drivers and rebooted.  The only changes that I did before this happened was to uninstall and reinstall I-tunes.  The flash drive, I use would be defective?  When I went to the system restore, my restore points have disappeared, that was the point where I uninstalled I-tunes.  I also noticed that when I tried to detect problems with the resolution of the problems of hardware and devices, it says "material changes may not have been detected.  In detail, it also shows "there is no configured windows in a way never install driver - edition".  WHAT?  I know that windows IS configured to automatically install.  (Deep breath)

    Very well.  So I am at a loss.  Any suggestions?  Thank you very much for your time and your attention...

    Hello
     
    Welcome to the Microsoft community. I will certainly help you with the problem you are experiencing. To better understand the issue, I would like to ask you a few questions.
    1. What is the model of your Dell computer?
    2. that all measures tried on your own to fix this?
    3 have you tried to test the flash drive on another computer to see if it is faulty?
     
    This problem arises usually when the flash drive is faulty or the chipset drivers are in conflict with the USB drivers.  I recommend you to consult the following Microsoft article and check.
     
    Updated a hardware driver that is not working properly

    http://Windows.Microsoft.com/en-us/Windows/Update-driver-hardware-ISN

     
     
    Response with all the answers, so that we can more research on the issue. Hope this information was useful.
     
    Thank you
  • Simple way to check the status of EPM web services

    Hi all

    I need a shell script that would check the status of all EMP web services (HSS, APS and EAS for now)...

    --

    I notice that the content of the below URL provides a way to check the status of the workspace:

    http://Server1:28080 / status/work space

    <? XML version = "1.0" encoding = "UTF-8"? >

    <Status >

    "<Initialization State="LOAN" attemptCount="1"/ > " "

    <Code >0 < /Code >

    <Message >workspace runs normally. < /Message >

    <Products >

    <Product >bpm < /product >

    <Product >workshop < /product >

    <Product >APS < /product >

    < /Products >

    < /status >


    Note that server1 run HSS, APS and EAS.

    The below URL is not very informative...

    http://Server1:28080 / status

    Status: Active

    -> Someone knows of other ways / URL that can provide a summary of the status of the managed servers? I intend to use a shell script to analyze the rest of these URLs in order to assess the health of services... I guess that there is a way of using WLST to check the status of the managed server, as these services are controlled via the Console of Administration WebLogic web app.

    Thank you!

    Have a read of the following Oracle support doc - "Troubleshooting Oracle Hyperion Enterprise Performance Management 11.1.2.0 or 11.1.2.1 11.1.2.2 utilities 11.1.2.3 [Video] (Doc ID 1303200.1).

    He has a list of URLS to check the status of web applications.

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • How to check the status of FNDSM

    Hello

    How to check the TM FNDSMListenerStatus, I know that we can use the APPS_sid is the MT listener, y at - it another way to check the status of the FNDSM listener,.

    Thank you

    Hello

    OS, you can use tnsping to check the status of auditor of th.

    Of the database, run the following query and make sure that it returns something:

    SQL> select CONCURRENT_QUEUE_NAME
    from FND_CONCURRENT_QUEUES
    where CONCURRENT_QUEUE_NAME like 'FNDSM%';
    

    You can also check:

    Note: 735148.1 - Troubleshooting problem competitor Manager Start Up associated with Service Manager
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=735148.1

    Kind regards
    Hussein

  • Compare the text of the combobox as a condition in the calculation of the field another.

    I'm doing a condition, if one of the 15 comboboxes has a certain value of selected text list, then a button is displayed.

    I tried to follow this example, which I found here on another question:

    var t = document.getElementById ("fTerminalType");

    selectedText var = t.options [t.selectedIndex] .text;

    the part of my code that uses it is:

    for (i = 1; i < 16; i ++) {}

    var t = this.getField ("ComboBox" + i);

    var s = t.options [t.selectedIndex] .text;

    If (s == 'Specific text') {}

    k.Display = display.visible;

    }

    }

    "Combobox1" so has "A specific text" selected, but the "k" key does not appear visible, and the rest of the code (a calculation) returns empty.

    If I delete the internal code of "for () {}", the rest of the calculation works, if the syntax error is specific to the part of text comparison.

    I tried 'value', ".innerHTML", ". export.value", '.change' and '.changeEx' instead of '.text', nothing has worked.

    I don't know if pdf forms have jQuery, I could try it but that he would need assistance with the code so be it.

    Thank you.

    The value property returns the value of export of the selected item if it has one, otherwise it returns what appears, which is what you call text. SO if someone type something, you can retrieve it with the value property, even though you really better to use valueAsString. Check the console JavaScript (Ctrl + J) to see if errors are reported.

    If you need to get the value of the export value display, you can use the field currentValueIndices property to get the index of the selected item and use it with the field getItemAt method to get the display value. A code example is the Acrobat JavaScript reference.

    I don't notice anything wrong with your script updated, if you add a break after the k.display statement statement, since you do not need to keep a loop once it is set. Unclear if it is initialized to display.hidden somehow, what would make sense.

Maybe you are looking for