Hi Colleagues,
I am wondering how to extract software products information from SLD.
I need application and version of the product. For example Sap NetWeaver version 7.11.
I read the business systems:
CIMInstancenameList businessSystems = client.enumerateInstanceNames(CIMNames.C_SAP_BusinessSystem);
// get clients for Business Systems
for (final Iterator<?> iterSystems = businessSystems.iterator(); iterSystems.hasNext();) {
final CIMInstancename system = (CIMInstancename) iterSystems.next();
final IBusinessSystemDto dto = new BusinessSystemDto();
list.add(dto);
dto.setName(CIMUtil.getKeyValueByName(system, CIMNames.P_NAME).getValue());
How can I get product information about business systems.
Do I have to get it from the system or from the client or there is another way.
Thank you in advance.
Best Regards,
Dimitar