Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the name of the menu item that links to information on a website about a table record that is listed in the search results in Enterprise Portal for Microsoft Dynamics AX.
Syntax
public str searchLinkRefName()
Run On
Called
Return Value
Type: str
A string that specifies the name of the menu item.
Remarks
Use table properties to set the SearchLinkRefName property for a table. To access the table properties in the AOT, right-click the table, and then click Properties.
Examples
The following example shows a call to the searchLinkRefName method.
static public void Main(Args _args)
{
DictTable dt;
str name;
dt = new DictTable(tablenum(CustTable));
name = dt.searchLinkRefName();
}