<@UAKQK9FC6> I always thought there should be a cu...
# suitescript
z
@burkybang I always thought there should be a custom record saved search for that, but I haven’t really found anything.
n
Copy code
var customRecordSearch= search.create({
                type: "customrecordtype",
                filters: ['isinactive', 'is', false],
                columns: ['scriptid', 'name']
            });
var res= customRecordSearch.run();
var results = res.getRange({
    start: 0, 
    end: 10
});
🎖️ 1