Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Memory ID's into Field Symbols

Former Member
0 Kudos

Hi Experts,

Iam working on one enhancment

I have a memory id , (SAPMQEVA)RQEVA

I need to capture this value in the Field Symbol

Can any one let me know the synatx of catpuring this value in field symbol.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Try something like this

Data lv_fname type char50 value '(SAPMQEVA)RQEVA'.

FIELD-SYMBOLS <RQEVA> TYPE ANY."OR THE TYPE OF THE FIELD RQEVA

.....

.....

Assign (lv_fname) to <RQEVA>.

IF <RQEVA> IS ASSIGNED.

......YOUR CODE HERE

ENDIF.

4 REPLIES 4

former_member209217
Active Contributor
0 Kudos

Hi Karthick,

Try using IMPORT , EXPORT statements.

Regards,

Lakshman.

Former Member
0 Kudos

Try something like this

Data lv_fname type char50 value '(SAPMQEVA)RQEVA'.

FIELD-SYMBOLS <RQEVA> TYPE ANY."OR THE TYPE OF THE FIELD RQEVA

.....

.....

Assign (lv_fname) to <RQEVA>.

IF <RQEVA> IS ASSIGNED.

......YOUR CODE HERE

ENDIF.

0 Kudos

Thanks for the Reply,

But the value that get stored in the field symbol is just a constant (SAPMQEVA)RQEVA

nothing more than that

Iam not getting the values of this.

0 Kudos

Thanks for the Reply,

But the value that get stored in the field symbol is just a constant (SAPMQEVA)RQEVA

nothing more than that

Iam not getting the values of this.