Invoke D365TableBrowser - FH-Inway/d365fo.tools GitHub Wiki
Start a browser session that will show the table browser
Invoke-D365TableBrowser [-TableName] <String> [[-Company] <String>] [[-Url] <String>] [<CommonParameters>]
Makes it possible to call the table browser for a given table directly from the web browser, without worrying about the details
Invoke-D365TableBrowser -TableName SalesTable
Will open the table browser and show all the records in Sales Table from the "DAT" company (default value).
Invoke-D365TableBrowser -TableName SalesTable -Company "USMF"
Will open the table browser and show all the records in Sales Table from the "USMF" company.
The name of the table you want to see the rows for
Type: String
Parameter Sets: (All)
Aliases:
Required: True
Position: 2
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
The company for which you want to see the data from in the given table
Default value is: "DAT"
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 3
Default value: $Script:Company
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
The URL you want to execute against
Default value is the Fully Qualified Domain Name registered on the machine
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: 4
Default value: $Script:Url
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Author: Mötz Jensen (@Splaxi)
The cmdlet supports piping and can be used in advanced scenarios. See more on github and the wiki pages.