Variable and Tabs

Hello,

I’m trying for hours to find a solution, if someone as an idea ?

I start from a list (grid_personnel) I design a button to edit the line of my report.
I pass a variable idT_Personnel field idT_Personnel.
If I call the form Form_personnel it works fine…
Meanwhile I would like to call a Tabs_app where the first tabs is Form_personnel
The parameters of the tab is idT_Personnel Variable idT_personnel
The WHERE clause of the Form personnel is idT_Personnel = [idT_Personne]
The point is I do not manage to pass GLOVA from grid to form through TABS

Hello,
It is not necessary to pass the variable, as it is global.
Set the variable and use it in your form.

When I pass the variable it take always the last one of the table into account and not the one of the raw i hit…

If you want to pass the correct idT_Personnel from Grid to Tabs to Form, don’t use button. Create a hyperlink to link to the tab as followed:
Grid (grid_personnel)
onRecord
{idT_Personnel} = “<a href=’…/tabs_Personnel/?[idT_Personnel]=”.{idT_personnel}."’>".{idT_Personnel}."</a>";

Tab (tabs_personnel)
Application Settings
Click Edit, then set Parameters {idT_Personnel} with Type ‘Variable’ with Value [idT_Personnel],
set Parameters {idT_personnel} with Type ‘Variable’ with Value [idT_Personnel]

it is even easier, just create a field link, (a new calculated field if necessary with a filter to passthrough to a linked app). it passes the row values