‎2007 Oct 25 4:59 PM
Hi Friends,
From a report, I need to call t-code we02 passing the idoc value to the t-code.
Could you please help me. If possible please explain with code.
Regards,
Vijay.
‎2007 Oct 25 5:04 PM
Hi,
SUBMIT RSEIDOC2 WITH DOCNUM = it_idoc-docnum
AND RETURN.
a®
‎2007 Oct 25 5:00 PM
Is this to display the IDoc data. If so there is a function module to call.
CALL FUNCTION 'EDI_DOCUMENT_TREE_DISPLAY'
EXPORTING
docnum = <IDOC NUMBER>
EXCEPTIONS
no_idoc_found = 1
OTHERS = 2.
Message was edited by:
Martin Shinks
‎2007 Oct 25 5:04 PM
Hi,
SUBMIT RSEIDOC2 WITH DOCNUM = it_idoc-docnum
AND RETURN.
a®
‎2007 Oct 25 5:15 PM
Thanx yar....i got the solution.....
Martina, thanx for giving me the FM mdule that is also wat i was in need of.
Regards,
Vijay.
‎2007 Oct 25 5:50 PM
Hi both of solution works fine.....
Martin's solution is perfect.....and simple....Thanx yar