Custom Record Type Object Subtabs

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

Custom record subtabs are grouped within the subtabs structure. In this structure, you can create as many custom subtabs as needed by specifying a subtab structure for every subtab. The order that you define each subtab determines where they appear on the custom record in the NetSuite UI. The first subtab in the object appears toward the top of the custom record while the last subtab appears toward the bottom.

Each subtab structure contains elements that define it. Translations are not supported by SDF. For more information about the elements that you can specify for a custom record subtab, see the following:

The following example shows two custom subtabs where the second subtab is a child of the first subtab:

          <customrecordtype scriptid="customrecord_sample">
    ...
    <subtabs>
        <subtab scriptid="tab_92_1013519_539">
            <tabparent></tabparent>
            <tabtitle>My Main Subtab</tabtitle>
        </subtab>
        <subtab scriptid="tab_92_1013519_987">
            <tabparent>[scriptid=customrecord_sample.tab_92_1013519_539]</tabparent>
            <tabtitle>My Embedded Subtab</tabtitle>
        </subtab>
     </subtabs>
    ...
</customrecordtype> 

        

For more information about how to specify SDF custom object references, such as the one used in the tabparent element in the example, see Developing SDF Custom Objects.

Related Topics

Custom Record Types as XML Definitions
Custom Record Type Object Custom Fields
Custom Record Type Object Sublists
Custom Record Type Object Permissions
Custom Record Type Object Links
Custom Record Instances

General Notices