< Back

Get-CrmEntityDisplayName

Sat Jan 18, 2020 3:59 pm

NAME Get-CrmEntityDisplayName



SYNOPSIS

Retrieves Display Name for an Entity.





SYNTAX

Get-CrmEntityDisplayName [-conn <CrmServiceClient>] [-EntityLogicalName] <String> [<CommonParameters>]





DESCRIPTION

The Get-CrmEntityDisplayName cmdlet lets you retrieve Display Name for an Entity.





PARAMETERS

-conn <CrmServiceClient>

A connection to your CRM organization. Use $conn = Get-CrmConnection <Parameters> to generate it.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-EntityLogicalName <String>

A logicalname for Entity. i.e.)account, contact, lead, etc..



Required? true

Position? 1

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS









NOTES









-------------------------- Example 1 --------------------------



Get-CrmEntityDisplayName -conn $conn -EntityLogicalName account



This example retrieves Display Name for Account Entity.







Account



-------------------------- Example 2 --------------------------



Get-CrmEntityDisplayName incident



This example retrieves Display Name for Incident Entity by omitting parameter names.

When omitting parameter names, you do not provide $conn, cmdlets automatically finds it.







Case





RELATED LINKS