‎2009 May 20 2:08 PM
Hi All,
I'm trying to read data from VBAP into an internal table.
For example:
If VBAP has a single item -> do_further_processing1.
If VBAP has multiple line items -> do_further_ processing2.
Will Describe statement be sufficient for my requirement or are there any other statements which I can use?
Any ideas appreciated.
Meghna
‎2009 May 20 2:14 PM
If you need just the count for the decision (and not the VBAP data), you can use SELECT COUNT(*), otherwise use DESCRIBE or the ABAP function LINES( itab ).
Thomas
‎2009 May 20 2:17 PM