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: 

Problem on Re-trigger IDOC error status

Former Member
0 Kudos

Hi All,

If i want to re-trigger those error status idoc number, is it possible to set the schedule job to do it ?

If not, is it any function module to re-trigger this?

Regards,

Luke

1 ACCEPTED SOLUTION

former_member189779
Active Contributor
0 Kudos

For Outbound: 

For 02 status IDocs follow the below procedure:

Program RBDAGAIN. Schedule as job

This would push your Idoc from *02*(Error passing data to port) to 30(Idoc
ready to dispatch) status.

Now to send the Idoc from 30 to *03*(Data passed to port OK) use the
"RSEOUT00" program and run another job as stated above.

This would send the Idocs to 03.

Similarly at Inbound side: 

To reprocess an Idoc in 51 status:

Use program "RBDMANI2" and run a job.It will push Idocs from 51 to 53 status.

For 64 status use "RBDAPP01" program.

2 REPLIES 2

former_member189779
Active Contributor
0 Kudos

For Outbound: 

For 02 status IDocs follow the below procedure:

Program RBDAGAIN. Schedule as job

This would push your Idoc from *02*(Error passing data to port) to 30(Idoc
ready to dispatch) status.

Now to send the Idoc from 30 to *03*(Data passed to port OK) use the
"RSEOUT00" program and run another job as stated above.

This would send the Idocs to 03.

Similarly at Inbound side: 

To reprocess an Idoc in 51 status:

Use program "RBDMANI2" and run a job.It will push Idocs from 51 to 53 status.

For 64 status use "RBDAPP01" program.

Former Member
0 Kudos

Thank you very much.