cancel
Showing results for 
Search instead for 
Did you mean: 

Extract software product information from SLD

Former Member
0 Kudos

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

Accepted Solutions (0)

Answers (1)

Answers (1)

sunny_pahuja2
Active Contributor
0 Kudos

Hi,

Whatever business system you have registered in your central SLD, that information you can get it by logging to SLD.

Thanks

Sunny