You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/workflow/debug-workflow-activites.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,8 @@ This will open the **Profiler Settings** dialog which will provide the following
46
46
47
47
|Field|Description|
48
48
|--|--|
49
-
|**Workflow**|Select the Workflow or Custom action that contains the workflow activity you want to debug.|
50
-
|**Steps**|Select the specific steps within that workflow or custom action that you want to debug.|
49
+
|**Workflow**|Select the Workflow that contains the workflow activity you want to debug.|
50
+
|**Steps**|Select the specific steps within that workflow that you want to debug.|
51
51
|**Specify profile storage**|We recommend that you choose **Persist to Entity**.|
52
52
|**Set profiler settings**|If your are working with a system where the workflow is being executed frequently, you can reduce performance impact by choosing to limit the number of profiles that are captured.|
53
53
|**Include secure configuration**|This provides the option to avoid seeing potentially sensitive data that may be passed as secure configuration.|
|`settingName`| String | Yes | The name of the setting to get the value for. |
39
38
40
-
####Return value
39
+
### Return value
41
40
42
41
**Type:** Same as the type of the setting: *Number*, *String*, or *Yes/No*<br><br>
43
-
**Description:**
44
-
- If the setting is *Overridable* and *Value can be overridden* is set to *Environment and app* the setting app value is returned. If a setting app value does not exist, then the setting environment value is returned. If a setting environment value does not exist, the default value as specified in the setting definition is returned.
45
-
- If the setting is *Overridable* and *"Value can be overridden"* is set to *"Environment only"* the setting environment value is returned. If a setting environment value does not exist, the default value as specified in the setting definition is returned.
46
-
- If the setting is *Overridable* and *"Value can be overridden"* is set to *"App only"* the setting app value is returned. If a setting app value does not exist, the default value as specified in the setting definition is returned.
47
-
- If the setting is not *Overridable*, the default value as specified in the setting definition is returned.
42
+
**Description:**
43
+
44
+
- If the setting is **Overridable**:
45
+
46
+
- When **Value can be overridden** is set to **Environment and app**, the setting app value is returned.
47
+
48
+
- If a setting app value does not exist, then the setting environment value is returned.
49
+
- If a setting environment value does not exist, the default value as specified in the setting definition is returned.
50
+
51
+
- When **Value can be overridden** is set to **Environment only**, the setting environment value is returned.
52
+
53
+
- If a setting environment value does not exist, the default value as specified in the setting definition is returned.
54
+
55
+
- When **Value can be overridden** is set to **App only**, the setting app value is returned.
56
+
57
+
- If a setting app value does not exist, the default value as specified in the setting definition is returned.
58
+
59
+
- If the setting is not **Overridable**, the default value as specified in the setting definition is returned.
48
60
- If the setting name is incorrect or the setting could not be found, the return value is null.
49
61
50
-
###saveSettingValue
62
+
## saveSettingValue
51
63
52
64
Adds or updates the setting app value for the current app or the setting environment value for the current environment.
53
65
54
-
####Syntax
66
+
### Syntax
55
67
56
68
```JavaScript
57
69
var appOverrideScope =2; // Add or update a setting app value
58
70
var saveSettingOptions = {overrideScope: appOverrideScope, solutionUniqueName: mySolutionName};
0 commit comments