Aly
03/18/2025, 8:13 PMCeligo AI
03/18/2025, 8:13 PMAI generated answer (using internal Slack threads):To hide the child records subtab on the grant record NFP product, you can use a client script. However, if the subtab does not exist on the custom record, it might be a bit tricky to find the ID of the subtab. Here are a few methods you can try: 1. Set a value for any field on the line level in that tab and save the record. After saving the record, you can add
&xml=Tjavascript
function pageInit(type){
    if(type == 'create' || type == 'edit'){
        var currentForm = nlapiGetFieldValue('customform');
        if(currentForm == 'your_form_id'){
            nlapiGetLineItemField('recmachcustrecord_your_field_id', 'custrecord_your_field_id', 1).setDisplayType('hidden');
        }
    }
}'your_form_id''custrecord_your_field_id'Celigo AI
03/18/2025, 8:14 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.854144216
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.834289312
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830016
Celigo AI
03/18/2025, 8:14 PM