SQLソースが使用されている場合、ユーザーのフルネームの取得を含むように回答が編集されました。
パラメーター UserID をデフォルト値として登録します。
=ユーザー!ユーザーID
データセットで次のクエリを使用します
ドメイン名、フルネームを選択
FROM SystemUserBase
WHERE (ドメイン名 = @ユーザー ID)
次に使用します
=フィールド!フルネーム.値
あなたのレポートで。
CRM では、ユーザー データは SystemUserBase テーブルに格納されます。DomainName 列は、レポートの User!UserID に格納されている実際のDomain\Usernameです。ビューを使用したい場合は、 SystemUserBaseテーブルの代わりにFilteredSystemUserビューを使用してください。
fetchxml については、以下を試してください: operator operator='eq-userid'は、現在のユーザーと等しいことを意味します。
<fetch version='1.0' output-format='xml-platform' mapping='logical' distinct='true'>
<entity name='team'>
<attribute name='name' />
<attribute name='businessunitid' />
<attribute name='teamid' />
<order attribute='name' descending='false' />
<link-entity name='teammembership' from='teamid' to='teamid' visible='false' intersect='true'>
<link-entity name='systemuser' from='systemuserid' to='systemuserid' alias='user'>
<attribute name='fullname' />
<attribute name='systemuserid'/>
<filter type='and'>
<condition attribute='systemuserid' operator='eq-userid' />
</filter>
</link-entity>
</link-entity>
</entity>
</fetch>
次に、レポートで次のコードを式で使用して、ユーザーのフルネームを取得できます
=First(Fields!user_fullname.Value, "GetUserData")
ここで、データセットはGetUserDataと呼ばれます