Ax – D365FO – How to SHOW/HIDE Select Query button in a RunbaseBatch class

To show or hide the Select button on a RunBaseBatch class add the “showQuerySelectButton()” method and return true to how to show or false to hide

public boolean showQuerySelectButton()
{
    return false; //In this case the button will be hidden. If you want to show just return TRUE
}

Leave a comment