TAW_10_2 chapter 11, introduction to Screen programming Flashcards
What is the current sap programming model?
Single screen transaction Input and data screen combined Easy switch between Create, Change, Display Direct access to each object System retains context after saving
What are the three sections of the single screen model
Object selection
Object ID
Details of object
What is the customer screen range
9000-9999
what are the 4 recommended steps for screen creation?
Set the general screen attributes
Design the screen layout in the editor
Set the field attributes
Build the PBO/PAI
Can a module (input or output) be called from multiple screens
Yes
What two processors are used in dynpro (module pool) programming?
ABAP
DYNP
Screen fields (such as invisible or active) only allow values of 0 and 1
No, although this is often the case. SCREEN-REQUIRED has 0, 1, and 2
generally though, 0 = off, and 1 = on
What are the 6 modifiable columns of SCREEN
INPUT, OUTPUT, REQUIRED, INTENSIFIED,INVISIBLE, ACTIVE
How are screen elements changed
LOOP AT SCREEN. check the name or group field SCREEN-ACTIVE = 1. MODIFY SCREEN ENDLOOP.
How can the statically defined next screen be overwritten?
SET SCREEN ####. LEAVE SCREEN.
or
LEAVE TO SCREEN ####
What two ways can a module pool program be terminated?
Leave to screen 0 in the initial stack
Leave program at any point
Can the default cursor setting be over ridden
yes. SET CURSOR FIELD
Can a call screen be sized?
Yes, provided it is declared as a modal dialog box