2009 Jul 24 10:21 AM
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
2009 Jul 24 10:24 AM
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
2009 Jul 24 10:24 AM
Helllo ,
f1 on modify ....u will get the answer ..very simple .
thanks ..
Priyank
2009 Jul 24 10:24 AM
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.
2009 Jul 24 10:26 AM
Hi,
If you want to modify single records, you can modify the same from the trasaction SE16, or SE16N.
Regards,
Santhosh.
2009 Jul 24 10:27 AM
Hi,
don't modify VBAP direct. Try va02 or BDC or try bapi: BAPI_SALESORDER_CHANGE.
Regards, Dieter
2009 Jul 24 10:32 AM
naresh,
use modify statement on the field of the table if you kow that its not affecting any other tables.
else used BAPI
2009 Jul 24 10:37 AM
2009 Jul 24 10:42 AM
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
2009 Jul 24 10:49 AM
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
2009 Jul 24 10:52 AM
Hi,
It is not advisable to modiy VBAP.
Use BAPI or BDC.
Thanks.