Hi,
If you use the ABAP Editor's check tool (Ctrl+F2) to check your syntax, it will indicate two problems:
- You have assigned all three field symbols the same name.
- The compiler won't accept TYPE STANDARD TABLE OF struc.
- Use instead one of the following:
- FIELD-SYMBOLS <fs> TYPE table_type.
- FIELD-SYMBOLS <fs> TYPE STANDARD TABLE.
- Use instead one of the following:
Cheers,
Amy