How to create multiple dummy records for any table with raw dataSummaryThis document explains how to create multiple dummy records on any table for testing your code, workflow, or functionalities.InstructionsGO to System Definition -> Scripts - Background in your instance and run the following script. Modify the script to your requirements before running. var count = 0;var number = NUMBER_OF_RECORDS; //Enter the number of records to be create here while (count< number) { var rec = new GlideRecord('NAME_OF_THE_TABLE'); //Enter the name of the table hererec.initialize();rec.insert();count++;}