Application Development 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: 

update PRPS table

Former Member
0 Kudos

Hi,

I am updating DATE2 field of prps table with sys-date.

Can i do that using update command.

Wont it affect other functionality which are dependent on this table.

Thanks,

Sandeep Garg

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Sandeep,

Yes you can update with UPDATE command.

update prps set date2 = sy-datum.

and it will affect only that time wherever this field is coming with standards programs tcodes.

make sure that the data in table is depend on this date or not.

just try this for one entry and see the result.

Thanks,

Sanket.

2 REPLIES 2

Former Member
0 Kudos

Hi Sandeep,

Yes you can update with UPDATE command.

update prps set date2 = sy-datum.

and it will affect only that time wherever this field is coming with standards programs tcodes.

make sure that the data in table is depend on this date or not.

just try this for one entry and see the result.

Thanks,

Sanket.

former_member184657
Active Contributor
0 Kudos

Its never advisable to update SAP Standard Database Tables directly.

pk