Portal Engine Questions on portal engine and web parts.
Version 5.x > Portal Engine > Bizform customization. View modes: 
User avatar
Member
Member
faysal - 8/18/2010 4:26:08 AM
   
Bizform customization.
Sometime during customization of bizform, we required the bizform table name. We can use following function for this purpose.

public static string GetTableName(string bizFormName, string siteName)
{
BizFormInfo bfi = BizFormInfoProvider.GetBizFormInfo(bizFormName, siteName);
DataClassInfo dci = DataClassInfoProvider.GetDataClass(bfi.FormClassID);
return dci.ClassTableName.ToString();
}

Please try it, it works.

Faysal