How to call Rowexit Automatically-Form already open

tallam

Active Member
Hi Guys,


I Created HEADELESS DETAIL FORM and using row exit(Eg:- GoToF/B) i take an exit to Findbrowse form.

In find browse form i select couple of grid records and take an Row exit(Return value-This row exit will write return values to a temporary table) and closes the Find browse form and shows the HEADELESS DETAIL FORM.

And once i return to HEADELESS DETAIL FORM I Click another Row exit(Get Values) to get values from temporary tables.

Here i need to call this roweixt(Getvalues) automatically once the find browse form closes or HEADELESS DETAIL FORM Opens

In which event can i perform this (Tryed using "PressButton" in Post dialog is initialised/Grid record is fetched event and debugged but the debugger is not getting called(This because the form is already open as defined in point 1)

Guys can you help me out

Tallam
 
Try this:

For calling F/B form, you must have written an event in the Row exit button like this,

call(App:p55XXXX, Form: W55XXXXA), right?

Call the "Get Value" row exit button immediately after this event rule, like this


Button Clicked: (Under F/B Row Exit event)
call(App:p55XXXX, Form: W55XXXXA), ---> this one calls F/B
call(App:p55XXXX, Form: W55XXXXB), --->this one immediately calls "Get Value" as soon as you close F/B.

Hope this would help!!!!!!
 
Back
Top