Application Development and Automation 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: 
Read only

Call Transaction

Former Member
0 Likes
719

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.

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
699

Hi,


SUBMIT RSEIDOC2 WITH DOCNUM = it_idoc-docnum
                               AND RETURN.

a®

4 REPLIES 4
Read only

Former Member
0 Likes
699

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

Read only

former_member194669
Active Contributor
0 Likes
700

Hi,


SUBMIT RSEIDOC2 WITH DOCNUM = it_idoc-docnum
                               AND RETURN.

a®

Read only

0 Likes
699

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.

Read only

0 Likes
699

Hi both of solution works fine.....

Martin's solution is perfect.....and simple....Thanx yar