0% found this document useful (0 votes)
133 views4 pages

ABAP Maintenance Table Creation Guide

To create a maintenance table in ABAP, open an existing table in change mode using transaction SE11, then use the Table Maintenance Generator utility to create a maintenance program. Assign an active function group, screen number, and transaction code to the new program. Specify transaction SM30 as the transaction with parameters and skip the initial screen to generate a program that allows modifying and inserting new entries into the transparent table.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
133 views4 pages

ABAP Maintenance Table Creation Guide

To create a maintenance table in ABAP, open an existing table in change mode using transaction SE11, then use the Table Maintenance Generator utility to create a maintenance program. Assign an active function group, screen number, and transaction code to the new program. Specify transaction SM30 as the transaction with parameters and skip the initial screen to generate a program that allows modifying and inserting new entries into the transparent table.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd

Creating Maintenance Table in Abap. In order to create a Maintenance table in data dictionary, go to se11->open the table in change mode.

Create table maintenance(utilities->Table Maintenance Generator)

Specify an active function group and assign a screen number and activate the table. Goto se93, specify a transaction code of your choice and click on create.

Give a short description and select the Transaction with parameter option.

Specify transaction sm30(Table maintenance), and select skip initial screen.

Viewname = zzz_emp(Name of Transparent table for which we maintained Table Maintenance Generator). UPDATE = X.

Execute the transaction, you get the output of the table for which maintenance can be made, (Modify and insert new entries).

You might also like