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

Disabling the flight in D365FO (CHD - Tier 1)

 INSERT INTO dbo.SYSFLIGHTING(FLIGHTNAME, ENABLED)  VALUES ('<FlightObjectName>_KillSwitch', 1)  or  INSERT INTO dbo.SYSFLIGHT...