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

Z Table ABC

sergio_cifuentes
Participant
0 Likes
469

i need a program for insert, update and delete values to a Z table.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
414

Simply create a Table maintenance for the table from SE11 and the table maint. can be accessed from SM30 transaction.

SE11, put the table name, Change

Go to Utilities --> Table maintenance

Specify a function group, authorization group

http://www.sap-img.com/abap/create-a-table-maintance-program-for-a-z-table.htm

Regards,

Ravi

Note - Please mark all the helpful ansewrs

Message was edited by:

Ravikumar Allampallam

2 REPLIES 2
Read only

Former Member
0 Likes
414

report abc.

tables: xyz.

data : itab like xyz with header line.

*insert

xyz-field1 = value1.

xyz-field2 = value2.

.......

insert xyz.

*update

select * from xyz into itab.

<modify itab values>.

update xyz where <keyfield> = itab-<keyfield>.

*delete

delete from xyz where <keyfield> = value.

******************

u can this way also...

Simply create a Table maintenance for the table from SE11 and the table maint. can be accessed from SM30 transaction.

SE11, put the table name, Change

Go to Utilities --> Table maintenance

Specify a function group, authorization group

Message was edited by:

Ramesh Babu Chirumamilla

Read only

Former Member
0 Likes
415

Simply create a Table maintenance for the table from SE11 and the table maint. can be accessed from SM30 transaction.

SE11, put the table name, Change

Go to Utilities --> Table maintenance

Specify a function group, authorization group

http://www.sap-img.com/abap/create-a-table-maintance-program-for-a-z-table.htm

Regards,

Ravi

Note - Please mark all the helpful ansewrs

Message was edited by:

Ravikumar Allampallam