Obtain a sortable version of a given company name.

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

Syntax

C#
public static string GetCompanySortName(
	IiMISUser boUser,
	string companyName
)
Visual Basic
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