‎2009 Jun 24 2:42 PM
Hi Experts,
I have one custom table and I have inserted data's from one Custom program. The data's from the program stored into the table perfectly. Now the problem is after that the saved data's disappeared unknowingly.
May be the data deletion process is done by any program. Now my question is How to find the Data's of Database table getting deleted? If its done by any program How can I found that program exactly.
I was used Event trace. But there is no use.
All suggestions will he Highly Appreciated.
Thanks All.
‎2009 Jun 24 2:52 PM
Hi,
Did you use commit work after insertion of records in your program. If not use COMMIT WORK after Inserting the records.
Regards,
Satish
‎2009 Jun 24 2:52 PM
Hi,
Did you use commit work after insertion of records in your program. If not use COMMIT WORK after Inserting the records.
Regards,
Satish
‎2009 Jun 24 2:52 PM
Do a where used list for the table and look for programs that delete.
Rob
‎2009 Jun 24 2:53 PM
Hi Nandini,
Have you used commit work statement in your program after uploading the data into your custom table?
Regards,
Anand Patil
‎2009 Jun 24 3:05 PM
Thanks For all the replies. I didnt used Commit work. So I'll check it out and revert back to you.
And Rob Now im checking the Programs using where used List.
Thanks Again.
‎2009 Jun 24 3:12 PM
There is an implicit COMMIT at the end of the program. This shouldn't be a problem.
Rob
‎2009 Jun 24 3:00 PM
Use Tran : SCU3 to track table changes. But logging for the table needs to be activated which is done in the technical attrinutes of the Table.
Also Run report RSVTPROT .
‎2009 Jun 25 1:01 PM
Thanks All. Using where used list I found the code and removed it. Thanks Again.