option
Cuestiones
ayuda
daypo
buscar.php

FV2023(SUS1)_7.5_2

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
FV2023(SUS1)_7.5_2

Descripción:
FV2023(SUS1)_7.5_2

Fecha de Creación: 2022/12/30

Categoría: Otros

Número Preguntas: 57

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

The SAP NetWeaver AS (Application Server) offers the possibility to install an ABAP stack or a Java stack. Which of the following statements about the possible combinations of ABAP and Java stacks in one SAP NetWeaverApplication Server is true? Please choose the correct answer. In one SAP NetWeaver Application Server there can be installed either an ABAP stack or a Java stack, but never both stacks. In one SAP NetWeaver Application Server there can be installed either a stand-alone ABAP stack, or a combination of an ABAP stack and a Java stack, but there can never be installed a stand-alone Java stack. In one SAP NetWeaver Application Server there can be installed either a stand-alone ABAP stack, or a stand-alone Java stack, or a combination of an ABAP stack and a Java stack. In one SAP NetWeaver Application Server there always must be installed both stacks.

Which of the following statements about the SAP NetWeaver is true?. The Bank Analyzer is part of SAP NetWeaver. SAP NetWeaver provides tools to integrate a heterogeneous software landscape. The Industrial Solution Utilities (ISU) is part of SAP NetWeaver. SAP NetWeaver can be used to integrate non-SAP application systems. The main purpose of SAP NetWeaver is to integrate people, information, and processes and to provide a platform for application.

The configuration of a SAP system comprises several server layers. Which of the following is the smallest possible configuration of a SAP system concerning its server layers? Please choose the correct answer. Presentation Server, Internet Server, Computing Server. Presentation Server, Internet Server, Database Server. Presentation Server, Application Server. Presentation Server, Application Server, Database Server.

You execute an ABAP program with several dialog steps (screens). Which statement is correct? Please choose the correct answer. The entire program is always processed in exactly one dialog work process. This dialog work process also remains reserved for this program while the screen is displayed on the front end. The ABAP dispatcher takes over the entire execution of the ABAP programs and gets the user context of the programs from the roll area. The program components for the individual dialog steps are usually executed in various dialog work processes that are released once a program component has been processed (while the screens are displayed on the front end).

You have got defined two classes cl_airplane and cl_passenger_plane, where cl_passenger_plane is the sub class of cl_airplane. In the class cl_airplane is the public instance method display_attributes defined, which has no parameters. In the sub class cl_passenger_plane is the public instance method display_number_of_seats defined, which has also no parameters. In your program you have implemented the following lines: • DATA r_airplane TYPE REF TO cl_airplane, • r_passenger TYPE REF TO cl_passenger_plane. • CREATE OBJECT r_passenger. r_airplane = r_passenger. Which of the following method calls are syntactically correct? (in relation to the above coding lines) There is more than one correct answer to this question. R_Airplane->Display_Attributes( ). R_Airplane->Display_Number_Of_Seats( ). R_Passenger->Display_Attributes( ). R_Passenger->Display_Number_Of_Seats( ).

One of your colleagues has left your company and now you in charge of maintaining his programs. One program deals with the handling of lists. You are going through the coding and in the main part of the program you find the following lines: DATA: current_list_no TYPE i. . . . current_list_no = cl_list=>number_of_lists( ). Of what type of component is the item number_of_lists?. number_of_lists is a public static attribut of the class cl_list. number_of_lists is a public instance attribut of the class cl_list. number_of_lists is a public static functional method of the class cl_list. number_of_lists is a public instance functional method of the class cl_list.

When you implement a class you can use most of the procedural ABAP statements within the class. But some statements are forbidden. What is forbidden within class definition? There are 3 correct answers to this question. The definition of internal tables with header lines. The definition of nested structure. The TABLES statement. Typing with LIKE to ABAP Dictionary types.

You can realize polymorphism between objects from different classes, if these classes are connected over inheritance. For objects of classes which are not connected over inheritance there exists another technique to achieve polymorphism. Over which of the following concept you can also achieve polymorphism? Please choose the correct answer. The event concept. The friend concept. The Interface Concept.

You are writing a Business-Server-Page-Application (BSP) where you use the global class CL_BSP_CONTROLLER2. This class has implemented the global interface IF_BSP_CONTROLLER in which the method HANDLE_EVENT is defined. There is no other method in the class CL_BSP_CONTROLLER2 with the name HANDLE_EVENT. In your program we find the following lines: DATA: r_class TYPE REF TO cl_bsp_controller2, r_interface TYPE REF TO if_bsp_controller. CREATE OBJECT r_class. CREATE OBJECT r_interface TYPE cl_bsp_controller2. Which of the following method calls are syntactically correct? (in relation to the above coding lines). r_class->if_bsp_controller~handle_event(…). r_class-> handle_event(…). r_interface->handle_event(…). r_interface->if_bsp_controller~handle_event(…).

order to write generic programs, which can be used in different contexts polymorphism is a very strong tool. Which technique is a basic requirement for polymorphism? Please choose the correct answer. Up-Cast. Down-Cast. Equal-Cast.

You like to create a list with the global class CL_GUI_ALV_GRID. In this class the event DOUBLE_CLICK is defined, in that way that if a user makes a double click with his mouse on the list, the event would be raised. In your case every time the user makes a double click on the list a popup should appear which shows the number of the line on which has been double clicked. What do you have to do therefore? There is more than one correct answer to this question. Define a local class in which the event DOUBLE_CLICK is redefined and raised. Write a handler method for the event DOUBLE_CLICK of the class CL_GUI_ALV_GRID, which calls the popup. Catch the event DOUBLE_CLICK with the CATCH statement under which the popup call is implemented. Register for the the event DOUBLE_CLICK by using the statement SET HANDLER.

If you program you need the names of the fields of a structure wa_material at runtime. Therefore you can use the RTTI classes. The root class is cl_abaptypedescr, which provides a public static functional method describe_by_data. This method returns a reference of type cl_abap type descr you have defined are reference r_descr as follows DATA r_describe TYPE REF TO cl _abap_structdescr. The clad cl_abap_ structdescr is a sub class of cl_abap_ typedescr. Which of the statement is syntactically correct?. r_describe ?= cl_abap_typedescr =>describe_by_data( wa material ). r_describe = cl_abap_typedescr=>describe_by_data( wa _material ). r-describe != cl_abap_typedescr=>describe_by_data( wa material ).

In the GUI programming you need a class cl_gui_manager, which manages the windows of a screen. For this task you must ensure that only one object of the class cl_gui_manager can be created. Therefore you have to implement a singleton. There is more than one correct answer to this question. The singleton class cl_gui_manager must have the addition CREATE PRIVATE in the definition part. In the singleton class cl_gui_manager, there must be an event defined that is triggered when the first and only object is created and also prevents further objects of this class from being created. The singleton class cl_gui_manager must have a class method implemented in which the CREATE OBJECT call is programmed for this one object. The CREATE OBJECT call for this one object can take place in the class constructor of the singleton class cl_gui_manager.

You have implemented a class cl_customer where you have defined a private attribute name. From where you can access the attribute name directly? There is more than one correct answer to this question. You have direct access to the attribute name from all methods of the class cl_customer itself. You have direct access to the attribute name from all methods of all sub classes of cl_customer. You have direct access to the attribute name from all methods of a class cl_friend, where cl_customer grants friendship to the class cl_friend. You have direct access to the attribute name from the main part of the program.

15. In a class cl_vehicle you need a method get_fuel, which estimates the fuel consumption of a vehicle. This method should be implemented as a functional method. How you define a functional method and where you can use the functional method? There Is More Than One Correct Answer To This Question. A functional method can have any number of IMPORTING and EXPORTING. A functional method has exactly one RETURNING parameter. You Can Use A Functional Method Directly In An Arithmetic Expression. You can use a functional method directly in a WRITE statement.

You need to create a numeric data object that can contain up to 12 decimal places and where no rounding error is to be feared of. Which of the following statements concerning ABAP type P are true? There is more than one correct answer to this question. The initial default value of a data object of ABAP type P is 0. A data object of type P has a default length of 8 bytes. With the addition LENGTH you can define how many decimal places your data object of type P will have. For example with LENGTH 12 you will get a data object that can contain up to maximally 12 decimal places. The sign information takes up one entire extra byte.

Which of the following places uses of types? There are 3 correct answers to this question. Definition and subroutine parameters. Definition of method parameters. Definition of parameters for PBO modules. Definition of selection screen parameters.

Your colleagues need your advice on some implicit type conversion issues. Which of the following statements are correct? There is more than one correct answer to this question. A data object of type N may be used for calculations (though type N is not the best type to do so). As a matter of principle it is forbidden to assign to a data object of type I the content of a data object of type STRING. As a matter of principle it is forbidden to assign to a data object of type STRING the content of a data object of type I. To assign a value from a data object of type C to a data object of type P, the value must have the following form: 1234.5678.

19. At which of the following places is made use of types? There is more than one correct answer to this question. Data objects. Selection screen parameters. Selection screen select-options*. Subroutine parameters. Parameters for PBO modules. Parameters for PAI modules. Function module parameters. Method parameters.

Let's assume there would be a ABAP Dictionary structure STR1. Now for whatever reason you want to create a local type of the same name STR1. What would happen if you created the local type in your program and then created a structure that is typed with STR1? TYPES: BEGIN OF str1, comp1, comp2, END OF str1. DATA: my_str TYPE str1. Please choose the correct answer. The local definition of type STR1 will be used. The ABAP Dictionary definition (the global definition) of STR1 will be used. There will be a syntax error.

Your colleagues need your advice on several ABAP types. Which of the following statements are correct? There is more than one correct answer to this question. You can compute a date with the following: DATA: old_date type d, new_date type d. old_date = sy-datum. new_date = old_date + 14. A data object of ABAP type STRING initially takes up no space. If any data is put into it at runtime, it takes up exactly the space that is needed. If it is cleared later, the value is changed to spaces, but the previous length of it will remain. Type X is useful for working with bit information’s. A data object of type X has a fixed length while with a data object of type XSTRING the length changes dynamically depending on the length of the content*.

Dbtab is a transparent table in the ABAP Dictionary. What do you get then with the following variable definition? DATA myvar TYPE dbtab. Please choose the correct answer. An elementary field. A structure variable (work area). An internal table.

Which of the following statements concerning constants at runtime is correct? Please choose the correct answer. The value of a constant cannot be changed at runtime. The value of a constant can be changed at runtime, if there have not been any executable statements so far that made use of the constant's value. The value of a constant can be changed at runtime anytime without any restrictions.

In the top of a program you find the following type definition: TYPES: BEGIN OF t1, comp1 TYPE scarr-carrid, comp2 TYPE scarr-carrname, END OF t1. Which of the following ABAP statements referring to Type t1 would be syntactically correct? There is more than one correct answer to this question. DATA str1 TYPE t1. DATA str1 LIKE t1. TYPES t2 LIKE t1. TYPES t2 TYPE t1.

You want the system to output a list in the program using the SAP ALV Grid Control. Which order do you have to carry out the following steps in the program to achieve this? A. Create a screen and define custom control area in this screen. B. Generate an object of class CL_GUI_CUSTOM_CONTAINER. C. Generate and object of class CL_GUI_ALV_GRID. D. Call method SET_TABLE_FOR_FIRST_DISPLAY. A-B-C-D. B-A-C-D. C-D-A-B. A-C-D-B.

You need to create an integer data object and you wonder about the features of ABAP type I. Which of the following statements is correct?. A data object of type I always has the length of 8 bytes. A data object of type I can have the length of 1, 2, or 4 bytes. The actual length depends of the content. A data object of type I always has the length of 4 bytes.

For a database table zdepartment you should define the text tablezdepartmentt in the ABAP Dictionary where the names of the departments are stored. How would you design the table zdepartmentt so that it is the text table of the table zdepartment?. The text table zdepartmentt is a cluster table type. The text table zdepartmentt is linked with table zdepartment by a foreignkey for the type of the foreign key fields you choose Key fields of a texttable. The text table zdepratmentt has at least one text field which is not a keyfields. The text table zdepartmentt has the same key fields as the tablezdepartment plus one additional key field of data type LANG.

You should implement a search help, where the data of the search help should be selected via outer join. Which of the following view types you would choose? Please choose the correct answer. The database view. The help view. The maintenance view.

When you define a field of a database table you references to data element which normally references to a domain. But it is also possible to define the data type directly in the data element, without referencing to a domain. Which feature do you get, if you define the data type by referencing to a domain? Please choose the correct answer. Only then it is possible to define a check table for this table field. Only then you can link a search help to this table field. Only then can you add this table field to a database view.

For a field of an SAP transaction there are two simple search helps A and B (in a collective search help)provided by SAP. But your users only need the simple search help A. Your task is it to hide the other simple search help B but without modify the program / search help. How would you proceed? Please choose the correct answer. You set the hidden flag for the simple search help B directly in the SAP collective search help. You define an append search help for the SAP collective search help, include the simple search help B and set the hidden flag. You have to do nothing. The system administrator can hide the simple search help B by customizing.

You create an ABAP dynpro to enter flight connection data. Each connection is identified by the contents of the fields CARRID (carrier id) a nd CONNID (connection id) in the database table SPFLI. The carriers are stored in table SCARR and identified by the value of the field CARRID. What is the easiest way to ensure that only CARRID values from field SCARR-CARRID can be entered in the dynpro? Please choose the correct answer. Define SPFLI-CARRID As A Foreign Key Field With Check Table SCARR And Foreign Key MANDT And CARRID. Define SCARR-CARRID as a foreign key field with check table SPFLI and foreign key MANDT and CARRID. Maintain SCARR as the value table of the domain of field SPFLI-CARRID. Implement a PAI module that checks that the user has entered a correct value. Implement a search help that ensures that the user can only enter correct values.

You create an ABAP classical screen (dynpro) to enter flight connection data Each connection is identified by the contents of the field MANDT (client), CARRID (carrier ID) and CONNID (connection ID) in the database table SPFLI. The carriers are stored in table SCARR and identified by the value of the field CARRID. What is the easiest way to ensure that only CARRID values form field SCARR-CARRID can be entered in the dympro?. Define SPFLI-CARRID as a foreign key field with check table SCARR and foreign key MANDT and CARRID. Implement a search help that ensure that the user can only entercorrect values. Defined SCARR-CARRID as foreign key field with check table SPFLI and foreign key MANDT and CARRID. Implement a PAI module that check that the user has entered a correct value. Maintain SCARR as the value table of the domain of field SPFLI-CARRID.

In the ABAP dictionary you create two tables BKPF and BPOS which contain header data and position data of accounting documents. The primary key of BKPF consists of MANDT (client), and BLNR (document number). The primary key of BPOS consists of MANDT (client), BELNR (document number), and POS (position). You want to make sure that field BELNR of BPOS can only contain values from field BELNR in BKPF. How can you enforce this? Please choose the correct answer. Define BPOS-BELNR as a foreign key field with the check table BKPF and the foreign key consisting of MANDT and BELNR. Define BPOS-BELNR as a foreign key field with the value table BKPF and the foreign key consisting of MANDT and BELNR. Define BKPF-BELNR as a foreign key field with the check table BPOS and the foreign key consisting of MANDT and BELNR. Define BKPF-BELNR as a foreign key field with the value table BPOS and the foreign key consisting of MANDT and BELNR. It is not possible too enforce that BPOS-BELNR contains only values from BKPF-BELNR.

Which of the following statements about data types and data objects are correct? There is more than one correct answer to this question. Data types can be defined only in the ABAP Dictionary. A data type can be used to define variables or constants*. Data type can be defined in the program. Data types can be defined in the ABAP Dictionary. A data object is a variable. A data type is a description of a variable.

You want to know how many connections in table SPFLI exist with CARRID='AZ'. What is the best way to do this? Please choose the correct answer. Use a select with aggregation function COUNT. Use a select loop and increment a counter in the body of the loop. Use a select loop and look at sy-dbcnt after the loop. Use an array fetch and use DESCRIBE TABLE.

You Want To Write A Dialog Program That Changes Data On The Database. You Want To Bundle All Updates By Using Update Function Modules. You Want To Inform The User, If One Of The Update Function Modules Fails. What Is The Easiest Way To Do This? Select The Best Answer. The System Will Notify The User Automatically With An Express Message. Perform the update synchronously, retrieve the status and write a message to the inbox of the user. Run a job, that periodically checks the result of the update and writes a message to the inbox of the user. After the commit work, wait a couple of seconds, check the results of the update and write a message to the inbox of the user.

You want to write a dialog program that changes data on the database. You want to bundle all updates by using update function modules. What do the function modules have to do if they encounter a problem? Please choose the correct answer. Write an error message with MESSAGE exxx(nnn). Write a warning with MESSAGE wxxx(nnn). Inform the user with MESSAGE ixxx(nnn). Abort the program with MESSAGE axxx(nnn).

Why do you need to bundle database updates in your dialog programs? There is more than one correct answer to this question. To increase the performance of your program. Because there is no implicit database commit alter each dialog step. To be able to keep the database in a consistent state if the user wants to cancel the transaction. Because there is an implicit database commit alter each dialog step.

You want to write a dialog program that changes data on the database. Which database update strategies could you use? There is more than one correct answer to this question. Write changes to the database with INSERT and MODIFY and a COMMIT or ROLLBACK WORK in each appropriate dialog step. Use PERFORM ON… COMMIT in each appropriate dialog step and COMMIT WORK in the last dialog step. Use CALL FUNCTION… IN UPDATE TASK in each appropriate and COMMIT WORK in the last dialog step. Write changes to the database with INSERT and MODIFY and a COMMIT WORK in the last dialog step only. Write changes to the database with INSERT and MODIFY in each appropriate dialog step and a COMMIT or ROLLBACK WORK in the last dialog step only.

You want to display data of accounting document with BELNR = 1000 from tables BKPF and BPOS. These tables contain header data and position data. The primary key of BKPF consists of MANDT (client), and BLNR (document number). The primary key of BPOS consists of MANDT (client), BELNR (document number), and POS (position). Which would be the correct statement to achieve this? There is more than one correct answer to this question. SELECT * FROM bkpf INNER JOIN bpos ON bkpf~belnr = bpos~belnr INTO wa WHERE bkpf~belnr = '1000'. SELECT * FROM bkpf INNER JOIN bpos ON bkpf.belnr = bpos.belnr INTO wa WHERE bkpf.belnr = '1000'. SELECT * FROM bkpf RIGHT OUTER JOIN bpos ON bkpf~belnr = bpos~belnr INTO wa WHERE bkpf~belnr = '1000'. WHERE bkpf.belnr = '1000'. (incorrect) SELECT * FROM bkpf INNER JOIN bpos ON belnr INTO wa WHERE bkpf~belnr = '1000'.

Why do you need to bundle database updates in your dialog programs? There is more than one correct answer to this question. Because there is an implicit database commit after each dialog step. To increase the performance of your program. Because there is no implicit database commit after each dialog step. To be able to keep the database in a consistent state if the user wants to cancel the transaction.

42. You want to select the fields MATNR, ENAM and EDAT from table MARA to display them in a report. What would be the best way to do this? Please choose the correct answer. Declare a work area wa of type MARA and use SELECT * FROM mara INTOwa. Declare a work area wa containing only fields MATNR, ENAM and EDAT and use SELECT matnr enam edat FROM mara INTO wa. Declare a work area wa of type MARA and use SELECT matnr enam eedat FROM mara INTO wa. Declare a work area wa containing only fields MATNR, ENAM and EDAT and use SELECT * FROM mara INTO CORRESPONDING FIELDS OF wa.

You should implement a search help should be selected via outer join. Which of the following view types would you choose?. The help view. The maintenance view. The database view.

You want to display data from transparent tables BKPF and BPOS which contain header data and position data of accounting documents. The primary key of BKPF consists of MANDT (client) and BELNR (document number). The primary key of BPOS consists of MANDT (client), BELNR (document number),and POS (position). What are you options to select data from BKPF together with the corresponding data from BPOS?. Use a view. Use an inner join. Use two nested select loops. Use a left outer join. Use a right outer join.

You want to write a dialog program that changes data on the database. You want to bundle all updates by using update function modules. What are your options for the database updates with the help of these function modules? There is more than one correct answer to this question. Usually, the update is performed asynchronously in a special update task. You may perform the update synchronously in a special update task. You may perform the update synchronously in your dialog task. The update task will always automatically release any write locks you have set.

In your ABAP program you want to display a dialog box that asks the user to confirm a chosen action. Which function module can you use to do this? Please choose the correct answer. POPUP_TO_CONFIRM. DIALOG_TO_CONFIRM. USER_CONFIRM. There is no such function module.

You want to create a selection screen for your ABAP executable program. Which statements can you use to do this? There is more than one correct answer to this question. PARAMETERS. SELECT-OPTIONS. FIELD-SYMBOLS. TABLES. RANGE OF.

You want to write a subroutine named check_booking that receives a parameter of type sbook. You want to change fields of the actual parameter within your subroutine, but only if your subroutine executes without any error. How do you declare the subroutine? Please Choose The Correct Answer. FORM check_booking CHANGING VALUE(p_book) TYPE sbook. FORM check_booking USING p_book TYPE s_book. FORM check_booking CHANGING p_book TYPE s_book ON RETURN. FORM check_booking USING VALUE(p_book = TYPE sbook). FORM check_booking CHANGING p_book TYPE sbook.

You write an ABAP executable program that displays the flight connections between two cities. Your have provided selection parameters for departure city and destination city. In your program you have written event blocks for the event blocks AT SELECTION-SCREEN, INITIALIZATION, START-OF-SELECTION, TOP-OF-PAGE (in alphabetical order). In which sequence will ABAP Runtime call these event blocks? Please choose the correct answer. INITIALIZATION, LOAD OF PROGRAM, START-OF-SELECTION, AT SELECTION-SCREEN. INITIALIZATION, AT SELECTION-SCREEN, LOAD OF PROGRAM, START-OF-SELECTION. INITIALIZATION, LOAD OF PROGRAM, AT SELECTION-SCREEN, START-OF-SELECTION. LOAD OF PROGRAM, INITIALIZATION, AT SELECTION-SCREEN, START-OF-SELECTION.

You want to display a dialog box window in your ABAP dialog program. Which statement can you use to do this? Please choose the correct answer. GO TO SCREEN 200. CALL SCREEN 200. SET SCREEN 200. CALL SCREEN 200 STARTING AT 5 5.

You want to generate page headers for a secondary list in an ABAP executable program. Which event block do you use to do this? Please choose the correct answer. AT LINE-SELECTION. TOP-OF-PAGE. TOP-OF-PAGE DURING LINE-SELECTION. NEW-PAGE. END-OF-PAGE.

You create a function group ZATP that contains a couple of function modules to manage material master data. What is the name of the corresponding main program? Please choose the correct answer. SAPTZATP. SAPLZATP. ZATP. SAPMZATP. SAPFZATP.

You need to create an ABAP program that displays a list of invoices from a supplier. What types of programs can you create to achieve this goal?. ABAP Include Program. ABAP Subroutine Pool. ABAP WebDynpro application. ABAP Executable program. ABAP Module Pool.

You have written a module pool that manages flight connections. How ca n the end-user start a screen in your module pool? Please choose the correct answer. The user uses transaction SA38 to start a screen in the module pool. The user uses a dialog transaction that you have created to start a screen in the module pool. The administrator assigns a screen in the module pool to the profile of the user. The user then can start this screen from his user menu.

You have written a Dynpro with number 100 in a module pool containing a button labeled Save. You have assigned the function code 'SAV' to this button. In the PAI module user_command_100 you want to check whether the user has clicked this save button. How can you achieve this? Please choose the correct answer. Check if the field SY-OKCODE contains the value 'SAV'. Check if the field ok_code contains the value 'SAV'. Check if the field with the ok attribute in the screen 100 contains the value 'SAV'. Check if the field SY-UCODE contains the value 'SAV'.

You want to write an ABAP program that makes use of the SAP GUI. Which of the following UI types can you use?. Selection screens. Business Server Pages (BSPs). Classical screens (dynpros) with controls (like the ALV Grid Control). ABAP Web Dynpro.

57 -CERTABAP. J. J.

Denunciar Test