Hi guys,
we have the following situation. I have an Programm in ABAP which has a button with the following coding:
EXPORTING
tcode = ‘F110’.
The Function “Z_CALL_TCODE_IN_NEW_WINDOW” has the following Coding
*”———————————————————————-
*”*”Lokale Schnittstelle:
*” IMPORTING
*” VALUE(TCODE) TYPE SY-TCODE
*”———————————————————————-
CALL TRANSACTION tcode.
ENDFUNCTION.
The function is remote ready.
In SAP GUI when I press the Button it opens the transaction F110 in a new window.
In SAP Fiori it does nothing.
Any ideas what I have to do that in Fiori it opens transaction F110 in a new browser tab?
Thank you in advance!!