{"id":733,"date":"2021-09-08T08:36:13","date_gmt":"2021-09-08T08:36:13","guid":{"rendered":"https:\/\/www.saturotech.com\/blog\/?p=733"},"modified":"2024-03-18T19:34:07","modified_gmt":"2024-03-18T19:34:07","slug":"netsuite-suitescript-2-x-scheduled-script","status":"publish","type":"post","link":"https:\/\/saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/","title":{"rendered":"Netsuite SuiteScript 2. x &#8211; Scheduled Script"},"content":{"rendered":"\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image.jpeg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg\" alt=\"\" class=\"wp-image-734\" srcset=\"https:\/\/saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg 1024w, https:\/\/saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-300x169.jpeg 300w, https:\/\/saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-768x432.jpeg 768w, https:\/\/saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1536x864.jpeg 1536w, https:\/\/saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image.jpeg 1600w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of data\/records.&nbsp;<\/p>\n\n\n\n<p>These scripts can be used to submit once that will be used for processing in the future on a recurring basis and also can be used to submit on-demand scripts to the deployment record or to submit from another script using an API.&nbsp;<\/p>\n\n\n\n<p>For example, this script can be used to:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>log some basic information on a recurring basis<\/li><li>schedule the script execution for maintenance<\/li><li>create and update or remove temporary records<\/li><li>asynchronous execution of a script within another server script<\/li><li>trigger another schedule script<\/li><li>send data to a&nbsp;suitelet<\/li><li>send data to a&nbsp;restlet.<\/li><li>trigger user events on a record.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/li><\/ul>\n\n\n\n<p><strong>Note:<\/strong>&nbsp;A&nbsp;governance limit&nbsp;for every&nbsp;scheduled script instance&nbsp;is&nbsp;of&nbsp;a maximum of&nbsp;10,000 usage units.&nbsp;<\/p>\n\n\n\n<p><strong>Scheduled scripts can be executed in below contexts:<\/strong>&nbsp;<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>scheduled \u2013 normal execution according to the deployment options specified in the UI.<\/li><li>ondemand&nbsp;\u2013 the script is executed using a scheduled&nbsp;API.<\/li><li>userinterface&nbsp;\u2013 the script is executed via the UI (On click of the Save &amp; Execute button).&nbsp;<\/li><li>aborted \u2013 re-executed automatically immediately after an aborted execution (system went down during execution).<\/li><li>skipped \u2013 executes automatically immediately after a downtime during which the script should have been executed.&nbsp;<\/li><\/ol>\n\n\n\n<p><strong>Schedule Script Example:<\/strong>&nbsp;<\/p>\n\n\n\n<p>Update the memo field on sales orders returned from the saved search.&nbsp;<\/p>\n\n\n\n<p>&nbsp; \/**&nbsp;<\/p>\n\n\n\n<p>&nbsp;*@NApiVersion&nbsp;2.x&nbsp;<\/p>\n\n\n\n<p>&nbsp;*@NScriptType&nbsp;ScheduledScript&nbsp;<\/p>\n\n\n\n<p>&nbsp;*\/&nbsp;<\/p>\n\n\n\n<p>define([&#8216;N\/record&#8217;, &#8216;N\/search&#8217;],&nbsp;&nbsp;<\/p>\n\n\n\n<p>function(record, search) {&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; function execute(scriptContext) {&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; &nbsp;var&nbsp;searchObj&nbsp;=&nbsp;search.load({ id: &#8216;customsearch_reverseChargeSales&#8217; }) \/\/load the saved search&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; searchObj.run().each(function(result){&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; var&nbsp;soId&nbsp;=&nbsp;record.submitFields({&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; type:&nbsp;record.Type.SALES_ORDER,&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; id: result.id,&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; values: {&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; memo: &#8216;Reverse Charge&#8217;&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; }&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; });&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp; });&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp; }&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; return {&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; execute: execute&nbsp;<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; };&nbsp;<\/p>\n\n\n\n<p>});&nbsp;<\/p>\n\n\n\n<p><strong>Steps to create Scheduled&nbsp;Scripts:<\/strong>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Step 1: create a file in&nbsp;javascript<\/li><li>Step 2: Go to Customization -&gt;Scripting -&gt; Scripts -&gt; New -&gt; Upload File.&nbsp;<\/li><li>Step 3:&nbsp;Create a new Script Record using the file.&nbsp;<\/li><li>Step 4: Enter Name, ID and populate other fields as per need.&nbsp;<\/li><li>Step 5: Click&nbsp;the buttons&nbsp;named&nbsp;Save and Deploy&nbsp;<\/li><li>Step 6: Update the&nbsp;title if&nbsp;you want&nbsp;and enter&nbsp;the&nbsp;id&nbsp;<\/li><li>Step 7: Set&nbsp;the values in&nbsp;the&nbsp;status,&nbsp;log level&nbsp;and&nbsp;priority&nbsp;<\/li><li>Step 8: Schedule the Script&nbsp;through&nbsp;Schedule TAB options.&nbsp;<\/li><li>Step 9: Save.&nbsp;<\/li><\/ul>\n\n\n\n<p><strong>Learn More: Scheduled Script<\/strong><\/p>\n\n\n\n<p>To Know more about NetSuite Cloud ERP, feel free to reach us on: <\/p>\n\n\n\n<p><strong>Website:<\/strong>\u202f<a rel=\"noreferrer noopener\" href=\"http:\/\/saturotech.com\/\" target=\"_blank\">https:\/\/saturotech.com\/<\/a><\/p>\n\n\n\n<p><strong>Email ID:<\/strong><a rel=\"noreferrer noopener\" href=\"mailto:info@saturotech.com\" target=\"_blank\">sales@saturotech.com<\/a><\/p>\n\n\n\n<p><strong>Contact No:<\/strong> +91 844-844-8939 (&amp; Press 3) <\/p>\n\n\n\n<p><strong><strong>You may also be interested&nbsp;in&nbsp;reading this:<\/strong><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=508\" target=\"_blank\">Suite Script 2.0<\/a><\/strong><\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.saturotech.com\/blog\/?p=525\" data-type=\"URL\" target=\"_blank\" rel=\"noreferrer noopener\">How to handle Tax Collection at Source (TCS) in NetSuite<\/a><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=546\" target=\"_blank\">NetSuite for Manufacturing Business Processes<\/a><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=560\" data-type=\"URL\" data-id=\"https:\/\/www.saturotech.com\/blog\/?p=560\" target=\"_blank\">Understanding SUITELET 2. x Basics<\/a><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=579\" data-type=\"URL\" data-id=\"https:\/\/www.saturotech.com\/blog\/?p=579\" target=\"_blank\">Billing Schedule in NetSuite<\/a><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=585\" target=\"_blank\">Bank Reconciliation In NetSuite By Import<\/a><\/strong><\/p>\n\n\n\n<p><strong><a rel=\"noreferrer noopener\" href=\"https:\/\/www.saturotech.com\/blog\/?p=654\" target=\"_blank\"><strong>Vendor Prepayments in NetSuite<\/strong>&nbsp;<\/a><\/strong><\/p>\n\n\n\n<p><strong><a href=\"https:\/\/www.saturotech.com\/blog\/?p=723\" target=\"_blank\" rel=\"noreferrer noopener\"><strong><a href=\"https:\/\/www.saturotech.com\/blog\/?p=723\">Marketing Campaign and Marketing Template<\/a><\/strong>\u00a0<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of data\/records.&nbsp; These scripts can be used &hellip; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-733","post","type-post","status-publish","format-standard","hentry","category-cloud-computing"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Netsuite SuiteScript 2. x - Scheduled Script<\/title>\n<meta name=\"description\" content=\"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Netsuite SuiteScript 2. x - Scheduled Script\" \/>\n<meta property=\"og:description\" content=\"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/\" \/>\n<meta property=\"og:site_name\" content=\"NetSuite Blog | Saturotech\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/saturotech\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-09-08T08:36:13+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-18T19:34:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/#\\\/schema\\\/person\\\/ccef02e83e22a41c4d0df8720fe7b70e\"},\"headline\":\"Netsuite SuiteScript 2. x &#8211; Scheduled Script\",\"datePublished\":\"2021-09-08T08:36:13+00:00\",\"dateModified\":\"2024-03-18T19:34:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/\"},\"wordCount\":607,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/image-1024x576.jpeg\",\"articleSection\":[\"Cloud Computing\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/\",\"url\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/\",\"name\":\"Netsuite SuiteScript 2. x - Scheduled Script\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/image-1024x576.jpeg\",\"datePublished\":\"2021-09-08T08:36:13+00:00\",\"dateModified\":\"2024-03-18T19:34:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/#\\\/schema\\\/person\\\/ccef02e83e22a41c4d0df8720fe7b70e\"},\"description\":\"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/image-1024x576.jpeg\",\"contentUrl\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/09\\\/image-1024x576.jpeg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.saturotech.com\\\/blog\\\/netsuite-suitescript-2-x-scheduled-script\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Netsuite SuiteScript 2. x &#8211; Scheduled Script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/\",\"name\":\"NetSuite Blog | Saturotech\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/saturotech.com\\\/blog\\\/#\\\/schema\\\/person\\\/ccef02e83e22a41c4d0df8720fe7b70e\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g\",\"caption\":\"admin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Netsuite SuiteScript 2. x - Scheduled Script","description":"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/","og_locale":"en_US","og_type":"article","og_title":"Netsuite SuiteScript 2. x - Scheduled Script","og_description":"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of","og_url":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/","og_site_name":"NetSuite Blog | Saturotech","article_publisher":"https:\/\/www.facebook.com\/saturotech\/","article_published_time":"2021-09-08T08:36:13+00:00","article_modified_time":"2024-03-18T19:34:07+00:00","og_image":[{"url":"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#article","isPartOf":{"@id":"https:\/\/saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/"},"author":{"name":"admin","@id":"https:\/\/saturotech.com\/blog\/#\/schema\/person\/ccef02e83e22a41c4d0df8720fe7b70e"},"headline":"Netsuite SuiteScript 2. x &#8211; Scheduled Script","datePublished":"2021-09-08T08:36:13+00:00","dateModified":"2024-03-18T19:34:07+00:00","mainEntityOfPage":{"@id":"https:\/\/saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/"},"wordCount":607,"commentCount":0,"image":{"@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#primaryimage"},"thumbnailUrl":"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg","articleSection":["Cloud Computing"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/","url":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/","name":"Netsuite SuiteScript 2. x - Scheduled Script","isPartOf":{"@id":"https:\/\/saturotech.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#primaryimage"},"image":{"@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#primaryimage"},"thumbnailUrl":"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg","datePublished":"2021-09-08T08:36:13+00:00","dateModified":"2024-03-18T19:34:07+00:00","author":{"@id":"https:\/\/saturotech.com\/blog\/#\/schema\/person\/ccef02e83e22a41c4d0df8720fe7b70e"},"description":"Scheduled scripts are server-side scripts in NetSuite that are processed with&nbsp;SuiteCloud&nbsp;Processors to process a&nbsp;large&nbsp;number&nbsp;of","breadcrumb":{"@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#primaryimage","url":"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg","contentUrl":"https:\/\/www.saturotech.com\/blog\/wp-content\/uploads\/2021\/09\/image-1024x576.jpeg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.saturotech.com\/blog\/netsuite-suitescript-2-x-scheduled-script\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/saturotech.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Netsuite SuiteScript 2. x &#8211; Scheduled Script"}]},{"@type":"WebSite","@id":"https:\/\/saturotech.com\/blog\/#website","url":"https:\/\/saturotech.com\/blog\/","name":"NetSuite Blog | Saturotech","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/saturotech.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/saturotech.com\/blog\/#\/schema\/person\/ccef02e83e22a41c4d0df8720fe7b70e","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b574bd0e20944dbebcaded909cc2824ee60418212541e4eb26700e2728c65ff0?s=96&d=mm&r=g","caption":"admin"}}]}},"_links":{"self":[{"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/posts\/733","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/comments?post=733"}],"version-history":[{"count":3,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/posts\/733\/revisions"}],"predecessor-version":[{"id":1378,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/posts\/733\/revisions\/1378"}],"wp:attachment":[{"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/media?parent=733"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/categories?post=733"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/saturotech.com\/blog\/wp-json\/wp\/v2\/tags?post=733"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}