Custom Record Type Object Links

In SuiteCloud Development Framework (SDF), custom record type object links are defined in a custom record type object.

Custom record type links are grouped within the links structure. In this structure, you can create as many custom links as needed by specifying a link structure for every link. The order that you define each link determines where they appear on the link category in the NetSuite UI.

Each link structure contains elements that define it. The linkcategory element represents a combination of the Center and Section columns in the NetSuite UI. For more information about the elements that you can specify for a link, see link.

The following example shows three types of links that appear in the Reports section of the Classic Center:

          <customrecordtype scriptid="customrecord_sample">
    ...
    <links>
        <link>
            <linkcategory>BASICREPORTSCUSTOM</linkcategory>
            <linklabel>Edit Samples</linklabel>
            <linktasktype>EDIT</linktasktype>
        </link>
        <link>
            <linkcategory>BASICREPORTSCUSTOM</linkcategory>
            <linklabel>List Samples</linklabel>
            <linktasktype>LIST</linktasktype>
        </link>
        <link>
            <linkcategory>BASICREPORTSCUSTOM</linkcategory>
            <linklabel>Search Samples</linklabel>
            <linktasktype>SRCH</linktasktype>
        </link>
    </links>
    ...
</customrecordtype> 

        

Related Topics

General Notices