Ver Mensaje Individual
  #2  
Viejo 06/04/14, 23:31:42
Fido Fido is offline
Senior Member
 
Fecha de Ingreso: dic 2006
Mensajes: 255
Hola Juanito3422,

Mira este error se produce por un incorrecto procesamiento de tu Idoc por lo que deberías ver de debuguearlo para saber que intenta hacer el programa con los datos que se le transmite.

Debugging of Outbound idoc

The outbound idoc is the one which we use to send from one system to another system and it becomes inbound idoc for the target system from our sender system.

Whenever you gets any idoc with error , go to WE02 and enter the idoc number . by default system gives current date s remove creation date,system will identify idoc by just idoc number on executing it ,you will get the details of idoc like three sections .

1. First one is control record which contain the information of creator of idoc , who is the sender,who is receiver like all these idoc administration details .

2. Second section is Data record .this section contains the complete information of the data which is being came in idoc from the other system. in this ,there will be so many segments like E1EDK01 ,E1EDP01 etc.The first data record contains the document number whose information came and appearing in different different segments .

3.Third section will be status recrd and it will contains all the status like idoc processed successfully (53 status , success one ) application document not posted (status 51 ,error status ) dispatch ok (status 12 ) status 68 ( to make idoc unnecessary and not for processing further etc )

4. Now after seeing all these you need to see the error message in status record i.e 51 status error message .copy the message number and paste it in SE91 transaction with the message class and message number .now that message will come and find the where used list of that message .Now put breakpoints on all those message


5. Then go to WE20 transaction and see the partner profile of that idoc under LS or LI or KU etc partner sections .On finding the partner ,see the message type of our failed idoc , then double click on that message type in inbound section .then see the message code or process code written there .Now you will find a Function Module name which is responsible for processing .

6.Then double click on that Fm and search for "Call function in global search.put the breakpoints at CALL CUSTOMER FUNCTION ' 001 ' INSIDE THAT you will find and include .enter int that include and search for your segment in global search or search for that error message and put break point there.

7.Now Since it is Outbound idoc ,we cannot reprocess it through BD87 and come in debugging mode as it is already gone .We need to replicate a similar scenario in testing system.Now to come in debugging ode ,we have to use a report.Go to SE38 Transaction and enter RSNAST0D and just execute it .

8. On selection screen you will have to enter the delivery number,output type from which idoc is triggered ,medium of output type , etc.now deselect both the check boxes given on selection screen and execute it.you will get another screen and just execute it. and then you will be in debugging mode and you will come to the places where you have put the breakpoints.

Now just see how the values are getting filled where the message is appearing what condition is failing .then you can find the exact cause of idoc failure .
Responder Con Cita