Tuesday, September 25, 2018

Command lines for running BP in Dynamics 365 for finance and operations

Command lines for running BP

//Run BP on all forms in a module
xppbp -module:FleetManagement form:*

//Run BP on specific elements:
xppbp -module:FleetManagement class:MyClass form:MyForm

//Run BP on all items in the model
xppbp -module:FleetManagement -model:FleetManagement –all

//Run BP on all items in all models in the module
xppbp -module:FleetManagement –all

//Write the output to log files:

xppbp -module:FleetManagement -all -xmllog=Log.xml -log=Log.txt

No comments:

Post a Comment

Dynamically setting entire Form security access through Extension in D365FO

/// <summary> /// To check if user can get access to the Parameter form /// </summary> class SAN_ParamFormsAccessCtrl {     prot...