cancel
Showing results for 
Search instead for 
Did you mean: 

List of deployed applications

Former Member
0 Kudos

Is there a method, either ABAP or Java, to list deployed Java WebDynpro applications and get related information? I would like information that could build URLs to call webdynpro apps from another webdynpro app.

Thank you

Brian Timothy

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Brian,

There is no special API, but there is one trick for WD Java:


final IWDDeployableObject root = WDDeployableObject
  .getDeployableObject
   ( 
     "sap.com/tc~wd~dispwda" 
   );

final IWDDeployableObject[] all = root
  .isReferencedByObjects();

This way you get list of all deployable objects that refer "sap.com/tcwddispwda" -- in fact, any WD deployment refer it.

Now you may get list of deployable object parts of type WDDeployableObjectPartType.APPLICATION.

Valery Silaev

EPAM Systems

http://www.NetWeaverTeam.com

P.S. Call to list all deployable objects is quite time/resource consuming. Also in ceratin SPs not started deployable objects may cause this method to fail.

Answers (0)