DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: populate a display item in Forms

  1. #1
    Join Date
    Jun 2000
    Location
    dumfries,va,usa
    Posts
    227
    Hi,

    I need to populate a display item (with TEMP.run_date) if the name of the current form = the column "TEMP.NAME". How can I get the values displayed on the display item?

    Thanks in advance
    leonard905
    leonard905@yahoo.com

  2. #2
    Join Date
    Jan 2001
    Posts
    2

    Wink

    Try this in the post query trigger of your temp block.

    IF get_application_property (current_form_name) = :TEMP.NAME then
    :TEMP.RUN_DATE := SYSDATE;
    END IF;

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width