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

update PRPS table

Former Member
0 Likes
700

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
Read only

Former Member
0 Likes
657

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
Read only

Former Member
0 Likes
658

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.

Read only

Former Member
0 Likes
657

Its never advisable to update SAP Standard Database Tables directly.

pk