Hello Guys..!
Here I'm sharing code for export list of model elements to excel .
Step 1: Open "Microsoft Dynamics Ax management shell" from Administrator Tools.
Step 2 : paste the below code
(Get-AXModel -Model 'VAR Model' -Details).Elements | select path, elementtype | `
Export-Csv -NoTypeInformation -Delimiter ';' c:\varmodel.csv
Note : In this example I'm exporting VAR Model.
Go to c:\varmodel.csv
That's it
@Rahul Talasila
Here I'm sharing code for export list of model elements to excel .
Step 1: Open "Microsoft Dynamics Ax management shell" from Administrator Tools.
Step 2 : paste the below code
(Get-AXModel -Model 'VAR Model' -Details).Elements | select path, elementtype | `
Export-Csv -NoTypeInformation -Delimiter ';' c:\varmodel.csv
Note : In this example I'm exporting VAR Model.
Go to c:\varmodel.csv
That's it
@Rahul Talasila
No comments:
Post a Comment