cancel
Showing results for 
Search instead for 
Did you mean: 

Descriptor Editor in manifest.json

Former Member
0 Kudos

Hi All,

I am creating a custom Fiori App inside SAPUI5 cloud platform(SAP Web IDE Full-Stack). I have selected my project (Project-> Project Type ) as a SAP Fiori. When I am trying to create manifest.json file , system is not able to show Descriptor editor, though under preferences it has set as a Descriptor editor.

Accepted Solutions (1)

Accepted Solutions (1)

maheshpalavalli
Active Contributor

Hi Shrikant Zambre,

manifest.json should have some basic data inside for the Descriptor editor to work.

{
	"sap.app": {
		"_version": "1.3.0",
		"type": "application",
		"applicationVersion": {
			"version": "${project.version}"
		}
	}
}

https://help.sap.com/doc/saphelp_nw751abap/7.51.0/de-DE/74/038a52dcd7404e82b38be6d5fb1458/frameset.h...

You can copy from the above url.

If you generate the fiori app from template then all that above code and some other important code will be auto generated which will be really helpful to you.

BR,

Mahesh

Former Member
0 Kudos

Hi Mahesh,

Thanks for quick response but 'Descriptor editor' option itself is not available though I have insert some basic data inside manifest.json file.

maheshpalavalli
Active Contributor
0 Kudos

Can you put the screenshot of the project and the file..

You can also try this if you wan to, just create a folder directly in the project explorer and then create a file manifest.json inside it and copy paste the below code

{
	"sap.app": {
		"type": "application",
		"applicationVersion": {
			"version": "1.0.0"
		}
	}
}

Close the manifest.json and open it again, you will see the two tabs below

BR,

Mahesh

Former Member
0 Kudos

Thank, I just added basic details and then Descriptor editor able to see now.

Answers (1)

Answers (1)

former_member629938
Discoverer
0 Kudos

Iam also facing the issue.

Initally not able to see the descriptor editor. need to maintain some testcode in manifet.json. once save close the file in webide. again open the file then we can get to see the Descriptor.

Hope you issue resolve..

Thanks Hari