How to Get :System.Current_form in a DB Trigger ? [message #80255] |
Fri, 30 August 2002 06:31 |
Robinson
Messages: 5 Registered: August 2002
|
Junior Member |
|
|
Look,
I need to know the form's name that fires a database trigger (insert delete update in a table), i find :system.current_form but it doesn't work in the DataBase trigger, i need to save the name of the form that fire that Data Base Trigger, How can i do it ?
Thanks
|
|
|
Re: How to Get :System.Current_form in a DB Trigger ? [message #80258 is a reply to message #80255] |
Fri, 30 August 2002 13:04 |
Gursharn
Messages: 4 Registered: August 2002
|
Junior Member |
|
|
There are two possibilities that you can use with the
get_application_property built-in that will help you.
1. get_application_property(current_form)
Returns the .FMX file name of the form currently being executed.
2. get_application_property(CURRENT_FORM_NAME)
Returns the name of the current form as indicated by the form module Name property.
good luck :)
|
|
|
|