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 SAP fiori app from SAP ECC transaction

dipak_khatavkar
Participant
0 Kudos

Hi Expert,

I want to call fiori application link from SAP ECC on action click in table entries to open fiori app with selected entries for the notification.

So please can you suggest how we can call fiori app from ECC transaction.

Thanks in Advance

Dipak

3 REPLIES 3

roberto_vacca2
Active Contributor
0 Kudos

Hi.

you can launch a Fiori Application via a direct URL.

To launch a direct URL from a transaction you can simply create a transaction with dynpro  like this:

data ld_url(1000).

ld_url = 'http://<fiori_app_url>'.

CALL FUNCTION 'CALL_BROWSER'

EXPORTING

url = ld_url.

Hope to help

Bye

0 Kudos

Hi Roberto,

Thanks for reply. i have already used this FM to call url..but user wants to open notifcation fiori app with selected inputs.

is there any way to open particular fiori app from ECC ?

0 Kudos

Hi.

I  suppose these inputs will feed your User Interface elements in Fiori Application.

Once you've created Data Model in SAP and binded to front end UI elements, you should pass an URL filtered like this:

http://GatewayHost/sap/opu/odata/sap/ZPURCHASEORDER/PurchaseOrderset/?filter=PurchNumber EQ '001231312'

You can make a test looking at URL  in a simple navigation through your Fiori Application .

Put some screenshots here if you want.

Hope to help

Bye