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

Calling new executable program using Submit in new external session

Former Member
0 Likes
404

Hello All,

I have developed one hierarchical ALV list in which there are PUSH buttons provided for user interface.

On pressing this buttons new programs are called.

In the code i have used 'SUBMIT AND RETURN' syntax for this.It working fine and called program is properly being executed in same session.

Now I have new change in this from functional side asking to open this called program in new external session and keep the list as it is in existing session.

Can it be done this way?

If yes how to do it?

Please reply.

Thank You,

1 REPLY 1
Read only

jarryq
Explorer
0 Likes
352

Hi,

You can create a RFC that will call the other program and execute the RFC like this:


CALL FUNCTION 'Z_FUNCTION' STARTING NEW TASK 'TASK1'.

Hope this helps.