TAW10 PART-1I (Unit 10 to 16) Flashcards
Which of the following function types in a GUI status are reserved for internal use?
H-HELP REQUEST
S-SYSTEM
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION.
In which sequence will ABAP runtime call these event blocks?
- INITIALIZATION
- AT SELECTION-SCREEN OUTPUT
- AT SELECTION-SCREEN
- START-OF-SELECTION
You have created a screen on which the user enters data that is to be inserted into table T1. How do you ensure that the content of field F in Table T1 is checked against table T2?
Create a foreign key for the assigned field of field F of table T1 in table T2 and make table T2 the check table
How can you maintain documentation for input fields on your screen?
Add documentation to the underlying data element
Each button on a Dynpro (screen) requires the assignment of a function code.
This function code…
Can be used to identify when the button is clicked by looking for the function code in the screen’s OK_CODE field
Which of the following program types can contain screen?
Module pools
Function group or function pool
Executable programs
You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be assessed in the program?
Define data object in program with the same name as screen field
What are the differences between displaying in a full screen and in a container?
The container requires the use of an additional object (a container control)
Any type of ALV allows the use of event handling
In which event block can you override the default value of PARAMETERS field on the selection screen?
Initialization
Which events can exist in all types of programs that actually contain executable statements?
LOAD-OF-PROGRAM
At most, how many menu items (including functions, separators and submenus)
can a menu have on the screen?
15
You want to check the user input in the field FIELD_NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value. How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this?
FIELD field_name MODULE check_module MESSAGE Ennn.
Which of the following actions can be performed in the Process After Input (PAI) processing block?
Check the function code
After which statement will the runtime system initialize the ABAP memory
LEAVE TO TRANSACTION
What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks in an executable program?
START-OF-SELECTION
You want to display a dialog box in your ABAP program. Which statement do you use?
CALL SCREEN 200 STARTING AT 5 5.
What is the default selection screen number for the ABAP program?
1000
Which of the following is correct?
The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block
How do you program an input validation on a selection screen that allows users to correct their input?
Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed.
Which of the following make up a GUI status?
Standard toolbar
Menu toolbar
Application toolbar
Function key settings
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR is correct?
This event will display (F1) help for the input field on the selection screen.
A screen has the following PAI flow logic:
PROCESS AFTER INPUT.
FIELD A
MODULE check_A.
FIELD B
MODULE check_B.
CHAIN.
FIELD:C,D
MODULE check_CD
ENDCHAIN.
CHAIN.
FIELD:C,B.
MODULE check_CB
ENDCHAIN.
What happens if the application send a type E message during the check_CB module processing?
The screen is displayed again without processing PBO logic flow. Only fields B and C are ready for input
Your selection screen can be modified at which event?
AT SELECTION-SCREEN OUTPUT
Where can you set the GUI status and the GUI title for a classical screen (dynpro)?
In a module called PBO of the screen