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

use 2 function in 1 func

Former Member
0 Likes
391

i want to create zfunction that include 2 standard fuction that will work 1 after another what's the code?

thanks.

2 REPLIES 2
Read only

Former Member
0 Likes
372

hi ,

create like this.

function
call 'z1'.

do something.

call 'z2'.

do nothing.


endfunction

Regards

Prabhu

Read only

Former Member
0 Likes
372

Hi,

You can just take look at the standard SAP FM "WS_DOWNLOAD" and see the code inside. The function module inturns calls other function modules from within it. Its a good example of how to use FM's within the source code of other FM;s.

Cheers

VJ