cancel
Showing results for 
Search instead for 
Did you mean: 

Changes of fields in report

resmi_v
Participant
0 Kudos

Dear SAP Experts,

How can I view the changes of sales order fields in report?For example

Sales order status changes: Inprep 09/08/2018 ,open 10/08/2018

or any extension field changes by date.

Thanks in advance

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member564242
Active Participant

You can achieve this by adding an extension field to store the value of the standard field prior to change. After adding the extension field in the BO you can add the following code in AfterModify event.

if(this.Standard Field != this.Extension Field){

Write your logic here

this.Extension Field = this.Standard Field

}

Hope this helps.

resmi_v
Participant
0 Kudos

Hello Sneha,

But how can i see the history here?