Hi ,
I came across the below statement in one of the sample ABAP codes. I could not understand the bind variable @
how is this bind variable @ different to traditional work area target?
DATA ls_bupa_reminder TYPE ty_bupa_figure.
SELECT bp_id,
company_name
FROM snwd_bpa
INTO (@ls_bupa_reminder-bupa_id, @ls_bupa_reminder-company_name)
. "#EC CI_NOWHERE
Thanks
Vardhan