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: 

Who Reprocessed idoc ?

Former Member
0 Kudos

Hi Guyz

I want to know who reprocessed an idoc and what field was changed while reprocessing?

Is it possible ?

Be quick to get ur points

Thanks in advance

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Sreedhar,

You can pickup the Idoc from table EDID4 and compare the SDATA with the new IDoc that has been changed.

select single * from EDID4

into wa..

where docnum eq 'Idoc no.'

and segnam eq 'Segment name'.

Then select next Idoc similarly and Compare using

IF ws_data1-sdata = ws_data2-sdata.

Values are same

ELSE.

Value are different

ENDIF.

Reward points if this helps.

Manish

5 REPLIES 5

Former Member
0 Kudos

EDI guys or batch jobs.

Field will not changed but the IDOC status will be changed after reprocess.

Former Member
0 Kudos

Hi Sreedhar,

Check out Table:

EDIDS - Status to get last changed.

For Field which got changed- Need to compare the IDoc prgramatically.

Reward points if this helps.

Manish

Former Member
0 Kudos

Hi Sreedhar,

You can pickup the Idoc from table EDID4 and compare the SDATA with the new IDoc that has been changed.

select single * from EDID4

into wa..

where docnum eq 'Idoc no.'

and segnam eq 'Segment name'.

Then select next Idoc similarly and Compare using

IF ws_data1-sdata = ws_data2-sdata.

Values are same

ELSE.

Value are different

ENDIF.

Reward points if this helps.

Manish

0 Kudos

Hi Manish -

Currently we are having similar approach i.e., finiding out hte idocs and writing an program to compare the things ....which we are thinking would be tedious to test and approve..instead of i was thinking any standard ALE audit transactions where we can find this info?

thanks

former_member404244
Active Contributor
0 Kudos

Hi Sreedhar,

check the tcode ,BD87,BD83,BD84.

regards,

Nagaraj