Tags:
create new tag
view all tags

Calling Inquiries from Scrolling INPUTs

"I have a scrolling INPUT on a set of data. I would like the Automatic Child to jump to a full screen display of the full set of data. I have an existing INQUIRY that has the exact look and feel of what I want, and the users are familiar with this screen. How can I reuse this existing INQUIRY? (A simple Automatic Child doesn't work.)"

Solution:

  1. Before invoking the INQUIRY, set --- PROCESS CODE to "DISP".
  2. In the Key Entry frame's Global Pre-Display event point, execute:
      *
      *         RETURN to Display, 1st time thru
      *
      IF       --- PROCESS CODE               EQ     DISP
T     SET      --- OPTION                     =      RETURN
T     SET      --- PROCESS CODE               =      DONE
      *
      *         END to go back to INPUT, 2nd time thru
      *
F     IF       --- PROCESS CODE               EQ     DONE
FT    SET      --- OPTION                     =      END

(All this can be done in a SUBR, called from Key Entry's Global Pre-Display event point.)

When the INQUIRY starts, PROCESS CODE is DISP, so the KEY ENTRY frame is skipped. Since the INQUIRY is constrained to one record, it displays only that record from the INPUT.

When the user presses ENTER or END after viewing the data, Key Entry executes again, but since PROCESS CODE is now DONE, it sets OPTION to END. INQUIRY ends, and control is returned to the parent.

Comments:

Read what other users have said about this page or add your own comments.



Topic revision: r1 - 2012-02-29 - ChrisBrower
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback