Show TOC Start of Content Area

Background documentation Simple Configuration Group  Locate the document in its SAP Library structure

Use the following method to create a simple configuration group and to add it to the whole set of groups:

public boolean createSimpleConfigGroup(String groupName, String descriptionID, String description);

The following parameters are available:

·        groupName – the name of the group. The length of this string must not exceed 40 characters, otherwise this group will not be sent to the CCMS.

Note that the name of the group must be unique.

·        descriptionID – description IDs must be unique. The length of the string must not exceed 30 characters.

·        description – a brief explanation about this group

The method returns true if the group is created and added to the whole set of groups successfully, otherwise it returns false.

Example

   boolean result = monitorContext.createSimpleConfigGroup(simpleGroupName, "TEST.SIMPLE.GROUP", "Test simple group");

 

 

End of Content Area