17. Selectioon screens and user messages Flashcards

1
Q

Selection table

A

Selection criteria for each item on a selection screen are stored in a selection table. Selection
tables are system-generated internal tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Standard field format for selection tables

A

Sign, option, low, high

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

SIGN

A

This field indicates whether the current row of the table is inclusive or exclusive. Each row of the internal table represents a particular condition. The overall condition specified by the selection table is the union of lines marked with sign I (inclusive), less the union of lines marked with sign E (exclusive).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

OPTION

A

This field holds the relational operator for the current row of the selection table (i.e.., “EQ” for =)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

LOW

A

This field holds the low value for range comparisons. If the comparison is against a single value, this field contains that value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HIGH

A

This field holds the high value for range comparisons. If the comparison is against a single value, this field is left blank.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NO-EXTENSION option

A

When the NO-EXTENSION option is used, the user will not see the arrows pointing to the right at the far right.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

NO INTERVALS option

A

When this option is utilized there will be no FROM … TO choices. The NO INTERVALS option may be used in conjunction with the NO-EXTENSION option. (used with SELECT-OPTIONS).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

REJECT statement

A

The REJECT statement unconditionally terminates the current event processing block. It is normally used with a logical database program. REJECT skips any remaining processing for the current record (and any associated records at lower database levels). Processing resumes with the next record at the same database level.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

PARAMETERS statement

A

The PARAMETERS statement creates a single entry field on the selection screen. It also creates a variable in your program with the same name. The value placed into the field at run-time by the user is also placed into the variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

PARAMETERS statement options

A

DEFAULT, LOWER CASE, OBLIGATORY

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

AS CHECKBOX clause

A

To create a parameter as a checkbox, use the AS CHECKBOX clause.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

RADIOBUTTON GROUP

A

To create parameters as radio buttons, use the RADIOBUTTON GROUP clause. The parameter will automatically be defined as type C and length 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

MATCHCODE OBJECT

A

To attach a Search Help to a parameter field, use the MATCHCODE OBJECT clause.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

SELECTION-SCREEN SKIP

A

This option will generate blank lines on the screen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

SELECTION-SCREEN ULINE

A

This option places an underline on the screen at a location and length specified by the programmer.

17
Q

SELECTION-SCREEN COMMENT

A

Will place a user defined comment on the screen at a location specified by the programmer. The comment text may also be a variable.

18
Q

SELECTION-SCREEN BEGIN/END OF LINE

A

This option places multiple fields immediately adjacent to one another. The fields to be positioned must be listed between the BEGIN OF LINE and END OF LINE parameters.

19
Q

SELECTION-SCREEN POSITION

A

This is the position of the next comment or parameter on the screen. For the programmer can use a number, POS_HIGH, or POS_LOW. POS_HIGH and POS_LOW are the locations of the From and To values on the screen.

20
Q

SELECTION-SCREEN FUNCTION KEY Statement

A

The SELECTION-SCREEN FUNCTION KEY statement allows you to place pushbuttons on the application toolbar of the selection screen. The syntax is: SELECTION-SCREEN FUNCTION KEY

21
Q

The SSCRFIELDS (Screen Fields) table

A

Is used by the selection screen to store data that can be passed to the program for further processing.
This data might include:
§ Function codes
□ Which can trigger processing in the program
§ Text
□ Which will appear on the screen