Programming ABAP Reports_2
![]() |
![]() |
![]() |
Title of test:![]() Programming ABAP Reports_2 Description: Selection Screens |




New Comment |
---|
NO RECORDS |
If a report with a selection screen runs in the background, a variant is not always required. TRUE. FALSE. You can create an additional selection screen and use CALL SELECTION-SCREEN statement to call it. TRUE. FALSE. You can use the declarative statements to generate a selection screen with input fields. PARAMETERS. SELECT-OPTIONS. PARAMETER. SELECT-OPTION. Logical databases supply a selection screen whose appearance is dependent on the specified nodes (NODES <name>). TRUE. FALSE. Selection screens serve as an interface between the program and the user, and allow the amount of data to be read from the database to be limited. TRUE. FALSE. Max no of characters for naming the PARAMETERS & SELECT-OPTIONS. 6. 10. 8. 12. The SELECT-OPTIONS keyword generates an internal table <seltab> with a standard structure and a header line. true. false. This internal table <seltab> has the following columns: SIGN. OPTION. LOWER. UPPER. LOW. HIGH. Each line of the selection table <seltab> formulates a condition using one of the relational operators. true. false. You can maintain the selection text in the same way as with PARAMETERS by choosing Goto → Text Elements → Selection Texts. TRUE. FALSE. The selection set is a union of all includes (I1, ..., In) minus the union of all excludes (E1, ..., Em). If no values are entered into the SELECT-OPTION, the system does not returns rows from the database. true. false. Choose the Possible values of option in select-options : BT-Between. NB-Not between. CP-Contains pattern. NP - Does not contain the pattern. SELECT-OPTIONS statement converts the input provide to uppercase. TRUE. FALSE. You can overwrite the default value of a PARAMETERS field or a SELECT-OPTIONS object in the ____________ event. INITIALIZATION. LOAD-OF-PROGRAM. AT SELECTION-SCREEN OUTPUT. AT SELECTION-SCREEN. The _________ event block is only processed once, before the selection screen is displayed for the first time. LOAD-OF-PROGRAM. INITIALIZATION. AT SELECTION-SCREEN OUTPUT. END-OF-SELECTION. You can use the F1 help (technical help) to determine the names of the selection fields if a logical database is connected with the program. false. true. The system processes the INITIALIZATION event only once in each executable program. true. false. With out INITILIZATION event, can we provide the default values on a selection screen. YES. NO. You can use the SELECTION-SCREEN statement to design the structure of the selection screen. You can use the BEGIN OF BLOCK <block> addition to group logically related screen elements and WITH FRAME to frame them. You can nest frames up to ____levels. 10. 8. 7. 5. Assign a heading to the block to facilitate accessibility. You can write the title as either text-<xxx> or as a field name of up to ____ characters. If you use a field name to provide the title, you set the text at runtime in the ___________ event. 10, INITIALIZATION. 8, INITIALIZATION. 8, AT SELECTION SCREEN. 10, AT SELECTION SCREEN. You can display multiple parameters and comments in the same output line , The ________addition enables you to include text in the line. COMMENT. LINE. BEGIN-OF-COMMENT. BEGIN-OF-LINE. You can display multiple parameters and comments in the same output line by enclosing them between and . SELECTION-SCREEN BEGIN OF LINE. SELECTION-SCREEN END OF LINE. SELECTION-SCREEN END OF COMMENT. SELECTION-SCREEN BEGIN OF COMMENT. you can define empty lines in selection screen with the following addition. SKIP. SKIP N , *n is a integer. SKIP 'N' , *n is a character. none of the above,. if you hide a parameter, any associated comment text is also hiddden. true. false. You can work with several selection screens in one program. The standard selection screen always has the number ____. 1000. 100. 0000. 1001. You can define other selection screens using . SELECTION-SCREEN BEGIN OF SCREEN nnnn and SELECTION-SCREEN END OF SCREEN nnnn. BEGIN OF SCREEN nnnn and END OF SCREEN nnnn. SELECTION-SCREEN BEGIN-OF-SCREEN nnnn and SELECTION-SCREEN END-OF-SCREEN nnnn. BEGIN-OF-SCREEN nnnn and END-OF-SCREEN nnnn. Use CALL SELECTION-SCREEN <nnnn> to call this selection screen. Additional selection screens should have a screen number of: higher than 1000 and less than 9999. higher than 1000 and less than equal to 9999. equal to 1000. higher than 100 and less than 0999. If the user performs any action on the called selection screen, the AT SELECTION-SCREEN event is processed. In this event, the ______ system field contains the number of the called selection screen. sy-dynnr. sy-dynpr. sy-ucomm. sy-index. You can define selection screens as subscreens, and then include them on other screens as tabs. The system processes the AT SELECTION-SCREEN OUTPUT and AT SELECTION-SCREEN events for each subscreen and also for the surrounding selection screen. TRUE. FALSE. You can define selection screens as subscreens, and then include them on other screens as tabs. true. false. The following are the optional additions when defining subscreens. NESTLING LEVEL n. NO INTERVALS. OBLIGATORY. RECOMMENDED. When Working with tabstrips on a selection screen, you can delay linking a tab title with a particular subscreen untill runtime. True. False. you can supply any additonal screens with default values in INITILIZATION. true. false. When Working with tabstrip, you can delay the linking a tab title with a particular subscreen untill runtime. true. false. You can use the ____event to check the entry combinations of a logical group. All fields in this block become ready for input when an error message is displayed. AT SELECTION-SCREEN ON BLOCK xyz. AT SELECTION-SCREEN ON. AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT. Evaluation of user selection screen input happens in. AT SELECTION-SCREEN. AT SELECTION-SCREEN OUTPUT. SELECTION-SCREEN BEGIN OF BLOCK xyz. SELECTION-SCREEN END OF BLOCK xyz. You can program your own F1 help (field help) using the. AT SELECTION-SCREEN ON HELP-REQUEST. AT SELECTION-SCREEN ON VALUE-REQUEST. AT SELECTION-SCREEN ON. AT SELECTION-SCREEN. You can program your own F4 help (input help) using the ________ event. AT SELECTION-SCREEN ON HELP-REQUEST. AT SELECTION-SCREEN ON VALUE-REQUEST. AT SELECTION-SCREEN ON. AT SELECTION-SCREEN. F1 help can refer to individual parameters or a selection table (SELECT-OPTION). If you specify the name of a SELECT-OPTIONS table, the help is available for both seltab-low and seltab-high. TRUE. FALSE. If the program uses several selection screens, a variant can be created for all selection screens, or individually for each selection screen. True. False. The naming convention for selection screen variants provided by SAP are. SAP&xxx. SAPxxx. SAP@xxx. SAP(xxx). The naming convention for custom selection screen variant(system-variants transportable). CUS&xxx. CUS@xxx. CUS@xxx. SAP@xxx. The equivalents to these events for selection screens are as follows: PAI = AT SELECTION-SCREEN OUTPUT PBO =AT SELECTION-SCREEN. True. False. The user command of the button chosen by the user is placed into the ______ field at the beginning of the AT SELECTION-SCREEN event. sscrfields-ucomm. sscrfields-ucom. sscrfields. scrfields-ucomm. When defining a selection screen button, to insert a explicit line break, combine your position specification with ____. "/". "\". SKIP. |