Skip to content

Instantly share code, notes, and snippets.

@pritaunk
Created October 22, 2017 17:58
Show Gist options
  • Save pritaunk/913986fbc215b81bdc5fd789eb6e14f1 to your computer and use it in GitHub Desktop.
Save pritaunk/913986fbc215b81bdc5fd789eb6e14f1 to your computer and use it in GitHub Desktop.
Final Project Apex
//*DATA SET UP*created sample records using DML via the execute annonymous window
//stock_item__c stock = new stock_item__c ();
//stock.Item_Name__c = 'chocolate';
//stock.description__c = 'i love chocolate';
//stock.minimum_stock_level__c = 10;
//stock.stock_on_hand__c = 10;
//stock.list_price__c = 50;
//insert stock;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment