RetrieveByResourceResourceGroup Message (CrmService)
![]() |
[Applies to: Microsoft Dynamics CRM 4.0]
| Works for all deployment types | Works online and offline |
Retrieves the resource groups that contain the specified resource.
The relevant classes are specified in the following table.
| Type | Class |
| Request | RetrieveByResourceResourceGroupRequest |
| Response | RetrieveByResourceResourceGroupResponse |
| Entity | resourcegroup |
Remarks
To use this message, pass an instance of the RetrieveByResourceResourceGroupRequest class as the request parameter in the Execute method.
To perform this action, the caller must have access rights on the resource group (scheduling group) entity instance. For a list of required privileges, see RetrieveByResourceResourceGroup Privileges.
Example
The following code example shows how to use the RetrieveByResourceResourceGroup message.
[C#]
// Set up the CRM service.
CrmAuthenticationToken token = new CrmAuthenticationToken();
// You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication.
token.AuthenticationType = 0;
token.OrganizationName = "AdventureWorksCycle";
CrmService service = new CrmService();
service.Url = "http://<servername>:<port>/mscrmservices/2007/crmservice.asmx";
service.CrmAuthenticationTokenValue = token;
service.Credentials = System.Net.CredentialCache.DefaultCredentials;
// Create the column set of attributes to return for each resource group.
ColumnSet colSet = new ColumnSet();
colSet.Attributes = new string[] { "name"};
RetrieveByResourceResourceGroupRequest retrieve =
new RetrieveByResourceResourceGroupRequest();
retrieve.Query = new QueryExpression();
retrieve.Query.ColumnSet = colSet;
retrieve.Query.EntityName = EntityName.resourcegroup.ToString();
// ResourceId is the GUID of the resource to retrieve related resource groups.
retrieve.ResourceId = new Guid("2B951FBC-1C56-4430-B23B-20A1349068F3");
RetrieveByResourceResourceGroupResponse retrieved =
(RetrieveByResourceResourceGroupResponse) service.Execute(retrieve);
[Visual Basic .NET]
' Set up the CRM service.
Dim token As New CrmAuthenticationToken()
' You can use enums.cs from the SDK\Helpers folder to get the enumeration for Active Directory authentication.
token.AuthenticationType = 0
token.OrganizationName = "AdventureWorksCycle"
Dim service As New CrmService()
service.Url = "http://<servername>:<port>/mscrmservices/2007/crmservice.asmx"
service.CrmAuthenticationTokenValue = token
service.Credentials = System.Net.CredentialCache.DefaultCredentials
' Create the column set of attributes to return for each resource group.
Dim colSet As New ColumnSet()
colSet.Attributes = New String() { "name"}
Dim retrieve As New RetrieveByResourceResourceGroupRequest()
retrieve.Query = New QueryExpression()
retrieve.Query.ColumnSet = colSet
retrieve.Query.EntityName = EntityName.resourcegroup.ToString()
' ResourceId is the GUID of the resource to retrieve related resource groups.
retrieve.ResourceId = New Guid("2B951FBC-1C56-4430-B23B-20A1349068F3")
Dim retrieved As RetrieveByResourceResourceGroupResponse = CType(service.Execute(retrieve), RetrieveByResourceResourceGroupResponse)
See Also
Concepts
Reference
© 2010 Microsoft Corporation. All rights reserved.

