Please help me its urgent - restrict the update against a condition field

Dear friends,

I'm new to the oracle forms... I want to limit an update filed against a condition in my form.

I use multi record block. I want to disable some fields in a row for example there are 10 records in the block record I want to disable the three elements of the 2nd file based on a condition. How can I do?

Hello
You can use the built form in SET_ITEM_INSTANCE_PROPERTY procedure and the appropriate property... (UPDATE_ALLOWED = PROPERTY_FALSE).

For example:

  begin  ................    if       then          set_item_instance_property('',,UPDATE_ALLOWED ,PROPERTY_FALSE);         set_item_instance_property('',,UPDATE_ALLOWED ,PROPERTY_FALSE);     else         set_item_instance_property('',,UPDATE_ALLOWED ,PROPERTY_TRUE);         set_item_instance_property('',,UPDATE_ALLOWED ,PROPERTY_TRUE);    end if;  end; 

For more information, take a look at the online help...

Greetings,
SIM

Tags: Oracle Development

Similar Questions

  • Please help I'm looking for the dowload 10.10 update my dads computer and I can not find it! Does anyone know where could it have?

    Please help I'm looking for the dowload 10.10 update my dads computer and I can not find it! Does anyone know where could it have?

    10.10 is no longer available unless you had previously downloaded. In this case, it would be in the purchase of the Mac App Store section. Its not available for direct plus download.

    You can directly update 10.11 El Capitan.

  • When I updated the shock of the clans for my daughter on his iPad, it has its own apple ID. and iCloud, my ID apple came on his id for the update, where it has its own apple ID now. Please can someone tell me why the update came not through its id.

    When I updated the shock of the clans for my daughter on his iPad, it has its own apple ID. and iCloud, my ID apple came on his id for the update, where it has its own apple ID now. Please can someone tell me why the update came not through its ID thanks

    It seems that if the application has been downloaded on his iPad while it is connected to your Apple ID. If so, he'll always want to be updated with your Apple ID.

    You must remove the application from his iPad and then download it again while it is connected to its own code of Apple.

  • Please help me understand how to install updates with the following error updated Message__The following have not been installed: __Security update for Microsoft XP KB 2289162

    Please help me understand how to install updates with the following error Message

    The following updates were not installed:

    Security for Microsoft XP KB 2289162 update

    See the section "How to get help" of http://support.microsoft.com/kb/2289162

    For individuals, please visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy.  If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

    Buying to meet problems installing Microsoft security updates also can visit the following page for assistance: https://consumersecuritysupport.microsoft.com/

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • I have a dell computer, it has axtra D drive for drive & utilities I have mistakanly loaded two times I remove and reinstall please help / ps its low memory, see the

    I have a dell computer, it has axtra D drive for drive & utilities I have mistakanly loaded two times I remove and reinstall please help / ps its low memory, see the

    Hello


    (1) what exactly are you trying to delete?
    (2) what exactly you are trying to re - install?
    (3) exactly where do you get this memory low message?
     
    The reader might be for backup and could have copied data on the same, thanks to which it shows a low space.

    You can contact Dell technical support for assistance by following this link:
    http://support.Dell.com/
    Hope this information is useful.
  • Hi microsoft... Please help im using firefox, how the task i hidden bar when I watch YouTube... its always show when I watch any video please help

    Hi microsoft... Please help im using firefox, how the task i hidden bar when I watch YouTube... its always show when I watch any video please help

    You can ask the Firefox forum.
    http://forums.mozillazine.org/index.php?c=4

    I hope this helps.

  • I need urgent assistance please.  I'm recharging my Creative Suite 6 to new PC. I have the serial number, but it says it is incorrect.  Please, please help as I am in the middle of a project.

    I need urgent assistance please.  I'm recharging my Creative Suite 6 to new PC. I have the serial number, but it says it is incorrect.  Please, please help as I am in the middle of a project.  Why, why?  It is said that the serial number is not valid - I have tried several times.

    Invalid License http://helpx.adobe.com/creative-suite/kb/error-serial-number-valid-product.html

    -http://helpx.adobe.com/creative-suite/kb/invalid-serial-number-cs4.html

    - and http://forums.adobe.com/thread/1038761

    An idea that MAY work to install or run some programs in Windows 10 old... works for some, not for others

    -http://www.tenforums.com/tutorials/15523-compatibility-mode-settings-apps-change-windows-1 0 - a.html

    - or run as Administrator http://forums.adobe.com/thread/969395 to assign FULL permissions can help... said yet, but sometimes it is necessary for all Adobe programs (this is same as using an administrator account)

  • Please, help me to by merging the same id assining people

    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production
    Please help me
    We_addr_id defines the Address.
    We_pid     Defines the Person.
    
    i am planning to merge the same person together by assigining the same we_pid.
    WITH merge_names AS (SELECT   1000 We_pid,
                                  999898989 We_addr_id,
                                  'DONALD' first_name,
                                  'BOATRIGHT' last_name,
                                  'L' middle_name,
                                  NULL Suffix FROM DUAL
                                  UNION ALL
                                  SELECT   1001 We_pid,
                                  999898989 We_addr_id,
                                  'DONALD' first_name,
                                  'BOATRIGHT' last_name,
                                  'LARRY' middle_name,
                                  NULL Suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   1002 We_pid,
                                  999898989 We_addr_id,
                                  'DONALD' first_name,
                                  'BOATRIGHT' last_name,
                                  NULL middle_name,
                                  NULL Suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   33065 WE_PID,
                                  99000000 We_addr_id,
                                  'LUNA' First_name,
                                  'JOSE' last_name,
                                  NULL middle_name,
                                  NULL suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   8450527 WE_PID_LINK,
                                  99000000 We_addr_id,
                                  'LUNA' First_name,
                                  'JOSE' last_name,
                                  'A' middle_name,
                                  NULL suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   373453429 WE_PID_LINK,
                                  99000000 We_addr_id,
                                  'LUNA' First_name,
                                  'JOSE' last_name,
                                  NULL middle_name,
                                  NULL suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   442303062 WE_PID,
                                  99000000 We_addr_id,
                                  'LUNA' First_name,
                                  'JOSE' last_name,
                                  'S' middle_name,
                                  NULL suffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   30088775765 WE_PID,
                                  990000878 We_addr_id,
                                  'BILL' last_name,
                                  'RAY' first_name,
                                  'M' middle_name,
                                  NULL SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   30088775766 WE_PID,
                                  990000878 We_addr_id,
                                  'RAY' first_name,
                                  'BILL' last_name,
                                  NULL middle_name,
                                  NULL SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   30088775767 WE_PID,
                                  990000878 We_addr_id,
                                  'RAY' first_name,
                                  'BILL' last_name,
                                  'MAX' middle_name,
                                  NULL SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   30088775768 WE_PID,
                                  990000878 We_addr_id,
                                  'RAY' first_name,
                                  'BILL' last_name,
                                  'MICHEL' middle_name,
                                  NULL SUffix
                           FROM   DUAL
                         UNION ALL
                         SELECT   399998776 WE_PID,
                                  9901111 We_addr_id,
                                  'ELLISON' first_name,
                                  'LAWRANCE' last_name,
                                  NULL middle_name,
                                  NULL SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   399998777 WE_PID,
                                  9901111 We_addr_id,
                                  'ELLISON' first_name,
                                  'LAWRANCE' last_name,
                                  'J' middle_name,
                                   'JR' SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   399998778 WE_PID,
                                  9901111 We_addr_id,
                                  'ELLISON' first_name,
                                  'LAWRANCE' last_name,
                                  'JAMES' middle_name,
                                   'SR' SUFFIX
                           FROM   DUAL
                         UNION ALL
                         SELECT   399998779 WE_PID,
                                  9901111 We_addr_id,
                                  'ELLISON' first_name,
                                  'LAWRANCE' last_name,
                                  'JACK' middle_name,
                                  'JR' SUFFIX
                           FROM   DUAL)
    SELECT   *
      FROM   merge_names
      o/p Required
    
    WE_PID    WE_ADDR_ID        FIRST_NAME    LAST_NAME    MIDDLE_NAME    SUFFIX      MERGE_WEPID
    1000            999898989       DONALD    BOATRIGHT    L                          1000
    1001            999898989       DONALD    BOATRIGHT    LARRY                      1000
    1002            999898989       DONALD    BOATRIGHT                               1000
    33065           99000000        LUNA        JOSE                                  33065
    8450527         99000000        LUNA        JOSE       A                          8450527
    373453429       99000000        LUNA        JOSE                                  33065
    442303062       99000000        LUNA        JOSE       S                          442303062
    30088775765     990000878       BILL        RAY        M                          30088775765
    30088775766     990000878       RAY         BILL                                  30088775766
    30088775767     990000878       RAY         BILL       MAX                        30088775767
    30088775768     990000878       RAY         BILL       MICHEL                     30088775768
    399998776       9901111         ELLISON     LAWRANCE                              399998776 
    399998777       9901111         ELLISON     LAWRANCE    J        JR               399998777  
    399998778       9901111         ELLISON     LAWRANCE    JAMES    SR               399998778
    399998779       9901111         ELLISON     LAWRANCE    JACK     JR               399998777
    Thank you

    Hello

    Interesting problem!

    That's what you asked for:

    WITH    got_min_we_pid  AS
    (
         SELECT     merge_names.*
         ,     MIN (we_pid) OVER ( PARTITION BY  first_name
                                     ,                  last_name
                            ,            middle_name
                            ,            suffix
                            )     AS min_we_pid
         FROM    merge_names
    )
    ,     possible_matches       AS
    (
         SELECT     CONNECT_BY_ROOT min_we_pid     AS min_we_pid
         ,     we_pid                    AS leaf_we_pid
         FROM     got_min_we_pid
         WHERE     CONNECT_BY_ISLEAF  = 1
         START WITH   we_pid                = min_we_pid
         CONNECT BY   first_name             = PRIOR first_name
              AND  last_name                = PRIOR last_name
              AND  SUBSTR ( 'x' || middle_name
                       , 1
                       , LENGTH ('x' || PRIOR middle_name)
                       )                   = 'x' || PRIOR middle_name
              AND  'x' || middle_name    > 'x' || PRIOR middle_name
              AND  'x' || suffix        = 'x' || PRIOR suffix
    )
    ,     got_match_cnt     AS
    (
         SELECT DISTINCT
              min_we_pid
         ,     leaf_we_pid
         ,     COUNT (DISTINCT leaf_we_pid) OVER (PARTITION BY  min_we_pid)     AS match_cnt
         FROM     possible_matches
    )
    SELECT       c.*
    ,       NVL (p.leaf_we_pid, c.min_we_pid)     AS merge_wepid
    FROM              GOT_MIN_we_pid  c
    LEFT OUTER JOIN      got_match_cnt   p   ON  p.min_we_pid     = c.min_we_pid
                                      AND p.match_cnt     = 1
    ORDER BY  c.last_name
    ,            c.first_name
    ,       c.middle_name
    ;
    

    Here's how it works:
    First of all, we take care of the exact replica, by finding the we_pid lowest for each group defined by (first_name, last_name, middle_name, suffix). For example, the two lines for Jose Luna (no middle name) are assigned to the min_we_pid = 33065. It is this min_we_pid, not the original we_pid, that is used in all future operations.
    Then we are all names other names that are similar, but more comprehensive, using a CONNECT BY (subquery possible_matches) query. The parents in this query are stored with short middle_names, and children are lines that have first_name, last_name identical and suffix, but middle_names longer. I concatenated the x at the beginning of all middle_names for comparisons, to treat the NULL as being less at, but similar to something else. Is so, that we had a group of lines with identical names (and suffixes) with the exception of the middle_names, then
    NULL middle_name might be a parent got ', "DEB" and "DEBORAH",.
    A ' would be a parent of "DEB" and "DEBORAH", and
    "DEB" would be a parent of 'DEBORAH '.
    By following this chart until we find the lines that have no children, we may associate each short middle_name with the similar longer middle_name, or names. At this point, we will have "BILL RAY" as the ancestor of 'RAY MAX BILL' as well as "RAY MICHEL BILL". Here comes the following subquery, got_match_cnt. If notes how many descendants are associated with each ancesotor, in other words, how much longer names might match a name more runs. If this number is greater than 1, we do not consider one of the matches. That is why match_cnt = 1 is one of the join conditions in the main query, where each row in the theoriginale table is related to its more relative, when it exists, and if it is unique.

  • I forgot my bios password please help when 3 times hit the code 99470161.

    I forgot my bios password please help when 3 times hit the code 99470161.

    Thank you

    Hello

    Enter: 26558167

    Kind regards

    DP - K

  • Please help me. What is the best antivirus? capable of detecting all viruses

    Please help me. What is the best antivirus? capable of detecting all viruses

    I would recommend mse, and here is the important part, XP as a limited user. If you are running as an administrator, a virus can make any chages to your system, including tampering with any AV you have installed, mse, windows firewall up and running as a limited user must provide a lot of protection,

    http://voices.washingtonpost.com/securityfix/2006/05/the_importance_of_the_limited.html

    running as a limited user can be an inconvience initially, but once you learn how to adapt to it, your pc will be more secure and your exoierence of the user shouldn't be touched that.

  • put an item into the basket, made an empty recycle bin, need return the item, please help, I did nothing since the drain, so the machine is in the same condition as when I emptied

    put an item into the basket, made an empty recycle bin, need return the item, please help, I did nothing since the drain, so the machine is in the same condition as when I emptied

    If you have xp, you can do system restore

  • I bought Adobe Master collection CS6 and accidentally damaged installation disc, but I have the serial number and need a software to download to install on my computer please help me where to download the software from?

    I bought Adobe Master collection CS6 and accidentally damaged installation disc, but I have the serial number and need a software to download to install on my computer please help me where to download the software from?

    Available downloadable Setup files:

    Download and installation help links Adobe

    Help download and installation to Prodesigntools links can be found on the most linked pages.  They are essential; especially steps 1, 2 and 3.  If you click on a link that does not have these listed steps, open a second window by using the link to Lightroom 3 to see these "important Instructions".

  • I can't cancel my membership of creative cloud. Phone number and links do not work. PLEASE HELP, I WON'T PAY THE NEXT BILL!

    I can't cancel my membership of creative cloud. Phone number and links do not work. PLEASE HELP, I WON'T PAY THE NEXT BILL!

    This is an open forum, not the Adobe support... You need Adobe support to cancel a subscription

    -Start here https://forums.adobe.com/thread/1703848

    -or by phone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

    -as well as two links that can provide more details, if the links above don't help

    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • Please help I can't open the pdf files of cic.gc.ca

    Please help I can't open the pdf files of cic.gc.ca

    Chrome does not support protected files and forms. you need to open them in Adobe reader.

    Mylenium

  • HP EliteBook 850 G3: HP EliteBook 850 G3: its problems after the update of Windows 10 anniversary

    Hi people!

    After the update of Windows 10 birthday I have problems with my sound card. There are two sound cards listed by Device Manager. The first is "Conexant Audio of ISST" and the second "Intel High Definition Audio". I know not weather it was the case before the update. I just recognized it after the update when I had sound problems.

    In any case, on a sound start works on the other boot it does not work. It seems that Windows chooses the sound card, every time when it starts. Sometimes it takes the bad sound card.

    I tried to uninstall maps its and their resettlement. On the HP site, there is a driver for the Conexant map bot no driver for Intel High Definition Audio card. 10 Windows itself is not find a driver for this sound card. I also tried to reinstall the other drivers, chipset drivers for example. But unfortunately it did not help. I also tried to disable the Intel High Definition Audio, but also without success.

    What else can I try? I don't want to reinstall Windows. There must be a solution without this. Any ideas? Here's a screenshot of my device manager, perhaps it helps:

    If you need more information, please let me know.

    Best regards

    Ty

    I just tried this driver and I still have sound after 6 resets.

    http://h20564.www2.HP.com/hpsc/SWD/public/detail?swItemId=ob_171406_1

Maybe you are looking for

  • Satellite L300 - 1 8 - Microsoft Works Suite has stopped working

    Hiya, first I will say that I am only on my 2nd computer so im not exactly a brainbox on them.I have a Satellite L300 - 1 8 with microsoft vista home premium 32 bit. I only had this laptop for less than 2 months today, when I was with microsoft works

  • Question about upgading Qosmio F20-137 to dual-core

    Hi I want to rank up my Qosmio F20-137 to dual-core. I just need some advice on which one to buy.Thank youChris

  • HP officejetpro8600

    Need to know how or why this all-in-one will not work with our windows8 and what can we do, or what works with windows8? Ive already put the cd and is not able to install windows8...? Help.

  • How many curves can be traced on a tiara 2D graph

    Hello world I want to draw the curves of some(360+) on a 2D graph. I got the results for samples that are measured at different temperatures. I had no problem to trace the curves of all devices for a temperature. But what I noticed when I tried to tr

  • Updated Windows Update!

    Update Windows with an error code 80070663