ABAP Macros for dynamically looping internal tables

ABAP Macros for dynamically looping internal tables

Lot of times when writing an ABAP program with internal tables, we need to loop at the Internal tables and write each row data on the screen. The attached code has macros defined which can be used to loop at any internal table dynamically to have the report produced by each row.


REPORT ZTABLOOP.
*--This program has two macros which can be used in any program for
*--dynamically looping at internal table and reporting each row field

DATA: BEGIN OF ITAB OCCURS 0,
        A(1),
        B(3),
        C(2),
      END OF ITAB.
DATA: TNAME(30).

FIELD-SYMBOLS: <T> TYPE STANDARD TABLE,
               <F>,
               <W>.

DEFINE LOOP_ITAB.
*--table passed with &1
  LOOP AT &1.
    DO.
      IF SY-INDEX = 1.
        NEW-LINE.
      ENDIF.
      ASSIGN COMPONENT SY-INDEX OF STRUCTURE &1 TO <F>.
      IF SY-SUBRC = 0.
        WRITE: <F>.
      ELSE.
        EXIT.
      ENDIF.
    ENDDO.
  ENDLOOP.
END-OF-DEFINITION.

DEFINE LOOP_ITAB_DYNAMIC.
*--Table not known - name Passed in &1
  CONCATENATE &1 '[]' INTO &1.
  ASSIGN (&1) TO <T>.
  LOOP AT <T> ASSIGNING <W>.
    DO.
      IF SY-INDEX = 1.
        NEW-LINE.
      ENDIF.
      ASSIGN COMPONENT SY-INDEX OF STRUCTURE <W> TO <F>.
      IF SY-SUBRC = 0.
        WRITE: <F>.
      ELSE.
        EXIT.
      ENDIF.
    ENDDO.
  ENDLOOP.
END-OF-DEFINITION.


START-OF-SELECTION.
*--add some data

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

ITAB-A = '1'. ITAB-B = 'ABC'. ITAB-C = '56'. APPEND ITAB. ITAB-A = '2'. ITAB-B = 'ABC'. ITAB-C = '56'. APPEND ITAB. ITAB-A = '3'. ITAB-B = 'ABC'. ITAB-C = '56'. APPEND ITAB. * loop via macro LOOP_ITAB ITAB. SKIP. * loop with another approach TNAME = 'ITAB'. LOOP_ITAB_DYNAMIC TNAME. END-OF-SELECTION.

This was first published in January 2002

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.