Develop: Categories Pull and Save
Estimated reading time: 11 minutesOverview
This example will focus on how to create an Excel tool to be able to pull the data out of a Northwind Categories table into an Excel tab as well as to be able to add, edit, or delete categories to this table. Below you will find the list of requirements you will need to fulfill to have a minimal, fully-functioning data sheet using the Interject Add-in.
Note: This example uses Microsoft's Northwind Database. You can download this database here or you can use this example as a guide for your own data source.
NorthwindCategories SQL Table
For the purposes of this example and learning how to work with an integer column, please add the TotalStock int column to the NorthwindCategories table.
General Requirements
Step 1: A data connection and at least two Data Portals (one for pulling and the other for saving) https://portal.gointerject.com/.
Step 2: A simple table in the connected database.
Step 3: A simple datasheet that:
- Should be formatted with column definitions, formatting ranges, formulas, etc. at the top
-
Should have a title
-
Can have a field or fields for entering filters for your pulls
- Should have table header names for each field pulled from the database, e.g.
- [CategoryID]
- [CategoryName]
- [TotalStock]
- [Description]
-
Should have a field for getting output results from the save procedure (e.g. [MessageToUser])
-
Data should be populated using one or more Report() functions
Step 4: A stored procedure for pulling data from the table:
-
Should at least have Interject_RequestContext as an input parameter
-
Returns a table column required for testing in data sheet (e.g. name, stock, description)
Step 5: A stored procedure for saving data to the table:
- Parameters
- Interject_RequestContext should be a parameter to get information from the sheet. The RequestContext Parser helper procedure should unpack context values for you
- @CategoryName is used if data sheet has a filter for query result
- @HeaderMessage is used as a way to give confirmation that a delete was successful or generally when changes are pushed successfully to the database
- Should execute RequestContext parser to obtain data from the sheet calling the procedure
-
Information obtain should be stored in a temporary table variable (@DataToProcess) to help process and validate the information from RequestContext before updating the actual table itself
- Validation. You need to check every single input in the context by checking each value in the column, e.g.
- Make sure that new entries have [CategoryID] and [CategoryName] that are unique and have no duplicates and that [CategoryID] and [CategoryName] cannot be empty
- Existing rows cannot have their [CategoryID] be modified
- [TotalStock] should be a completely valid INTEGER and cannot be less than 0.
- [CategoryName], [Description], etc. cannot exceed a specified amount of characters
- Debugging
- If there were any issues found during the validation procedure, the execution of the stored procedure should be halted and redirected to code that handles the return of all the errors found in each row back to the sheet (e.g. attach the error message on each row in @DataToProcess which contains any errors for that row and return that table instead)
- @HeaderMessage should be used to confirm any updates made to the table after validation is passed
Specific Requirements
Step 1: Adding general comments in unused cells is very helpful at telling the user what can and cannot be done in the sheet without the having them do guesswork.
Step 2: Configure jFreezePanes() such that the Interject header rows and the primary key columns are hidden away from the user’s view.
Step 3: Use GETUTCDATE() and @UtcOffset (obtained from RequestContext) to return error/debug messages that are relative to the user’s time.
Step 4: In the sheet, the last row of RowDefRange (for ReportSave()) and TargetRange (for ReportRange()) should be the same. It should have a line that has “End of list” or something similar. This will be important for when parsing through the request context in the code.
Step 5: There should be thorough validation done on each input received by the save stored procedure. Any validation issue found should have the code short-circuit to code that returns all the errors/updates for each row and if errors exist, an error using “UserNotice” should be returned.
- [CategoryID]
- Must be unique
- The user SHOULD NOT be able to modify the ID, but this step is necessary to ensure no pre-existing entries in the database are being overwritten
- [CategoryName]
- Must be unique
- Cannot be empty
- Cannot exceed a certain amount of characters
- If there is a filter applied in the sheet and the user tries to add an entry that already exists (but the filter hides the pre-existing item), there should be an error message returned.
- A unique value for each CategoryName is important as it is used in several joining operations
- [TotalStock]
- This value is pulled in as a VARCHAR since there is no guarantee as to what the user enters in the datasheet is valid. But regardless, you should make sure that this value is a valid integer
- This value cannot be negative, cannot be a decimal/float number, cannot be alphanumeric, empty, etc.
- [Description]
- Can be empty
- Cannot exceed a certain amount of characters
Step 6: Important; for delete capabilities in the save procedure to happen, make it so that any Category from the table that is not listed in the context will be deleted from the table.
- This deletion should happen when a row in @DataToProcess is not matched
- When a deletion occurs, make sure it is accounted for in the return message back to the user
Step 7: Alternatively, you can add another column called [Delete?] which holds a flag that determines whether the matched row should be removed from the table.
Step 8: Important: for adding capabilities, it is important that you run several checks on columns that should be unique.
Step 9: If a user accidentally tries to add a duplicate Category while in a filtered view, make sure to return an error. Not doing this could result in overwriting preexisting rows.
Step 10: When adding/updating/deleting items in the datasheet, make sure that CategoryName is used as RowDefRange when calling the save stored procedure.