TAW_10_2 chapter 11, introduction to Screen programming Flashcards

1
Q

What is the current sap programming model?

A
Single screen transaction
Input and data screen combined
Easy switch between Create, Change, Display
Direct access to each object
System retains context after saving
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the three sections of the single screen model

A

Object selection
Object ID
Details of object

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

What is the customer screen range

A

9000-9999

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

what are the 4 recommended steps for screen creation?

A

Set the general screen attributes
Design the screen layout in the editor
Set the field attributes
Build the PBO/PAI

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

Can a module (input or output) be called from multiple screens

A

Yes

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

What two processors are used in dynpro (module pool) programming?

A

ABAP

DYNP

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

Screen fields (such as invisible or active) only allow values of 0 and 1

A

No, although this is often the case. SCREEN-REQUIRED has 0, 1, and 2
generally though, 0 = off, and 1 = on

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

What are the 6 modifiable columns of SCREEN

A

INPUT, OUTPUT, REQUIRED, INTENSIFIED,INVISIBLE, ACTIVE

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

How are screen elements changed

A
LOOP AT SCREEN.
check the name or group field
SCREEN-ACTIVE = 1.
MODIFY SCREEN
ENDLOOP.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How can the statically defined next screen be overwritten?

A

SET SCREEN ####. LEAVE SCREEN.
or
LEAVE TO SCREEN ####

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

What two ways can a module pool program be terminated?

A

Leave to screen 0 in the initial stack

Leave program at any point

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

Can the default cursor setting be over ridden

A

yes. SET CURSOR FIELD

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

Can a call screen be sized?

A

Yes, provided it is declared as a modal dialog box

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