Hi All,
ABAP Table creation ::
Table creation using direct data type:-
- Go to se11
- Make sure DB table is selected
- Click on Create
- Under Delivery and maintenance tab, select Delivery Class as ‘C’. It is used for controlling the transport of the data. The Delivery class can be either ‘A’ or ‘C’.
- ‘A’ is called as application table which can be used for storing master and transaction data. ‘C’ is called customizing table used for storing custom specific data.
- Data browser / Table view Maintenance
- Select ‘Display Maintenance allowed with Restrictions’. It allows only display of data but we cannot perform DML operations. DML operation include INSERT, UPDATE, DELETE
- If we choose
‘Display Maintenance allowed’ it supports all the operation.
- If we choose
‘Display Maintenance not allowed’ it does not support any of operation.
- Under fields tab data type column will be disabled. Click on the predefined types button to enable it.
Whenever SAP is installed the database is partitioned to multiple schemas. The data class specifies in which schema the table has to be stored.
Size Category: It specifies the initial amount of memory that need to be allocated for database table. The range size category changes dependency of table structure.
Enhancement Category: It specifies the type of enhancement that can be made to table in future.
For INSERT in table
- Choose Menu Utilities
- Click Table content
- Create Entry
For SELECT
- Choose Menu Utilities
- Click Table content
- Display
For MODIFY
- Choose appropriate record (after SELECT)
- Choose Menu
- Table Entry
- Change
For DELETE
- Choose Menu Utilities
- Click Table content
- Delete
->>>>> Here is the list of common T-codes used in ABAP module.
se11 -> Dictionary Object
se38 -> ABAP Editor
se80 -> Object Navigator
se90 -> Transport Organizer
se14 -> Table/View Adjustment
se16 -> Data Browser
se37 -> Function Builder
se41 -> Menu Painter
se51 -> Screen Painter
se71 ->Form Painter
se91 -> Message Class Maintainance
se93 -> Creating T-Codes
se78 -> Graphics Manger
smartforms -> Create Smart Forms
sm36 -> Define Background Job
sm37 -> Job Overview
sm35 -> Session Object Processing
shdb -> Recording
se76 -> SAP Script Language Translation
Regards,
Hari M.