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!
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
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??