Des6/headstart212: saving changes not asked when enter query during insert

Hi,
We are still on the old version for designer 6, but we have a strange problem.
We have several forms, when updating or inserting, and then closing the window, there is the question: do you want to commit the changes?
That's the normal behaviour.
But now, we just found out, that there are also forms, when working in them, and then closing the window or pressing F7, that the question isn't raised, enter-qry mode is started and the end user then has lost his changes.
We tried to track down qmslib50 and qmsevh50 for a form with problem and one without, but except for an key-enterqry which sometimes is generated (with standard code) and sometimes not we haven't been able yet to tackle it.
Is this perhaps a "known" problem of headstart 2.1.2 upgraded for des6., or has anyone an idea where we have to look for it?
The query property is on both forms set to yes.
Thanks...
Jessica

Product Name: n005tx pavilion 15Operating System: Microsoft Windows 10 (64-bit)
is there any method to solve this without turning on legacy boot
"select boot image did not authenticate"
this happened after trying to install ubuntu in legacy boot and then installed Windows 8 in legacy boot..now i want to go for UEFI for better performance
Model -HP Pavilion 15 (n005tx)
factory os windows 8
no way to recover original os

Similar Messages

  • Change background color in enter-query mode

    Hi everyone,
    I am trying to Change background color in enter-query mode in forms10g. I am using this
    Set_Item_property('org.branch_code', BACKGROUND_COLOR, 'Green' );
    Thanks

    This is the code that allows to colorise items in enter_query mode, then de-colorize them after execute_query.
    Assume that you have created a VA_QUERY visual atribute in your module.
    -- Colorise in enter-query mode --
    PROCEDURE Start_query IS
      LC$Block      Varchar2(30) := Name_in('system.trigger_block') ;
      LC$item       varchar2(60);
      LC$itemdeb    varchar2(60);
      LN$len        pls_integer ;
    BEGIN
      lc$itemdeb := get_block_property(LC$BLOCK, FIRST_ITEM) ;
      lc$item := LC$BLOCK || '.' || lc$itemdeb ;
      while lc$itemdeb is not null Loop
        IF GET_ITEM_PROPERTY(LC$Item , ITEM_TYPE) NOT IN ('BUTTON','RADIO GROUP','DISPLAY ITEM') Then
          IF GET_ITEM_PROPERTY(LC$Item , QUERYABLE ) = 'TRUE' Then
            set_item_property(LC$item, CURRENT_RECORD_ATTRIBUTE, 'VA_QUERY');
          End if ;
        End if ;
        lc$itemdeb := get_item_property( lc$item, NEXT_NAVIGATION_ITEM );
        lc$item := LC$BLOCK || '.' || lc$itemdeb ;
      end loop ;
    END;
    -- Unclororize after execute_query --
    PROCEDURE End_query IS
      LC$Block     Varchar2(30) := Name_in('system.trigger_block') ;
      LC$item     varchar2(60);
      LC$itemdeb     varchar2(60);
      LN$len          pls_integer ;
      LN$Multi  pls_integer ;
    BEGIN
      lc$itemdeb := get_block_property(LC$BLOCK, FIRST_ITEM) ;
      lc$item := LC$BLOCK || '.' || lc$itemdeb ;
      LN$Multi := GET_BLOCK_PROPERTY(LC$Block , RECORDS_DISPLAYED ) ;
      while lc$itemdeb is not null Loop
        IF GET_ITEM_PROPERTY(LC$Item , ITEM_TYPE) NOT IN ('BUTTON','RADIO GROUP','DISPLAY ITEM') Then
          IF GET_ITEM_PROPERTY(LC$Item , QUERYABLE ) = 'TRUE' Then
             If LN$Multi > 1 Then
                set_item_property(LC$item, CURRENT_RECORD_ATTRIBUTE, 'VA_CURRENT_RECORD');
             Else
                set_item_property(LC$item, CURRENT_RECORD_ATTRIBUTE, '');
             End if ;
          End if ;
        End if ;
        lc$itemdeb := get_item_property( lc$item, NEXT_NAVIGATION_ITEM );
        lc$item := LC$BLOCK || '.' || lc$itemdeb ;
      end loop ;
    END;Francois

  • TS1702 when attempting to update apps update all I get "cannot connect to iTunes Store" but I have no problem connecting directly to iTunes store and I am not asked to enter password.  any suggestions?  Thanks....

    Hi - while attempting to update apps from the "App Store" the message "Cannot connect to the iTunes Store" but am not asked for a password or user id BUT I have no problem connecting to the iTunes store directly.
    Thoughts?
    Thanks....
    Mike

    See these previous discussions:
    App Store Updates (but only Updates)...: Apple Support Communities
    Apps suddenly don't update: Apple Support Communities

  • I can not use my iTunes it keeps asking me two secrurty question that I was not asked when I set it upa

    I Can't get music from iTunes it keeps asking for a secruity questions I was not asked for when I set up my itunes

    If you log into your account via the 'manage your apple id' button on http://appleid.apple.com and select the Password And Security section of your account are you able to set the questions ? If not then is there a reset link beneath the questions on that screen (the link will only show if you have a rescue email address, which is not the same thing as an alternate email address, on your account) ?
    If you can't set them or reset them yourself then you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : Contact Apple for help with Apple ID account security.
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset, and if you don't already have a rescue email address, you can then add one for potential future use : Manage your Apple ID primary, rescue, alternate, and notification email addresses
    Or if it's available in your country you could change to 2-step verification : Frequently asked questions about two-step verification for Apple ID

  • SWF. not working when entering other state

    Hi
    I have just made a site where theres a main site without animation and a sub site with animation. The problem is that the animation/swf is not starting when i enter the subsite. It starts when theres no main site but when we enter the site from a another main site/sub site the animation the do not start.

    This might be a security issue. If I am understanding what you are say is you go to www.mysite.com then go to mysubsite.mysite.com. When you are accessing the Flash Catalyst produced swf at mysubsite.mysite.com this way it does not work. In the Flash Catalyst file, the linked swf is probably referenced as "http://www.mysite.com/mySWF.swf", but to the Flash Player this is a different address from mysubsite.mysite.com.
    If you add a crossdomain.xml file to your site to include the top level and sub domains, the issue should be resolved. For more information on the crossdomain.xml file: http://kb2.adobe.com/cps/142/tn_14213.html
    Good luck
    Chris

  • Changing visual attribute in Enter Query mode

    Hello, I want to change visual attribute of all items in the first record when the user presses button for Enter_Query. I want that the user sees that the form is in enter query mode and it "waits" for the input of criteria. My code (copied from Help and modified) in trigger WHEN_BUTTON_PRESSED:
    DECLARE
    cur_itm VARCHAR2(80);
    cur_block VARCHAR2(80);
    BEGIN
    ENTER_QUERY;
    cur_block := :System.Cursor_Block;
    cur_itm := Get_Block_Property( cur_block, FIRST_ITEM );
    WHILE ( cur_itm IS NOT NULL ) LOOP
    cur_itm := cur_block||'.'||cur_itm;
    Set_Item_Instance_Property( cur_itm, CURRENT_RECORD, VISUAL_ATTRIBUTE,'yellow');
    cur_itm := Get_Item_Property( cur_itm, NEXTITEM );
    END LOOP;
    END;
    where yellow is the name of my visual attribute.
    The problem is that I need to press the button TWICE to color the record.
    Can anybody help me with this problem?
    Natasa

    (Wrong forum).
    The problem is that enter_query stops executing your procedure until
    another action ist started by the user.
    You must create a short-time timer before issuing enter_query and set
    your colour scheme in the when-timer-expired-trigger.

  • Repeating frame not visible when the query returns no rows

    I've developed a report whose output looks like this:
    Subinventory | Part Code |Part Description |Ordered Qty | Received Qty
    Mentone St | BATT | non serialised item | |
    Mentone St | SONY | spare parts MIN MAX | 30| 0
    In the above report
    subinventory, Part Code, Part description are in one repeating frame and Ordered and received qty are in other repeating frame.
    for a perticular part code there may not be ordered or received quantities. Means the seond query fetches no rows for the perticulat partcode. In that case report is showing null(blank) but I want to print ZERO there.
    If I use NVL in the query it'll effect only when the query fetches some rows.
    I've tried with formula columns. for example in the formula column
    IF :ordered_qty IS NULL THEN
    v_ordered_qty :=0;
    ELSE
    v_ordered_qty := :ordered_qty;
    END IF;
    return(v_ordered_qty);
    I've assigned this formula column as source to the Ordered Qty Filed. Then also its not working.
    Any help in this regards is highly apprecialted
    regards,
    Vij

    may be you can modify your code like below:
    SELECT i.subinventory, i.part_code, i.part_description, i.min_qty, i.max_qty,
           NVL (j.quantity, 0) ordered_qty,
           NVL (j.quantity_delivered, 0) received_qty
      FROM (SELECT DISTINCT c.secondary_inventory subinventory,
                            b.segment1 part_code, b.description part_description,
                            c.min_minmax_quantity min_qty,
                            c.max_minmax_quantity max_qty, b.inventory_item_id,
                            b.organization_id
                       FROM mtl_system_items_b b,
                            mtl_item_sub_inventories_all_v c
                      WHERE b.inventory_item_id = c.inventory_item_id
                        AND b.organization_id = c.organization_id
                        AND UPPER (c.secondary_inventory) =
                               NVL (UPPER (DECODE (:p_sub_inv,
                                                   'ALL', '',
                                                   :p_sub_inv
                                    UPPER (c.secondary_inventory)
                                   )) i,
           (SELECT   mtrl.inventory_item_id, mtrl.organization_id,
                     mtrl.to_subinventory_code,
                     NVL (SUM (mtrl.quantity), 0) quantity,
                     NVL (SUM (mtrl.quantity_delivered), 0) quantity_delivered
                FROM mtl_txn_request_lines mtrl, mtl_system_items_b msi
               WHERE mtrl.inventory_item_id = msi.inventory_item_id
                 AND mtrl.organization_id = msi.organization_id
                 AND mtrl.reference_type_code = 2
                 AND UPPER (mtrl.to_subinventory_code) =
                        NVL (UPPER (DECODE (:p_sub_inv, 'ALL', '', :p_sub_inv)),
                             UPPER (mtrl.to_subinventory_code)
                 AND TRUNC (mtrl.creation_date)
                        BETWEEN NVL (TRUNC (TO_DATE (:p_from_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
                            AND NVL (TRUNC (TO_DATE (:p_to_date,
                                                     'yyyy/mm/dd hh24:mi:ss'
                                     TRUNC (mtrl.creation_date)
            GROUP BY mtrl.inventory_item_id,
                     mtrl.organization_id,
                     mtrl.to_subinventory_code) j
    WHERE i.inventory_item_id = j.inventory_item_id(+)
           AND i.organization_id = j.organization_id(+)

  • Adobe form script changes not reflected when PDF created by ADS.

    Hello Experts,
    We have done some modifications (UI elements java script) in PDF form in the Development system and tested... everything fine and as expected everything working.
    When we move the same changes to Quality system, the expected functionality is not working. For error analysis we followed below things.
    --1. I have checked the PDF form in SFP TCode is newly added script code is available or not.... Is available in Quality system.
    --2. I have run the application In SAP Portal, where we show this adobe form and saved locally generated PDF form by application. Then we imported  same saved PDF form into ALD  and checked... is newly written java script is available or not....strange is not available...... but in ECC under  SFP TCode i am able to see the newly written script code.
    --3. o.k. we feel that some issue with ADS server so avoid that we restarted the server even though same.... the newly written script PDF form is not picked  by ADS server while generating the PDF in the portal application.
    Can some one throw some torch on this issue?
    Regards
    Malli
    Edited by: mallikarjuna pasupulati on Apr 7, 2011 9:03 AM

    Steve,
    Might M. Kazlow's announcement be relevant?
    Announcement: Mac OS X.7 Lion Compatibility and Acrobat X
    Mac OS X.7 is not fully compatible with Acrobat X.
    Please see http://kb2.adobe.com/cps/905/cpsid_90508.html for more details.
    by MichaelKazlow at Jul 20, 2011 1:17 PM
    Be well...

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Time machine does not respond when entered for file recovery

    When I enter time machine, the expected display appears but there is no response when trying to move time back, select a file or exit, even with Cmd Q.
    I can only get back to a useable screen by powering down or using Cmd+Alt+Esc.
    I was able to use TM to restore old files about 6 months ago, but only after restarting system.

    Welcome to Discussions.
    Select your Time Machine drive in the finder and do a Get Info (command-i). The format should be Mac OS Extended (Journaled). If it isn't you will need to reformat the drive. This will erase it so copy any files you need from the drive first. Directions for formatting your Time Machine drive are in this article. People with PPC Macs should substitute Apple Partition Map for GUID when following the directions.
    If Time Machine doesn't automatically ask you to use the drive you can choose it for Time Machine backups by going to System Preferences > Time Machine > Change Disk.

  • External hard drive not appearing when entering time machine.

    Why does my external hard drive back up on time machine ok, but when I enter time machine (and the external device isn't plugged in) i can't see it?
    It appears in time machine fine when the external drive is plugged in, but just not if it's been ejected or
    I want to have the ext drive backed up in case I lose it or it corrupts....and if that happens I won't be able to plug it in to see the drive in TM - does that make sense?
    I am running OSX 10.9.3 on a Mid 2010 Mac Book Pro. The external drive is a samsung and is formatted to Mac OS Extended (journaled). Time Machine is a standard Apple one and has been working fine for a couple of years

    Try holding down the Option Key when selecting the Time Machine menu, then select Brows Other Time Machine Disks. See if you can then browse the backup of that drive. The normal Time Machine display is kind of a “live” restore point thing, if that makes sense.
    I’m not sure if there is anything in Pondini’s FAQ, but you might peruse it and see if he discusses that issue: http://pondini.org/TM/FAQ.html

  • Bug Report:  "View PDF After Saving" Does Not Work When Saving as Photoshop PDF

    The saved PDF file is not opening in Acrobat after saving a file as a Photoshop PDF. I noticed it happening a few times in earlier beta testing, but today it happened again.
    I have Adobe Acrobat Pro 10.1.2 installed on MacPro with Lion OS 10.7.3. Photoshop public beta m415.  System info can be provided if needed.
    The file I was trying to save was about 8 MB. Once it failed to open after save, I tried varied PDF settings and save locations. Also tried several different files. All were saved properly as PDF files, but would not continue to open in Acrobat as previous versions have done. The files open properly when you click on the file names in saved location.
    3153152
    3153152

    I'm happy I could help and feel a bit proud to have found a real bug. The simplest work around is just clicking on the file list once it's done...that's certainly not a problem.
    Larry
    =====================================
    Larry Guyer
    A la Carte Digital Studios
    Archetype Digital Imaging Alliance
    P.O. Box 4365
    Foster City, CA 94404-0365
    650-348-2525   office
    323-372-1669   fax
    650-444-7100   cell
    www.alacartedigital.com
    www.archetypeimaging.com

  • Exit button not working when entering wrong date

    how do I get the message not to appear by day Invalid (Frm-50004) in forms

    dear Shrikant,
    i have one item start_date whose data type is Date and format mask is DD/MM/RRRR ,
    when i m entering worng date it is showing below message which i kept on ON-ERROR trigger of start_date item with an error code 50004 ;
    "FRM-50004: Day must be between 1 and last of month."
    as i m entering wrong date i want to exit my form but my exit button is not working properly.
    The message appears several times, about 3 or 4 times, because the focus is on the text item to the date, and is firing the trigger ON-ERROR, debugging the code, you notice that after the message back running the line "IF", because the error frm-50004 can not be erased, is giving this error all the time because the focus is on her text item!
    i have kept my push buttons mouse and keyboard navigation property to "NO".
    then also it is not working tell me if any solution is there.

  • AD changes not replicating when I move a DC to the correct site

    I have created a site in AD Sites and Services for our branch office.  However, when i place the RWDC in the correct site replication stops.  New user accounts and changes made to that DC do not replicate back to us.
    I am pretty sure there is not a firewall issue because everything works fine when the site is moved back to the same site with the other two domain controllers.  However,  my goal is to make sure that users authenticate to the geographically closest
    DC.
    There is a site-link created between the two sites.  
    The correct subnet (a /20) is assigned to the site.
    I ran the AD Replication Status Tool with no errors,  but when i create a test user on the branch office DC it does not replicate back over to the other DC's.
    Any tips on what i should look for/try next?  

    Hi,
    You can check the replication status using the below command,
         repadmin /showrepl
    To initiate the replication the local_DC and target_DC use the below command,
        repadmin /showreps target_DC_name 
    Checkou the below link on initiating replication between Active Directory Direct Replication Partners
    http://support.microsoft.com/kb/232072/en-us
    Checkout the below link on similar discussion, 
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/59e25e9c-fecd-46cd-87d1-103440b36a0f/after-moving-additional-domain-controller-server-to-another-site-replication-fails-with-in-sites?forum=winserverDS
    Regards,
    Gopi
    JiJi Technologies

  • Search Engine Toolbar inactive - will not search when enter pressed

    I recently upgrade to Firefox 5 from Firefox 3.6. The Search toolbar worked great in 3.6 but now in 5 when I type into the search engine I get suggested results but when I hit "enter" to perform the search nothing happens. I tried to switch different search engines but get the same problem. Any ideas?

    There are compatibility issues between Firefox and Ask. See http://kb.mozillazine.org/Problematic_extensions

Maybe you are looking for