Programming ABAP Reports_4
![]() |
![]() |
![]() |
Title of test:![]() Programming ABAP Reports_4 Description: ALV Design, Layouts |




New Comment |
---|
NO RECORDS |
To manage the ALV layout variants we define the following parameters in set_table_for_first_display. is_variant. i_save. is_default. is_layout. Users can change the current layout and select existing variant. To set this mode, assign ____ to is_variant and i_save (default setting). Space. 'X'. What is value passed to i_save in set_table_for_first_display, so that The user allowed to only save user-specific layout variants. 'U'. 'X'. 'A'. Space. What is value passed to i_save in set_table_for_first_display, so that The user allowed to only save global layout variants. 'U'. 'X'. 'A'. Space. What is value passed to i_save in set_table_for_first_display, so that The user allowed to save both user-specific and global layout variants?. 'U'. 'X'. 'A'. Space. Globla variants in ALV in customer namespace start with. /. character. &. digit. Globla variants in ALV in standard sap namespace start with. /. digit. character. &. you can transport only ____ layout variants, through layout ->transport. standard. user-specific. global. all the above. user specific variants in ALV in start with a_______. letter. digit. /. &. Choose the correct ways to display ALV with default variant: When saving a layout variant in ALV, you can define it as the default variant. pass i_default = 'X' in set_table_for_first_display. pass i_default = space in set_table_for_first_display. saving a layout with default-setting is not mandatory. To create or change standard layouts or to set them as the default setting, users require an authorization for object . S_ALV_LAYO with ACTVT value 23. S_ALV_LAYO with ACTVT value 21. S_ALV_LAYOUT with ACTVT value 21. S_ALV_LAYOUT with ACTVT value 23. you can choose a layout variant selection from selection-screen. What is the type of parameter should be declared?. disvariant-variant. variant-variant. disvariant-layout. layout-variant. You can change the layout of your ALV grid, for example, you can select the title, create a striped (zebra) pattern for the lines, or optimize the column width by creating structure in your program and referring to dictionary type ______. LVC_S_LAYI. LVC_S_LAYO. LVC_S_MENU. LVC_S_CELL. Depending on the value you enter in the gs_layout-sel_mode field in the layout structure(lvc_s_layo), users can select individual or several lines or cells. True. False. IN ALV layout, You can use exceptions to indicate by means of a traffic light whether threshold values have been reached, on a line-by-line basis through lvc_s_layo-excp_fname = 'fieldname'. true. false. In ALV To sort data using sort criteria, enter the name of column in the fieldname field. If you use more than one sort criterion, in each case, sequence in which the sort criterion is provided in the spos field which is mandatory. True. False. When you sort the data in ALV Grid, the sort direction is always ascending. True. False. To change the color of a line in the ALV Grid, you need to populate the fieldname consist of color in lvc_s_layo-info_fname and pass the structure to is_layout parameter of set_table_for_first_display method. True. False. To change the color of a line in the ALV Grid,If you are using a global structure type to describe the contents of the internal table, the color column will not be displayed. Instead, the ALV uses it to format the line accordingly. True. False. To change the color of a line in the ALV Grid, add an extra field to your data table that contains a code representing the color of the line. This is a character field with length _. 4. 8. 5. 3. To set the color of a row in the ALV Grid, you must fill fields in both the data table and the layout structure. True. False. In ALV Grid, color a row has more priority than color a cell. True. False. To highlight individual cells using colors, extend the line type of the output data table, adding an internal table of _______ type. LVC_T_SCOL. LVC_S_COL. LVC_T_COLL. LVC_S_COLL. To color a single cell within a row of the ALV Grid, you can use the internal with the linetype lvc_s_scol. what are its two components?. fname. color. info_name. What does the it_toolbar_excluding parameter of set_table_for_first_display method do the affect of appearance of the toolbar?. Deactivate the functions that specified. Deactivate the entire toolbar. Add user defined functions to the toolbar. To hide the individual function, define an internal table with the ui_functions line type. true. false. |