Application Development 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: 

Adding entries to a table

Former Member
0 Kudos

Hi,

I have created a new table.There are zero entries.Now i have to add a entry.How to do?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi;

You have 2 ways to enter the data

1. go in se11 -> utitlities->table content -> create entries

2. By ABAP codeing

Regards

Shashi

8 REPLIES 8

Former Member
0 Kudos

make a table maintaince for that

0 Kudos

What is that.How to do?

GauthamV
Active Contributor
0 Kudos

Hi,

You can either create table mainteanence genarator for it

or use a simple program to update the table.

SEARCH in SCN for add entries to table you will get so many posts.

dev_parbutteea
Active Contributor
0 Kudos

Hi,

Create a maintenance generator so that you can input entries in the table via transactionSM30.

Former Member
0 Kudos

Hi;

You have 2 ways to enter the data

1. go in se11 -> utitlities->table content -> create entries

2. By ABAP codeing

Regards

Shashi

Former Member
0 Kudos

make a table maintaince for that

Go back to transaction SE11 and select Utilities------> Table maintenance generator.

In the resulting screen for Authorization group select &NC&

Select the one step and standard recording routine

Now we need to create a Function group. For that we need to run transaction SE37.

Select Function group create.

Name the function group as zfun or somethin. Give an appropriate description.

Select Generate Objects from the drop down menu and select Create.

We need to activate the function group. To do so run transaction SE80.

Select Function group and type the Function group name.

Right click on the function group and click activate

Once this is done enter the scree number as 1 or select the available screen number by clicking the find screen number button.

Run transaction SM30

Enter the Table name.

To add entries click on New Entries.

Enter the Desired data and save the data.

Former Member
0 Kudos

hi,

you can add new entries by going to SE11 and press change button ==>then press FIELD tab

and then add the enties there==>then save activate the table

reghards

rahul

Former Member
0 Kudos

Hi Divya,

Check this out:-

https://www.sdn.sap.com/irj/scn/wiki

Also entries can be added programmatically using INSERT statement.

Regards,

Bhumika