Eddie Monster
17th July 2002, 15:21
In the Maintain Item Master session...

When you enter a new record into the session you will automatically be taken to the first field on the second form you tab from the last field on the first form. I am creating a 'Maintain' session with multiple forms and I would like to utilize this functionality to ease data entry. Can anyone tell me how this works?

Thanks in advance!

Han Brinkman
17th July 2002, 16:09
http://www.baanboard.com/programmers_manual_baanerp_help_functions_form_and_form_field_operations_to_form

OmeLuuk
17th July 2002, 16:22
Also need the form-sequence in the correct order.
In edit mode on the form, press ^O and select from this menu:
+------------------------+
| Change sequence or ID? |
|------------------------|
| Maintain sequence |
| Generate sequence |
| Maintain ID |
| Generate ID |
| Set ID to zero |
+------------------------+
Start with the Generate options...
sequence is for setting (or repairing) the sequence in which formfields are tabbed through, ID is mainly for use with ASCII interface: key ID number on choicefield jumps to field ID.

sbakshi
19th July 2002, 18:09
Hi,
Say in the scritp, under field.section, after user enters the last field (tdsls045.date) on form 1 nd tabs thru, it will move to form 2 and the first field (tdsls045.item)


field.tdsls045.date:
after.input:

to.form(2)
to.field("tdsls045.item")

Hope this clear out
Thnx