FAQ/Questions/Using-Stored-Procedures-In-Izenda-6.md
... ...
@@ -42,7 +42,7 @@ You can use SPs in either DatabaseAdHocConfig mode or FileSystemAdHocConfig mode
42 42
43 43
When using SPs, use the [[VisibleDataSources|/API/CodeSamples/VisibleDataSources]]] setting to contain the all the SPs, tables, and views that should be available as DataSources. Each of the strings in this list must exactly mirror the name of the SP, table, or view as it appears in your data source.
44 44
45
-**Caveat:** when the VisibleDaataSources property is empty, all tables are visible by default, while all SP are hidden. If VisibleDaataSources contains any names, then all tables not included in VisibleDaataSources will become hidden. To use them, they must also be included in VisibleDaataSources to be used together with SPs. In this code example, the table "DummyTable" is added to VisibleDaataSources along with our SP to make it visible and denote the difference in naming between tables and SPs.
45
+**NOTE:** when the VisibleDataSources property is empty, all tables are visible by default, while all SP are hidden. If VisibleDataSources contains any names, then all tables not included in VisibleDataSources will become hidden. To use them, they must also be included in VisibleDataSources to be used together with SPs. In this code example, the table "DummyTable" is added to VisibleDataSources along with our SP to make it visible and denote the difference in naming between tables and SPs.
46 46
47 47
##Adding code for filtering the Equals(Select) drop-down.
48 48