Application Development 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: 

call a custom Transaction as a pop-up

Former Member
0 Kudos

Hi All,

I want to call a custom Transaction as a pop-up in the current custom transaction. Is there any option to do that ?

Thanks in Advance

Balaji.G

4 REPLIES 4

Former Member
0 Kudos

Hello Balaji,

Welcome to SDN.

It's not possible to call a normal screen as a popup screen.

Instead you can do one thing make the default screen of the second transaction as Modal box.

Hope this will help you.

Cheers,

Suvendu

0 Kudos

Hi.

Modal Does work for me, Because I am using PF-Status and Input Fields.

Thanks for your reply.

Regards

Balaji.G

0 Kudos

Hi.

Please Ignore the above reply.

It does not work for my senario.

Thanks.

Regards

Balaji

Former Member
0 Kudos

>

> Hi All,

>

> I want to call a custom Transaction as a pop-up in the current custom transaction. Is there any option to do that ?

>

> Thanks in Advance

> Balaji.G

Hi Balaji,

it is not possible to show the transaction as a pop-up...

you can show pop-up asking to enter the t-code later you can take then to particular transaction..

CALL FUNCTION 'POPUP_TO_GET_VALUE'

EXPORTING

fieldname = 'TCODE'

tabname = 'TSTC'

titel = 'Enter Transaction'

valuein = p_tcode

IMPORTING

answer = p_answer

valueout = p_tcode.

IF sy-subrc <> 0.

ENDIF.

Regards,

Prabhudas