‎2006 Nov 30 5:12 PM
i need a program for insert, update and delete values to a Z table.
‎2006 Nov 30 5:16 PM
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
‎2006 Nov 30 5:16 PM
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
‎2006 Nov 30 5:16 PM
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