Offset.
If u want to take 6from matnr.
v_matnr = mara-matnr+0(6).
U can use <b>+0(15)</b>
DATA: string(30) TYPE STRING VALUE 'Test this_program'. DATA: v_string(10) TYPE STRING. v_string = string+0(10). Write:/ v_string.
Output will be:
<b>Test this_</b>
Reward points if this helps.
Add a comment