I have a variable called LV_MAIN
which is having value as LV_TEMP
and now I want to assign value to LV_TEMP
and write select for LV_TEMP
. How can I achieve this?
To explain in detail:
LV_MAIN := LV_TEMP
and now I want to assign:
LV_TEMP := '7'
and want to execute:
SELECT :LV_TEMP FROM DUMMY;
How can I do that?