ENTER key -> TAB key

is there any possibility that when the user presses the ENTER key, go to the next field, but without putting code in all objects on screen?

some general configuration that simulates the action of the TAB, or something similar?

like what can be done in C#
private void frmTela_KeyDown(object sender, KeyEventArgs e)
{
	if (e.KeyCode == Keys.Enter)
	{
		SendKeys.Send("{TAB}");
	}
}

It looks like your code is from c# desktop application, but not web application.
Jmix do nothing when TAB key pressed and has no any logic to handle such event.
In Jmix you can set visual componet tabIndex value that has corresponding html attribute.
What to do when TAB key pressed is browser responsibility.
You can get collecion of TextFields (or other components, for example, focusable components) and use forEach to addEnterPressListener() to set focus to any component.

yes, this example is a desktop application in c#, however the use of the ENTER key makes it easier for the user, hence the intention, but I understood what you said and I will do some tests.

thanks in advance