What does a table with OCCURS 0 in ABAP mean?

Asked

Viewed 143 times

-2

I’m starting out in the SAP world and found an internal table declared as follows:

DATA: it_buscar TYPE ty_ztabela OCCURS 0 .

What is that OCCURS 0 siginifica?

2 answers

0

Eduardo’s answer is correct, but it is an obsolete way, whenever creating a table it is better to use TYPE TABLE OF 'here your table'

-1


Occurs 0 Specifies how many rows the table can have, when set to zero you can have as many rows as needed.

  • 1

    Shooow that’s right, thank you very much!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.