HI Rebekah,
Instead of creating internal table with occur 0, create internal table with INITIAL SIZE. Bcose OCCURS n is obsolete in OO Context and it is advisable to use INITIAL SIZE instead.
DATA: itab TYPE STANDARD TABLE OF /BI0/HORGUNIT INITIAL SIZE 3.
regards,
Ashvin.