Given the tableName (really the general look up table Table Name) and the Code returns the description.

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

Syntax

C#
public string GetLookupDescription(
	string tableName,
	string code
)
Visual Basic
Public Function GetLookupDescription ( _
	tableName As String, _
	code As String _
) As String
Visual C++
public:
String^ GetLookupDescription(
	String^ tableName, 
	String^ code
)

Parameters

tableName
Type: System..::..String
The name of the General Lookup Table "table" for which values are desired.
code
Type: System..::..String
The Code column value in the General Lookup Table. Note that this value is case sensitive.

Return Value

A string containing the description associated with the code and table name.

See Also