Example: lr.group_name

The following example retrieves the group name, checks its validity, and sends it to the output.

string groupname=lr.group_name;

if(groupname==null)

lr.output_message("Failed to get the group name");

else

lr.output_message("Group Name = " + groupname);