
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Have a Structure with a Table in ABAP
The basic rule while specifying a table within a structure is that you have to give a non-unique constraint to that field.
TYPES: myType TYPE TABLE OF string WITH NON-UNIQUE DEFAULT KEY
Then use this in the structure definition:
TYPES: BEGIN OF ty_itab, ….. myTable type myType, …….. TYPES: END OF ty_itab.
Advertisements