Question 31
A screen has the following PAI flow logic:
PROCESS AFTER INPUT
FIELD A MODULE check_A
FIELD A MODULE check_B
CHAIN.
FIELD:C,D
MODULE check_CD
ENDCHAIN
FIELD:C,B.
MODULE check_CB
ENDCHAIN
What happens if the application senda a type E message during the check_CB module processing?
Please choose the correct answer.
Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers.
Response:
(1/1 Points)
PROCESS AFTER INPUT
FIELD A MODULE check_A
FIELD A MODULE check_B
CHAIN.
FIELD:C,D
MODULE check_CD
ENDCHAIN
FIELD:C,B.
MODULE check_CB
ENDCHAIN
What happens if the application senda a type E message during the check_CB module processing?
Please choose the correct answer.
Note: Answers of this question are not verified by our experts, please study yourself and select the appropriate answers.
Response:
(1/1 Points)
Question 32
ABAP now has predefined functions that behave like functional methods.
Question 33
You can define multiple elements in a single line by defining the element within the block SELECTION-SCREEN BEGIN OF LINE and SELECTION-SCREEN END OF LINE.
Question 34
What do global types and local types have in common?
Please choose the correct answer.
Response:
Please choose the correct answer.
Response:
Question 35
You run an executable program which contains the following code:
DATA: gv_var1 TYPE n LENGTH 3,
Gv_var2 TYPE n LENGTH 3 VALUE '456'.
START-OF-SELECTION
CLEAR gv_var2
Gv_var2 = gv_var1.
Gv_var1 = '123'.
At what point does the system reserve memory for the data object gv_var1?
Please choose the correct answer.
Response:
DATA: gv_var1 TYPE n LENGTH 3,
Gv_var2 TYPE n LENGTH 3 VALUE '456'.
START-OF-SELECTION
CLEAR gv_var2
Gv_var2 = gv_var1.
Gv_var1 = '123'.
At what point does the system reserve memory for the data object gv_var1?
Please choose the correct answer.
Response: