8325299f3efca7683d6f9ef3e3af539627f20fb9
FAQ/Questions/Using-Stored-Procedures-In-Izenda-6.md
| ... | ... | @@ -93,7 +93,7 @@ To assign values to parameters of your SP, you need to select the field from the |
| 93 | 93 | |
| 94 | 94 | Within the Izenda Report Designer are filter options that allow you to select a value from a list instead of typing the value directly. When only using table names as data sources, these work just fine. You just select the field name and AdHoc fetches all values for that field from the data source in the database, groups them, and pulls them into the dropdown control. If SPs are used as data sources, this becomes a bit more complex. This is due to a couple of factors: |
| 95 | 95 | |
| 96 | -* **Input parameters:** These are denoted with (Param) beside their names and must satisfy the SP's requirements for input. (i.e. having two required input parameters means using two filters whenever the SP is used) **Input parameters can NOT be used with the extended Equals operators as their possible values cannot be determined.** |
|
| 96 | +* **Input parameters:** These are denoted with (Param) beside their names and must satisfy the SP's requirements for input. (i.e. having two required input parameters means using two filters whenever the SP is used) **Input parameters can NOT be used with the extended Equals operators as their possible values cannot be pre-determined.** |
|
| 97 | 97 | * **Output Fields:** These are the fields returned by the SP. Izenda detects what valid values can be selected with the given input parameters. **The list of output values can ONLY be built when all input parameters have defined values.** |
| 98 | 98 | |
| 99 | 99 | In other words, you can only get a list of values for the **output fields** when values for all **input parameters** have been defined. |