-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
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?
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.
Browser other questions tagged sap abap
You are not signed in. Login or sign up in order to post.
Shooow that’s right, thank you very much!
– Marcelo Schiavo