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: 

Function module to push 66 to 53

Former Member
0 Kudos

Hi,

Please let me know the function module that pushes the idocs from 66 to 53 status.

Tried debugging RBDAPP01 program, but too many function modules exists.

Not able to locate the right one.Kindly help me gurus.

Regards,

Lakshminarasimhan.N

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

I think it is achived thru these 2 function modules in sequence.

1) ALE_SERIAL_PROCESS

2) APPLICATION_IDOC_POST_IMMEDIAT

Regards

Shital

6 REPLIES 6

amit_khare
Active Contributor
0 Kudos

Welcome to SCN.

Check this [thread|], specially reply from Abdul.

Former Member
0 Kudos

Hi,

I think it is achived thru these 2 function modules in sequence.

1) ALE_SERIAL_PROCESS

2) APPLICATION_IDOC_POST_IMMEDIAT

Regards

Shital

Former Member
0 Kudos

Hi,

Idocs waiting in 66 status are those which expect some other IDoc to get posted before this one gets posted - the scenario being called, serialization. You need to check with the serialization number from the control record of the IDoc in 66 status and check if the previous serialization IDocs are posted successfully, if not, first post them.....in case they are already posted successfully, check with the counter via transaction BD103(for inbound). The serialization number should be one less than the serialization number of the IDoc in 66 status.Else you can change it to one less than the current 66 status serialization IDoc, save the changes and manually push the 66 status IDoc(via program RBDAPP01). You can manually change the counter in BD103 only if all the IDocs with the previous serialization numbers are already posted successfully. If not, first post all those IDocs and then process the 66 status IDoc.

Hope this helps..

~ Bineah.

0 Kudos

Hi,

please check RC1_IDOC_SET_STATUS - you can set an IDoc from any status to any status using it.

Regards,

Kai

Former Member
0 Kudos

Hi,

This is the problem with serialization, take the serialization number from idoc's control record and check the status of idocs whose serialization number is less than one of this idoc in table EDIDS. If this idoc is in 53 status then only you can process your idoc with RBDAPP01.

Thanks,

Asit Purbey.

Former Member
0 Kudos

Hi shital,

thanks for your help. The problem has been solved with the help of the function modules you have specified.

Hi all others, thanks for you too

Cheers,

Lakshminarasimhan.N