SysQueryForm Ax 2012

Hi all,

I have a requirement to apply ranges only on a fixed number of fields on the SysQueryForm and should not allow me to add any further fields,ranges on the form

Is that possible to disable the “Add” and “Remove” buttons on the SysQueryForm.

Thanks in advance.

You can modify the query to do it, In query you can set the UserUpdate to No (this will not allow any changes to the query)

Or, you can set the AllowAdd = NoFields(for data sources in query), so that it will restrict add and remove, but you can change the existing range values

it worked for me …thanks