How to Create an S-Drive Custom File Object using Salesforce Object Manager (using Spreadsheet)

Instead of creating a custom object from scratch, and creating each custom field one-by-one, you can use a spreadsheet to create custom objects. This can be used for creating custom file objects for S-Drive.

After creating a custom file object, you will need to give profile permissions (CRUD) and field accessibility. Be sure to allow read/write access to all fields in order to use all S-Drive features.

To create your custom file object:

  1. Login to your Salesforce account, and navigate to Setup.

  2. From Setup, select “Object Manager” and see the top right icon for “Create”, and select “Custom Object from Spreadsheet” option.

     

  3. The option will open a new tab in your browser, and ask for your credentials (even though you are logged in to your Salesforce organization). Choose either “Log in with Salesforce” or “Log in with Sandbox” as appropriate.



  4. Create a spreadsheet to include all the custom field names. Here is a screenshot from the template we provide:


    In the screenshot, you can see that the field names are provided in the first row.

    You can also provide 4-5 rows of data for object creator to understand the field type from the spreadsheet. For example, for Checkbox fields, provide data as “YES” and “NO”, for Number fields, provide numbers, and for Long Text Area fields, populate it with more than 255 characters.

    The Formula fields (File Size) and the Lookup/Master-Detail relationships are not present in the template and must be created after the object creation as a manual step. (See Step 15)

  5. You can select any options for uploading the spreadsheet, but you may want to use the spreadsheet template attached to the bottom of this page, which is already prepared with 5 data rows.

    Before uploading the .xlsx or .csv file, make sure you name your file properly. The file name will be used for naming your Custom Object. (You can change the name and label of the object in the following steps in the Object Creator wizard, or after creating the object as well.)
    Ex: SDrive_FileObj_Test.xlsx will create a custom object named as SDrive FileObj Test. We suggest a naming convention that includes the object name followed by “_File”, such as MyObject_File or Account_Custom_File.




  6. The Object Creator will initialize the list of fields from the uploaded spreadsheet as follows:




  7. You can configure the worksheet details as you like, but the recommendation is to use the following options:



  8. You need to check and fix the Salesforce Field Type column values if there are any mismatches. You can cg__AccountFile__c object to compare the field names and the types.

    For example, Lock State is a multi-select picklist, but may have been created as Text, so change that field to a multi-select Picklist. Values are: legalHold, checkedOut, and onlineEditing.




  9. You can check the “Add to Layouts” boxes for each field to include them in the “All” list view. You can select up to 10 fields.

  10. After you have checked all the field types and names, click on “Next”.

  11. The last page in the wizard is the “Object properties” section. Change the object label or name as you like in this page. You can also set the “Advanced Settings” here such as “Allow Search” or “Allow Reports”. “Allow Search” is needed for proper shortcut creation/deletion if you want to use the Shortcut feature.




  12. After setting the Object properties, click on “Finish” button, and check the status of the object creation process.




  13. After your object is created, you will see the Overview page. (You will also receive an e-mail about the import job.)




  14. You can navigate back to Salesforce Setup and refresh the Object Manager page to see your newly created custom object.




  15. For the last steps, you only need to create the File Size (formula) field and the Parent (Lookup) field.

    • Parent:

      • Data type: Master-Detail (or Lookup)

      • lookup to the object you want to upload files to

      • Name: Parent (make sure this field is named parent. It will default to the name of the lookup object.)

    • File Size:

      • Data type: Formula

      • Return data type: Text

      • Formula:

        IF(!(ISBLANK(Shortcut__c )), RIGHT(Shortcut__c, (LEN(Shortcut__c) - FIND(':', Shortcut__c))), IF(File_Size_in_Bytes__c > 1024, IF(File_Size_in_Bytes__c > 1048576, IF(File_Size_in_Bytes__c > 1073741824, TEXT(ROUND((File_Size_in_Bytes__c /1073741824),2)) & " GB", TEXT(ROUND((File_Size_in_Bytes__c /1048576),2)) & " MB"), TEXT(ROUND((File_Size_in_Bytes__c /1024),2)) & " KB"), TEXT(File_Size_in_Bytes__c) & " bytes"))
  16. Check all fields, their types and character limitations, before you use this object with S-Drive.

  17. Change the default value to True on the following checkbox fields

    • WIP__c

    • Is_Latest_Version__c

S-Drive file object creation spreadsheet