pass more than two parameters with sc_redir

Hi people i want to know if there is possible to send more than 2 parameters with sc_redir

the web help said this:

sc_redir (Application, Parameter01; Parameter02; Target, Error)
More than one parameter, must be separated by semicolon (:wink:

when i pass something like this:

sc_redir(destination_app,glo_curp=[glo_curp];glo_email={xemail};par3={xemail};par4=99,"_parent");

in destination app i do a

echo β€œ<br>Par01”.[glo_curp]; #It has Data
echo β€œ<br>Par02”.[glo_email]; #It has Data
echo β€œ<br>Par03”.[par3]; # No Data
echo β€œ<br>Par04”.[par4]; # No Data

Thanks

Hi jjhermosillo,
Yes, you can pass multiple parameters using sc_redir macro.

First check if the variable values is null or empty in the first application and then,
make sure that your variables in β€˜destination_app’ are set as Type IN. (Application>Global Variables )

Hi jjhermosillo, instead of testing with echo [glo_curp]. Test with var_dump ([glo_curp]). var_dump() shows more information