Answer Posted / malathy
A field symbol is a pointer you can dynamically assign to a
field. after assignment you can use the field symbol
anywhere in your program in place of the actual field name.
Use the field symbol statement to define the field symbol
and use assign to assign a field to it.field symbols name
must begin and end with an angle bracket.
Here is an example program.
Data : f1(3) value 'ACD'.
field-symbols <f>.
Assign f1 to <f>.
write <f>.
<f> = 'ghh'.
write f1.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
BDC program to migrate data to SAP R/3 database. The data will be uploaded using transaction ME11. (Session Method) plz mention the detail coding Tahnks, Rahul
How do you document ABAP programs? Do you use program documentation menu option?
What is amdp (abap managed data procedures)?
What is an “on request field” statement?
What has to be done to the packed fields before submitting to a BDC session.
What are dml commands in abap?
What are the personnel administration related infotypes? : abap hr
How to write a code for multiple transactions? : abap bdc
how to track records from data dictionary?
Name the special commands of list?
What is table pool?
How do you import pay scale data from non sap to sap? : sap abap hr
how do you call third selection screen ?
How to read 5th record from Hash Internal Table?
The extract statements in field groups can be used before or after processing the sort statements. State true or false. : abap modularization