Hello,
I'm having a problem with an ACCEPT on a group item from the SCREEN SECTION.
If the SCREEN SECTION has something like:
05 SCREEN-LINE-1.
10 S-GRAB-DATE.
15 LINE 1 COL 10 PIC 99 USING THE-MONTH.
15 LINE 1 COL 12 '/'.
15 LINE 1 COL 13 PIC 99 USING THE-CC.
15 LINE 1 COL 15 PIC 99 USING THE- YEAR.
Then in the code do:
ACCEPT S-GRAB-DATE.
I am able to edit the month field but as soon as I hit Enter the cursor does not go to the THE-CC field.
It just terminates the whole accept for that group item, instead of going to the next field within the group item.
I can TAB to the next field within the group item, but not NewLine/Enter.
This works on our AIX version of ServerExpress but not our Linux version.
Shouldn't it behave like the AIX version?