I want to insert some char value into data object.
Here is the code:
Data : dref TYPE REF TO data.
Data : lv_Vend TYPE LIFNR.
Field-Symbols: <nval> TYPE ANY.
Select single vendor_no INTO lv_Vend
From venamp
Where partner_guid = lv_guid.
I want to fill vendor no into dref.
How I can accomplish this?
Your reply is highly appreciated.