Is there a way to pull the Last Modified date of a...
# suitescript
x
Is there a way to pull the Last Modified date of a file?
c
Document Search - Last Modified is a result
Copy code
search.create({
   type: "file",
   filters:
   [
   ],
   columns:
   [
      search.createColumn({
         name: "name",
         sort: search.Sort.ASC,
         label: "Name"
      }),
      search.createColumn({name: "modified", label: "Last Modified"})
   ]
})
x
Beautiful. Thanks!
c
No Problem!