How To Fetch Enum Value Instead oF EnumID through C# code.

Hi All,

Please help to get the Enum Value from Axapta 2009, instead of EnumID.

Here is the method which i use to fetch the enum field from Axapta.

axRecord = ax.CreateAxaptaRecord(“tableName”);
axRecord.ExecuteStmt(“Sqlquery”);

while (axRecord.Found)
{
blMessage.Text = Convert.ToString(axRecord.get_Field(“AccountPlType”));
break;
}

its print the ID of AccountType .// suppose 3 for Balance.

But i need to print the BALANCE instead of 3.

Please help to come out .

Thanks.