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

modify the standard records in database table

Former Member
0 Likes
1,169

hi folks,

could u say me , how to modify the standard records(values) in database table.

For example in VBAP is one field like ZWERT(target value) , I wnat to modify the values of this field .

THANKS

KUMAR

1 ACCEPTED SOLUTION
Read only

sridhar_meesala
Active Contributor
0 Likes
1,082

Hi,

It's not advisable to modify the standard tables through program. If you want you can do using MODIFY.

MODIFY database_table FROM TABLE itab.

Thanks,

Sri.

hi folks,

could u say me , how to modify the standard records(values) in database table.

For example in VBAP is one field like ZWERT(target value) , I wnat to modify the values of this field .

THANKS

KUMAR

9 REPLIES 9
Read only

Former Member
0 Likes
1,082

Helllo ,

f1 on modify ....u will get the answer ..very simple .

thanks ..

Priyank

Read only

sridhar_meesala
Active Contributor
0 Likes
1,083

Hi,

It's not advisable to modify the standard tables through program. If you want you can do using MODIFY.

MODIFY database_table FROM TABLE itab.

Thanks,

Sri.

Read only

Former Member
0 Likes
1,082

Hi,

If you want to modify single records, you can modify the same from the trasaction SE16, or SE16N.

Regards,

Santhosh.

Read only

Former Member
0 Likes
1,082

Hi,

don't modify VBAP direct. Try va02 or BDC or try bapi: BAPI_SALESORDER_CHANGE.

Regards, Dieter

Read only

Former Member
0 Likes
1,082

naresh,

use modify statement on the field of the table if you kow that its not affecting any other tables.

else used BAPI

Read only

Former Member
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,082

check how that field gets updated ... may be thorugh some Exits or BAPI.

same way there might be BAPI for change

if not found then go for UPDATE.

check the syntax in F1 documentation

Read only

Former Member
0 Likes
1,082

Hi KUMAR,

ones again. DON'T use modify or delete for standard tables like VBAP.

You can get a lot of problem.

USE: VA02 BDC BAPI.

Regards, Dieter

Read only

0 Likes
1,082

Hi,

It is not advisable to modiy VBAP.

Use BAPI or BDC.

Thanks.