fabmprzQ4
![]() |
![]() |
![]() |
Título del Test:![]() fabmprzQ4 Descripción: Test for noob |




Comentarios |
---|
NO HAY REGISTROS |
Which ABAP statement can make an element visible that you statically defined as invisible?. SCREEN-INVISIBLE=1. SCREEN-INVISIBLE=0. SCREEN-ACTIVE=1. SCREEN-ACTIVE=0. What above statement can you use to create instance of class CL_GUl_CUSTOM_CONTAINER in ABAP program?. DATA:go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container. DATA:go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container. DATA:go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container. DATA:go_container TYPE CL_GUI_CUSTOM_CONTAIRNER. CREATE DATA go_container. Your selection screen can be modified at which event?. None of the above. AT SELECTION-SCREEN OUTPUT. AT SELECTION-SCREEN ON. AT SELECTION-SCREEN. Using the screen system table, what can you modify through a LOOP AT SCREEN ... ENDLOOP construct?. Function code of buttons. Attributes of creen elements. Scrren status. Values of screen elements. What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)?. The variavle must be declared using the DATA statement. The property OUTPUT of the input field must be set. The name of the variable and the name of the input field must be identical. The variable must be declared using the TABLES statement. A user runs an ABAP program and enter an incorrect value on selection screen and chooses execute. Which event block must send the error message in order messages to display the selection screen again?. At selection-screen on help request. At selection-screen. At selection-screen on value request. At selection-screen output. Which of the following program types can contain screen? Note there are 3 answers to this question. Executable programs. Module pools. Class pools. Function group or funtion pool. Interface pools. 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? Please choose the correct answer. The screen is displayed again without processing the PBO logic flow. Only fields B and C are ready for input. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program. The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input. The screen is displayed again without processing the PBO flow logic. All fields are ready for input. In which event blog can you override the default value of PARAMETERS field on the selection screen?. Initialitation. Start-of-selection. Process before output. At selection-screen. Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR is correct?. This event will display self-defined (F1) help for the output field programmed in the event block and ill override any help possibly defined in the ABAP Dictionary for the field. This event will display (F1) help for the input field on the selection screen. None of the above. This event will display self-defined (F1) help for the input field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field. What are the declarative statements used to define the selection? There are 3 correct answers to this question. SELECT-OPTIONS. PARAMETERS. SELECTION-SCREEN. None of the above. Which of the following is correct?. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks. None of the above. The screen attributes can be modified in the PROCESS AFTER INPUT event block. Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. H-HELP REQUEST. T-TRANSACTION. S-SYSTEM. E-EXIT. Which events can exist in all types of programs that actually contain executable statements?. AT LINE-SELECTION. LOAD-OF-PROGRAM. INITIALIZATION. AT USER-COMMAND. START-OF-SELECTION. Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question. SELECTION-SCREEN BLOCK. PARAMETERS. SELECT-OPTIONS. SELECTION-SCREEN COMMENT. Which of the following rules must you follow when creating subscreens? There are 2 correct answers to this question. Subscreens CANNOT have a field of type OK. Subscreens can have a dialog module containing SET PF-STATUS. Subscreens can call other subscreens. Subscreens CANNOT have an AT EXIT-COMMAND module. You want to display a dialog box in your ABAP program. Which statement do you use?. SET SCREEN 200. CALL SCREEN 200 STARTING AT 5 5. CALL SCREEN 200. WINDOW 200 STARTING AT 5 5. Which additions to the PARAMETERS statement can you use to fill the input fields on the selection screen with a suggested value? Note there are 2 correct answers to this question. MEMORY-ID. DEFAULT. MODIF ID. VALUE-CHECK. 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?. INITALITATION AT SELECTION-SCREEN OUTPUT START-OF-SELECTION AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT INITALITATION AT SELECTION-SCREEN START-OF-SELECTION. INITALITATION AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT START-OF-SELECTION. INITALITATION AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN START-OF-SELECTION. Which of the following make up a GUI status? There are 4 correct answers to this question. Menu bar. Application toolbar. Funtion key settings. Title bar. Standard toolbar. Which statement ends a screen sequence and starts from initial screen?. LEAVE TO SCREEN. LEAVE SCREEN. SET SCREEN 0. CALL SCREEN. 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 field F of table T1 and make table T2 the check table. Create a foreign key for the assigned fiel F of table T1 in table T2 and make table T1 the check table. 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. Define text tables for the underlying structure. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO). Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI). 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?. AT SELECTION-SCREEN OUTPUT. INITIALIZATION. LOAD-OF-PROGRAM. START-OF-SELECTION. Which of the following actions can be performed in the Process After Input (PAI) processing block?. Set the GUI status of the screen. Set the title bar. Check the function code. Modify screen attributes dynamically. 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?. Enter the name of data object in the paramenter ID attribute of screens field. Use a MOVE treatment in PAI module to copy data object. Define data object in program with same name as screen field. Use the GET statement in the program to transfer the data from screen field. After which statement will the runtime system initialize the ABAP memory?. SUBMIT..AND RETURN. LEAVE TO TRANSACTION. SUBMIT. CALL TRANSACTION. 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?. CHAIN. MODULE check_module FIELD field_name. ENDCHAIN. MODULE check_module ON ERROR. FIELD field_name MODULE check_module. FIELD field_name MODULE check_module MESSAGE Ennn. Where can you set the GUI status and the GUI title for a classical screen (dynpro)?. In a module called from PAI of the screen. In the attributes of the screen. In a module called form PBO of the screen. In the properties of the realted header UI element. Each button on a Dynpro (screen) requires the assignment of a function code. This function code... Is used to define global variables that receive a value when the button is clicked. Prevents the function code from be assigned to a menu item. Can be used to identify when the button is clicked by looking for the function code in the screen's OK_CODE field. |