2008 Feb 29 10:20 PM
how to check in a single shot that any field in the internal table is empty..
I have to catch all such entries which are not having data in any of the field, and move it to another internal table ( error file)
how to check in a single shot that any field in the internal table is empty..
I have to catch all such entries which are not having data in any of the field, and move it to another internal table ( error file)
2008 Feb 29 10:41 PM
There is no "single shot" technique. You can achieve your objective with fewest possible lines of code using field symbols and the following ABAP statement:
ASSIGN COMPONENT n OF STRUCTURE...
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |