‎2009 Feb 27 7:15 PM
Hi,
My requirement is to show the value entered in the selection screen in the report output column heading using text elements.
I am using text element to show the column heading. how can i add a variable to the text element and pass the value to it ?
Thanks,
Prasad.
‎2009 Feb 27 8:29 PM
Hi,
Its not possible to pass on the variables with the text elements, as text elements are used storing the text written by you in the program and not the values of the variable.
hence if you want to display the column heading with the variable you can directly write text element first and then write the variable,
write : text-001, w_variable.
Regards,
Siddarth
‎2009 Feb 27 8:29 PM
Hi,
Its not possible to pass on the variables with the text elements, as text elements are used storing the text written by you in the program and not the values of the variable.
hence if you want to display the column heading with the variable you can directly write text element first and then write the variable,
write : text-001, w_variable.
Regards,
Siddarth
‎2009 Feb 27 8:38 PM
Hi,
You can either use
WRITE:/ text-001 , P_VAR.
Or you can concatenate the value into a variable
CONCATENATE text-001 p_var into field1.
and use field1 into the header.