SAP database has numerous tables. For viewing the content of a particular table SAP has provided a tool which can be accessed using some transactions. An ABAP programmer can display the data of a particular table using a report but this cab be easily achieved using the tools provided by SAP. As an ABAP programmer if you wish to quickly view the contents of a particular table the best way is to use this tool and the corresponding transactions.
Enter Transaction Code SE11.
Note that transaction SE11 can be used to Display/Change/Create database tables. Other transactions for ABAP dictionary are as follows
SE12 Display Database Tables View Data Types Domain Search Help Lock Objects
SE11 Display/Change/Create Database Tables View Data Types Domain Search Help Lock Objects
SE16 and SE16N Data Browser
Enter the Table name in this case VBAK
Click on Display.
Click on COntents as shown below or use shortcut CTRL+SHIFT+F10
Enter the desired data. In this case the sales order number.
The data is displayed as shown below.
1 comment:
Anonymous
said...
Hi, how can I access these tables in ABAP? I want to do SELECT and INSERT from ABAP on tables created in se11.
Always use Pretty Printer and Extended Program Check before releasing the code.
Do not leave unused code in the program. Comment the code thoroughly. Align the comments and the Code. Follow the SAP Standards and SAP Best Practices guidelines. It’s a good practice to take a dump of the code on your local drive.
1 comment:
Hi,
how can I access these tables in ABAP? I want to do SELECT and INSERT from ABAP on tables created in se11.
Post a Comment