cancel
Showing results for 
Search instead for 
Did you mean: 

IDOC serialization check

Former Member
0 Kudos
547

Hi,

Can someone please tell me what inputs i need to pass to the idoc_serialization_check fm. All i have is the message type and the idoc type information.

Thanks

Accepted Solutions (0)

Answers (3)

Answers (3)

ferry_lianto
Active Contributor
0 Kudos

Hi Reson,

Please check this link for example program.

http://help.sap.com/saphelp_nw04/helpdata/en/78/2175a751ce11d189570000e829fbbd/content.htm

Hope this will help.

Regards,

Ferry Lianto

Former Member
0 Kudos

TABLES t_idoc_data STRUCTURE edidd

t_idoc_status STRUCTURE bdidocstat

t_serialization_info STRUCTURE bdi_ser.

DATA: BEGIN OF t_idoc_contrl OCCURS 1.

INCLUDE STRUCTURE edidc.

DATA: END OF t_idoc_contrl.

CALL FUNCTION 'IDOC_SERIALIZATION_CHECK'

TABLES

idoc_serial = t_serialization_info

idoc_data = t_idoc_data

idoc_control = t_idoc_contrl

EXCEPTIONS

OTHERS = 1.

former_member181966
Active Contributor
0 Kudos

Checkout

http://help.sap.com/saphelp_nw04/helpdata/en/0b/2a66d6507d11d18ee90000e8366fc2/content.htm

http://www.sapfans.com/forums/posting.php?mode=quote&p=383070&sid=3907f12b866299cc7e2e3e9728674ef3

FYI

CALL FUNCTION 'IDOC_SERIALIZATION_CHECK'

TABLES

IDOC_SERIAL = SERIALIZATION_INFO

IDOC_DATA = T_IDOC_DATA

IDOC_CONTROL = T_IDOC_CONTROL.

See code of FM "IDOC_INPUT_OPEN"

Thx

Saquib