JumpEntity

Hyperlinks the field in view mode to an entity summary screen.

The entity must be relevant to the field. The ID field of the entity must exist in the table or view on which the summary screen is based. This property is only useful when the summary screen is based on a view that contains fields from multiple tables.

Values

This property accepts one of the following entity names:

  • Company
  • Person
  • Communications
  • Case
  • Opportunity
  • Solution
  • Address
  • Library
  • Notes
Example

c = CRM.GetContextInfo('company','Comp_CompanyId');
CompanyRec = CRM.FindRecord('company','Comp_CompanyId='+c);
userLevel = CRM.GetContextInfo('user','User_Per_Admin');

// Start with the company entry screen.
CompanyBlock = CRM.GetBlock('companyboxlong')

// Jump from comp_name to company.
name = CompanyBlock.GetEntry('comp_name');
name.JumpEntity = 'Company';
CRM.AddContent(CompanyBlock.Execute(CompanyRec));
Response.Write(CRM.GetPage());

Hyperlinks the comp_name field to the company summary screen.