cancel
Showing results for 
Search instead for 
Did you mean: 

How to specify that an app (in launchpad) uses always a special version?

dominik_auras
Participant
0 Kudos

Hi,

I have created several apps for a customer.

Now I have to guarantee that these apps will run and stay stable in his launchpad in the case he is upgrading his UI5 version (everything on SAP Netweaver).

Is it possible to say that a single tile (or app) should always use a special version in the launchpad?

Thanks,

Dominik

Accepted Solutions (0)

Answers (2)

Answers (2)

dominik_auras
Participant
0 Kudos

Stll need a solution for this!

Former Member
0 Kudos

Hi,

You can try

src="/sap/public/bc/ui5_ui5/1.18/resources/sap-ui-cachebuster/sap-ui-core.js"

if you are trying to use 1.18 version  to entire app

Thanks,

Pradeep

dominik_auras
Participant
0 Kudos

Hi,

sorry, but this is if you use an index file.

But in general you should use the Component.js in Launchpad.

Is there any solution when using Component.js ?!

Thanks,

Dominik

Former Member
0 Kudos

Hi,

You can able to define the min version that can be used to develop your web application.

For sample template:

Creating a Descriptor File for Existing Apps

and http://help.sap.com/saphelp_hanaplatform/helpdata/en/01/87ea5e2eff4166b0453b9dcc8fc64f/content.htm

You can try to configure the SDK in the component.js metadata:

"sap.ui5": {

  "_version": "1.1.0",

  "rootView": {

  "viewName": "com.view.main",

  "type": "XML"

  },

  "dependencies": {

"minUI5Version": "1.30.0",

  "libs": {

  "sap.ui.core": {},

  "sap.m": {},

  "sap.ui.layout": {}

  }

  }

Thanks,

Pradeep

dominik_auras
Participant
0 Kudos

I need a MAX version ... not min version! (See my first question)

Former Member
0 Kudos

I guess "maxUI5Version" doesn't exist, since launchpad is addon over UI5. Once the backend is updated it will gets reflected over UI5 version too

dominik_auras
Participant
0 Kudos

yeah, i know ...

but isn't there any possibility to control the uses version for Component.js like it is in index.html?

it can't be true that you have to keep your (many) apps up to date or to force your customers to stay on a specific version with their launchpads just because your apps don't support a higher version ..... I don't believe that -.-