Account Onboarding - Global Script Include - Optional step for data loading from file to tableIn the Account Lifecycle Events application, data can be imported from Microsoft Excel files into standing tables in two ways: Global Script Include Scoped App Script Include (already included along with the application) Global Script include is an OOTB approach and the performance is relatively faster than the scoped app script include. This script when added takes preference over the scoped app script when loading the excel data to the staging table. Global Script Include: To add the global script include, few steps must be followed: Download AccountONBImportSetLoader.xml to your computerLog in to the instance as a user with the 'admin' roleIn the Application Navigator, navigate to System Definition > Scripts - Background Copy the following and run the following script to delete the old AccountONBImportSetLoader.xml var accONBUtil = new GlideRecord('sys_script_include'); if(accONBUtil.get('58a61b8b43122110ec0553c0bcb8f2e3')) { accONBUtil.sys_policy = ''; accONBUtil.update(); accONBUtil.deleteRecord(); } Once finished, in the Application Navigator, navigate to System Definition > Script IncludesFrom any of the list header menus select Import XML 7.Select the file you downloaded and click Upload. 8. In the Application Navigator, navigator to System Definition > Script Includes. 9. Once the list has loaded, verify that AccountONBImportSetLoader is present NOTE: After the script is imported, the global script will load the data from excel to the staging table.