then pass that to your func call like: ```var item...
# suitescript
a
then pass that to your func call like:
Copy code
var itemSearchObj = search.create({
	    		type: "item",
	    		filters: filters,
	    	  columns: [
	    	      search.createColumn({
	    	         name: "itemid",
	    	         summary: "GROUP"
	    	      }),
	    	      search.createColumn({
	    	         name: "internalid",
	    	         join: "transaction",
	    	         summary: "GROUP",
	    	         sort: search.Sort.ASC
	    	      }),
	    	      search.createColumn({
	    	         name: "tranid",
	    	         join: "transaction",
	    	         summary: "GROUP"
	    	      })
	    	   ]
	    	});