Related Topics
Mobile Application Custom Variables
Process Director v5.45 and higher enables a separately-licensed Mobile Application Component. This component requires custom variables to be configured to implement the component.
The custom variables will be configured by BP Logix for Cloud customers.
This numeric variable specifies the Company ID for the mobile application of this Process Director installation.
Example
public override void SetSystemVars(BPLogix.WorkflowDirector.SDK.bp bp)
{
// Mobile Server ID
bp.Vars.nAppenateCompanyID = 1;
}
This boolean variable, when set to true, enables the display of the Download Field List action link on the Properties tab of Form definitions.
Example
public override void SetSystemVars(BPLogix.WorkflowDirector.SDK.bp bp)
{
// Enable Download Field List
bp.Vars.fEnableFormFieldDownload = true;
}
This string variable specifies the Mobile Server integration Key for the Process Director installation.
Example
public override void SetSystemVars(BPLogix.WorkflowDirector.SDK.bp bp)
{
//Mobile Server Integration Key
bp.Vars.sAppenateIntegrationKey = "XXXXXXXX-XXXXXXXXX";
}
This string variable specifies the URL of the mobile server to use for this Process Director installation.
Example
public override void SetSystemVars(BPLogix.WorkflowDirector.SDK.bp bp)
{
//Mobile Server URL
bp.Vars.sMobileWebServerURL = "https://mobile.bplogix.com";
}
Documentation Feedback and Questions
If you notice some way that this document can be improved, we're happy to hear your suggestions. Similarly, if you can't find an answer you're looking for, ask it via feedback. Simply click on the button below to provide us with your feedback or ask a question. Please remember, though, that not every issue can be addressed through documentation. So, if you have a specific technical issue with Process Director, please open a support ticket.