sapdev logo background
sapdev logo sapdev logo
Comments

SAP OO OBS HEADER LINE 1 documentation, setup help and example usage



Return to SAP documentation index


INCLUDE
ARTICLE

Cannot Use Headers in Tables

In ABAP Objects, you can only declare tables without header lines .

  • In ABAP Objects, the following statement causes an error message:


  • DATA itab TYPE|LIKE TABLE OF ... WITH HEADER LINE.
  • Correct syntax:


  • DATA: itab TYPE|LIKE TABLE OF ... ,
    wa LIKE LINE OF itab.
  • Cause:


  • Depending on the statement, the system can access tables with a header either by accessing the table body , or by accessing the header itself. The table name should signify the table unambiguously. This makes programs easier to read. Tables with headers do not offer any performance advantages.
  • Note:


  • When you call external procedures (subroutines and function modules) that are contained in the parameter interface TABLES parameter, be aware that this TABLES parameter always contains both a table body and a header. When a table without a header is transferred, the header of the TABLES parameter remains blank. When calling these procedures in methods, you must check to see whether the procedure expects to receive and evaluate the header. If necessary, adapt or rewrite the procedure. Method interfaces do not have TABLES parameters.
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    OO_OBS_FS_1
    OO_OBS_HIDE_1




    comments powered by Disqus