Parameters Passing to Forms
The call for Form open is known:
callOpenFormTop(“ptEdit“,“FNAME.FM“,“WORK.TNAME“,1,“?=TNAME“)
In cases where we want to pass two more parameters, the code is as follows:
callOpenFormTop(“ptEdit“,“FNAME.FM“,“WORK.TNAME“,1,“?=TNAME“,par1,par2)
Into the code of the called Form, we are taking the parameters as:
proc Form_Start()
parameter1 = {...par1}
parameter2 = {...par2}
end
Parameter counting starts from “ptEdit“ as (1).