I’m writing this blogpost to be helpful for someone like me who are migrating their projects from SAP WEBIDE to BAS. I’ll be updating this BLog as and when I learn something new in BAS and find solutions for problems in migration.
- Run your app in a specific version from Cloud foundary Launchpad
If your app is in cloud but backend is on-premise, you may want to run your app in specific version. To do this. Add this code in the manifest.json above “sap.ui5”.
"sap.platform.cf": {
"ui5VersionNumber": "1.71.33"
},
"sap.ui5": {
2. Metadata 404 from CF launchpad
If you application is on the cloud foundary but data is in on-premise ABAP systems,if CF apps are not able to laod metadata change the relative path of the service url in manifest. instead on “/sap/opu/odata” change to “sap/opu/odata”
3. Apps not appearing in launchpad after migration
You might have missed to add launchpad configuration . Add this code in the terminal
terminal->new terminal from the menu
npx fiori add flp-config
specify semantic object action and title
4. Navigation parameters for Deployed apps
I read in anotehr blog that you require these roles to perform an edit of launchpad configuration. I havent tried these myself. But just in case if you want to check this might help you.
If you dont have these roles of if this doesnt work, Add it in the manifest as below in the semantic object
"parameters": {"Transactiontype": {"defaultValue": {"value": "4"}}
5. Some help with the tool
- Add fiori launchpad deploy configuration -npx fiori add flp-config
- View->Run command->Consume SAP Services- to add odata
- Help-welcome-Welcome Screen
- View-run command-application info( for adding deployment config, deploy, undeploy application etc)
- Manifest.json->right click->open service manager to view services and refresh metadata
6. App structure for successful Job running from SAP CI/CD
Ensure all the files in githhub are in the root and not inside a folder. Only if the mta.yaml is in the root, CI/CD will be invoked. Set up webhook in github to trigger CI/CD after every push
7.Apps not showing up in launchpad/HTML5 applications after deployment
In this case check if npx fiori add flp-config is doen for ur app and also check if the below code is present in manifest.json
"sap.cloud": {
"public": true,
"service": "<App name in cloud>"
}
8.Change siteid in launchpad site
Click on 3 dots in ur launchpad site Manage launchpad alias, give it a name.ID will change to that name
Help LInks
Troubleshooting
Fix the Application References to Data Sources – SAP Help Portal
Migrate SAP Fiori projects from SAP Web IDE to SAP Business Application Studio | SAP Blogs
Launchpad config tutorial
Integrate Your App into Your Portal Site (Cloud Foundry) | Tutorials for SAP Developers
Add navigation Manually
https://sapui5.hana.ondemand.com/1.50.5/docs/topics/be0cf40f61184b358b5faedaec98b2da.html
This is not the end. I’ll add to this when I find more tips . Thanks for reading!