Ok,
This should be a quick one...
I have the following selection in the code:
SELECT LOW SIGN OPTI FROM TVARVC INTO
(L_S_RANGE-HIGH, L_S_RANGE-SIGN, L_S_RANGE-OPT)
WHERE NAME = 'ZIP_PPER_CUR' "in TVARVC
AND TYPE = 'S'.
ENDSELECT.
So I read the LOW -value from the TVARVC-table into a value for L_S_RANGE-HIGH
The question is: How can I use offset for the value stored in L_S_RANGE_HIGH?
The value stored is type 0fiscper: 0062009
And I'd like to append 0052009 into e_t_range.
How do I do this? I tried to use another variable in the midle but it didn't seem to work.
I'm in a real hurry with this, maximum points will be assigned for the one who helps! 😊
-m-