Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Creating dialog programs and screens

Former Member
0 Likes
505

This si hoepfully a simple one, but its been a while since I did any screen programming. I have created a simple user input screen as part of a dialog program, and I have set some of the fields to 'required' i.e. mandatory. But beucase of these fields I can not leave the transaction via back, exit or cancel until I populate these fields. I only want these fields to be checked when trying to save the data.

Any ideas?

This si hoepfully a simple one, but its been a while since I did any screen programming. I have created a simple user input screen as part of a dialog program, and I have set some of the fields to 'required' i.e. mandatory. But beucase of these fields I can not leave the transaction via back, exit or cancel until I populate these fields. I only want these fields to be checked when trying to save the data.

Any ideas?

2 REPLIES 2
Read only

Former Member
0 Likes
484

Handle BACK,EXIT buttons in AT-EXIT-COMMAND in your screen.

Then it should work.

PROCESS AFTER INPUT.

CHAIN.

FIELD <field name>.

MODULE exit_9100 AT EXIT-COMMAND.

ENDCHAIN.

Read only

Former Member
0 Likes
484

On top of the at-exit command I hadn;t set me fucntion buttons to type 'E'.