cancel
Showing results for 
Search instead for 
Did you mean: 

Standard BSP Application

Former Member
0 Kudos

Hello Everyone,

I am trying to extend a predefined SAPUI5 app but before doing so I am trying to test the existing one. the application is my timesheet and the name of the application is hcm_ts_cre. The problem here is when I go to transaction se80 and right click on my application to test it. It says,

The reason is quite simple which is that this application doesn't have an index page i.e. Pages with logic Flow.

Is there any way I can run this file or how do I find the index page to test it.

I have also shared my project with the ABAP repository using Eclipse and after retrieving the code, for obvious reasons I am not able to run the application.

The situation is same with other BSP applications such as HCM_TS_APV , HCM_LR_APV and HCM_LR_CRE

Accepted Solutions (1)

Accepted Solutions (1)

former_member182372
Active Contributor
0 Kudos

bsp usually has just component.js no index.html, so the only way to test is either create index.html or through FLP

Former Member
0 Kudos

Maksim,

     Thank you for your reply, but my ultimate goal is to extend that fiori app such that I want to run this application using eclipse and then extend it. I can create an index.html on my own but I don't know the logic flow of this application. Is there any way I can do that?

former_member182372
Active Contributor
0 Kudos

you can use the component using component container

new sap.ui.core.ComponentContainer({

   name : 'xxx.yyy'
})

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi saumil,

Check sap note 2103156 is implemented,if yes you can launch standalone apps by Running an Application Standalone - User Interface Add-On for SAP NetWeaver - SAP Library

Regards

Naveen S

Former Member
0 Kudos

Hi Naveen,

     Thank you for the reply. Using the above link I can successfully run it on Fiori Launchpad Portal however I want to run it using eclipse and for that to happen I must implement index.html file. Do you have any idea on how to do that?