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

Changing an entry in the Table

Former Member
0 Likes
1,208

Hi,

I need to change the material description in MAKT table ..

but i cant modify using SM30 transaction as table maintenance is generated for that..

kindly advice

Hi,

I need to change the material description in MAKT table ..

but i cant modify using SM30 transaction as table maintenance is generated for that..

kindly advice

7 REPLIES 7
Read only

Former Member
0 Likes
1,113

you can change with the help of writing a piece of code if it is for one few entries.

Read only

Former Member
0 Likes
1,113

You can change it by writing a small piece of code for few entries

Read only

Former Member
0 Likes
1,113

Hi Suresh,

If for some entries only then you can either write a small BDC program or do it thru BAPI. It will be better. Vrey less effort and you will also not be reuired to write direct insert or modify statement for DB table,.

Jayant Sahu

Read only

Former Member
0 Likes
1,113

Hi,

You Can use TCODE MM02 to change the description of the material. Select the view as basic data for the material and plant and change it.

Cheers

Ifte

Read only

Former Member
0 Likes
1,113

hi,

if your asking to change the standard descirption of the Material.

you can go for CMOD and create project and select the field exit. where you have to enter the material data element. and change the description.

if it is not your requirment please ignore it.

if it is your requirment let me know i can help you out with detail infomration.

regards

sekhar

Read only

Former Member
0 Likes
1,113

hi,

if you want to change the entry in material of MAKT table.

go to respective record->

double click on that record.

-> go to command line-> enter /H and press ok icon

-> it will take you into the follwoing code.

if code = 'SHOW'.

set titlebar 'TAB' with name 'anzeigen'(100).

elseif code = 'EDIT'.

set titlebar 'TAB' with name 'ändern'(101).

elseif code = 'INSR'.

set titlebar 'TAB' with name 'einfügen'(102).

elseif code = 'ANVO'.

set titlebar 'TAB' with name 'einfügen'(102).

elseif code = 'DELE'.

set titlebar 'TAB' with name 'löschen'(103).

then change the code value from SHOW to EDIT.

there you can change the description of material.

It should not work in the quality and production server. it is working only in dev server.

it should work, if you do the following my suggession

<REMOVED BY MODERATOR>

sekhar

Edited by: Alvaro Tejada Galindo on Feb 27, 2008 2:44 PM

Read only

Former Member
0 Likes
1,113

Hi

use this BAPI BAPI_MATERIAL_SAVEDATA

regards

Shiva