"Scott"
#define ARGVAL "Scott"
char *argval = strdup("Scott");
char *SaGetInputValue(char *name);
SaGetInputValue("element_name")The function call SaGetInputValue will return the values that the end user set the
element_name
element to. This data does not have to be free'd. If the Sapphire/Web developer wishes to use a function, it should not malloc data because it can never be free'd.
SaGetNArg(0)SaGetNArg will by default, get the first Anchor Argument's value. To retrieve the remaining values, change
0
to the number of the Argument you wish to retrieve a value for.
Multiple Result Columns can be bound to the same Data Site. This will cause the returned data to be populated into that single Data Site. The behavior of the population of Data Sites depends upon the Population Callback specified. The default Population Callback is
SaPopulateForText
.