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

Convert Call stack to readable format in D365FO X++

//Input --container _xppCallStack = xSession::xppCallStack();  Public static str POL_formatXppCallStack(container _xppCallStack, int _skipFr...