cancel
Showing results for 
Search instead for 
Did you mean: 

Catch deployment date

Former Member
0 Kudos

Hello to all!!

How can we catch the deployed date and time of an application?? I want to show it to the user!!

Thanks a lot!

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

I tried that and it really gives the date but also with some other text... is there a way to find exactly the date and time of deployment alone??

Former Member
0 Kudos

Hi,

Have you tried this

Ex:

IWDDeployableObject obj = WDDeployableObject.getDeployableObject("sap.com/tcwddispwda");

String str = obj.getVersionCounter();

wdComponentAPI.getMessageManager().reportSuccess(str);

String str1 = obj.getVersionInfo();

wdComponentAPI.getMessageManager().reportSuccess(str1);

OR

IWDDeployableObject obj = wdComponentAPI.getDeployableObjectPart().getDeployableObject();

String str = obj.getVersionCounter();

wdComponentAPI.getMessageManager().reportSuccess(str);

String str1 = obj.getVersionInfo();

wdComponentAPI.getMessageManager().reportSuccess(str1);

Regards

Ayyapparaj