cancel
Showing results for 
Search instead for 
Did you mean: 

Fiori Launchpad plugin local test in WebIDE

12-13-2019 4:44 PM
xyla Participant
1045 views 2 comments
0 Likes
SAP Managed Tags
Subscribe

Hello all,

can anyone tell me how to configure a FLP sandbox in WebIDE to run a plugin? I managed to do this for the apps, but can't find any documentation on how to do this for a plugin.

So my fioriSandboxConfig.json looks like below. How should the additional configuration for a plugin look like?

{
	"applications": {
		"SO1-Display": {
			"additionalInformation": "SAPUI5.Component=com.app1",
			"applicationType": "URL",
			"url": "../../app1",
			"description": "App1",
			"title": "App1"
		},
		"SO2-Display": {
			"additionalInformation": "SAPUI5.Component=com.app2",
			"applicationType": "URL",
			"url": "../../app2",
			"description": "App2",
			"title": "App2"
		}
	}
}

BR,

Szilamer

0 Likes
View Entire Topic
xyla
Participant

I found the solution...maybe it will be of help to someone.

{
	"applications": {
          ...
        },
	"bootstrapPlugins": {
		"yourtplugin": {
			"component": "com.yourplugin",
			"url": "../../yourplugin"   /*relative path to your plugin from the fioriSandboxConfig.json */
		}
	}
}
martinc_mb38
Participant
0 Likes
Thanks, it helped me!