Hello,
I got a grid with a htlm image button that call/open a Blank application . On the grid I got defined 3 global variables like that:
[glo_customer_id]={id_customer};
[glo_id_instrument]={id_instrument};
[glo_serial_numenr]={serial_number};
Within the blank I inserted a sc_redir macro to open a form trying to use the globals variable as default values for some form’s field.
these 3 form’s field are
{customerid}
{id_instrument}
{seriale}
sc_redir(form_ticket_insert, {customerid}=[glo_customer_id], {id_instrument}=[glo_id_instrument],{seriale}=[glo_serial_numenr]);
It doesn’t work … Probably I’ve not clear how parameters work.
Can somebody help me to fix it ?