The OnixS::ICE::BOE::Messaging::SbeGroup class provides access to repeating group entries. The OnixS::ICE::BOE::Messaging::SbeGroupEntry class provides access to repeating group entry fields.
To get/set a field value of a repeating group entry, use the corresponding method of the strongly typed repeating group entry class.
Example
IpRequest request;
const UInt8 GroupSize = 2;
auto users = request->users(GroupSize);
users[0].userId("004");
users[1].userId("005");
const auto id = users[0].userId();
const auto id2 = users[1].userId();
for (auto iter = users.begin(); iter != users.end(); ++iter)
std::cout << "id=" << (*iter).userId() << std::endl;