Skip to Content
0
Jul 30, 2016 at 09:34 PM

what does @ work area mean in ABAP select, How is it different?

422 Views

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