Obtain a sortable version of a given company name.

Namespace:  Asi.iBO.ContactManagement
Assembly:  Asi.iBO (in Asi.iBO.dll) Version: 15.1.2.0

Syntax

C#
public static string GetCompanySortName(
	IiMISUser BOUser,
	string companyName
)
Visual Basic (Declaration)
Public Shared Function GetCompanySortName ( _
	BOUser As IiMISUser, _
	companyName As String _
) As String
Visual C++
public:
static String^ GetCompanySortName(
	IiMISUser^ BOUser, 
	String^ companyName
)

Parameters

BOUser
Type: Asi.iBO..::.IiMISUser
The user object to use if the database is accessed.
companyName
Type: System..::.String
The string to be processed

Return Value

A version of the input string formatted according to either the custom stored procedure's rule or those of the default processing.

Remarks

If a stored procedure named sp_asi_GetCompanySortCustom exists in the database, then it will be used instead of the default sp_asi_GetCompanySort stored procedure.

See Also