A user runs an ABAP program AND enters an incorrect value on the selection screen AND and chooses Execute. Which event block must send the error messages in order messages in order to display the selection screen again?
Answer : A
A costumer has asked that you improve performance for a small table with frequent read accesses, what buffering type do you recommend?
Answer : B
Which are the functions of the ABAP dispatcher? Note: There are 3 correct answers to this question
Answer : A, B, E
In which event block can you overwrite the default value of PARAMETERS field on the selection screen?
Answer : B
Which of the following actions can you perform in both the ABAP Editor and in the ABAP Debugger?
Answer : C
You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB Under which conditions is this possible? Note: There are 2 correct answers to this question.
Answer : B, C
You run an executable program that contains the following code: DATA: gv_varl TYPE n LENGTH 3. gv_var2 TYPE n LENGTH 3 VALUE '456' START OF SELECTION. CLEAR gv_var2 gv_var2=g
Answer : C