Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Data Dictionary

Former Member
0 Likes
657

hi , while we create any kind of user table in abap data dictionary, using the table maintenance generator we can create a provision of inserting more than one row at a time into the database table. How can i create a transaction code for that particular action on a database table. Such that when i enter my tcode i should be having my multiple enteries screeen to input data into a database table.

thanxs

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
639

Go to Se93.

Enter tcode

Click create

Enter description

select radiobutton for transaction with parameters

Next screen, enter SM30

check the check box for "skip first screen"

In the table contol at the bottom enter the parameters.

   VIEWNAME     <your_table_name>
   UPDATE          X

Save.

Regards,

Rich Heilman

5 REPLIES 5
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
640

Go to Se93.

Enter tcode

Click create

Enter description

select radiobutton for transaction with parameters

Next screen, enter SM30

check the check box for "skip first screen"

In the table contol at the bottom enter the parameters.

   VIEWNAME     <your_table_name>
   UPDATE          X

Save.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
639

Once you are in "table maintenance generator" screen in SE11 for the table, you can use the path Environment -> Transaction code to set a trxn code for table maintenance.

Use single overview screen if you want to show the table contents in one step. Hope this helps.

Read only

Former Member
0 Likes
639

You can create a program and call this FM <b>VIEW_MAINTENANCE_CALL</b>

set the parameters as below.

ACTION = 'U'

VIEW_NAME = <table-name>

CHECK_DDIC_MAINFLAG = 'X'

and then assign the TCODE to this program.

Regards,

Utsah Garg.

Read only

Former Member
0 Likes
639

Hai,

Go to transaction se16n. There you can create multiple entries or edit multiple entries at a time. If it is not in the edit mode enter & edit and press enter.

Hope this will meet ur requirements.

Regards Rakesh.

Read only

Former Member
0 Likes
639

hi,

you can also use SHD0 transaction, to create transaction for table maintenence.However creating a transaction variant from SE93 is easier and more straight forward.

regards,

sap fan.