‎2009 Feb 12 7:05 PM
Hi All,
I have a custom seg zE1EDP01 with 1 field to E1EDP01 parent segment for idoc ORDERS01.
Can anyone tell me how to populate the field in segment zE1EDP01
Thanks
‎2009 Feb 12 7:36 PM
I hope its a standard Purchase Order EDI. Use a User-Exit to populate the Custom segment.
‎2009 Feb 12 7:36 PM
I hope its a standard Purchase Order EDI. Use a User-Exit to populate the Custom segment.
‎2009 Feb 12 7:40 PM
Hi,
Its a standard PO EDI
DATA: WA_ZE1EDP01 TYPE ZE1EDP01.
if int_edidd-segnam = 'ZE1EDP01'.
move int_edidd-sdata to WA_ZE1EDP01.
WA_ZE1EDP01-ZTEST = 'Test'.
move WA_ZE1EDP01 to int_edidd-sdata.
endif.
But for some reason in degugging i never see segment ZE1EDP01.
It never goes inside the if condition
I also added the extension type in outbound parameters for that particular vendor and also added extension for message type.
Let me know if i missed anything.
Thanks