option
Cuestiones
ayuda
daypo
buscar.php
TEST BORRADO, QUIZÁS LE INTERESE: SAP 7.5 Practice
COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
SAP 7.5 Practice

Descripción:
SAP 7.5 Practice

Autor:
MR
OTROS TESTS DEL AUTOR

Fecha de Creación:
01/08/2023

Categoría: Otros

Número Preguntas: 50
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
3. Which view types can you use to join two tables with an outer join? There are 2 correct answers to this question. a. Maintenance view b. Database view c. Projection view d. Help view .
4. When is a foreign key check performed on an input/output field? Please choose the correct answer. a. If the field refers to the dictionary field for which a value help is defined b. If the field refers to the dictionary field for which a check table is defined c. If the field refers to the dictionary field for which a search is defined d. If the field refers to the dictionary field for which a append search is defined .
6. Which action on the underlying dictionary objects triggers a database table conversion? Please choose the correct answer. a. Changing the order of non-key fields. b. Inserting a field of type reference. c. Inserting an APPEND structure. d. Reducing the size of the field. .
12. What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. a. Define the join conditions between the tables. b. Choose the fields from the tables that should be part of the view. c. Define buffering settings for the underlying database tables. d. Define selection criteria for the view. e. Choose the database tables from where the view acquires data. .
25. You created a transparent table and during activation got a warning message "Enhancement category for table missing". What do you have to do to eliminate the warning message? Please choose the correct answer. a. Change the Data Class and Size category in the technical settings. b. Select the option Not Classified from the enhancement category. c. Select any option other than Not Classified from the enhancement category. d. Provide the correct reference field for the Currency or Quantity field. .
26. You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question a. Only A can be used in the FROM clause of a SELECT statement b. Only B can have either a left outer join or an inner join c. The tables joined in B must have foreign key relationships d. The tables joined in A must have foreign key relationships .
27. What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. a. Maintenance view b. Database view c. Help view d. Projection view .
30. What are the advantages of creating a database view to implement a join, instead of formulating the join directly in an Open SQL SELECT statement? There are 2 correct answers to this question a. An outer join can only be implemented in a database view b. A database view can be reused in other programs c. A database view can be buffered d. A secondary index can be created for a database view .
2. DOG is a subclass of ANIMAL. You have created a variable of type ANIMAL that references an instance of the DOG class. Which of the following statements can you use to copy this reference to a new variable of type DOG? Please choose the correct answer. a. WRITE……TO…… b. MOVE-CORRESPONDING…… TO…… c. MOVE…. TO….. d. MOVE……?TO…… .
11. Which of the following are valid combinations of event visibility and handler method visibility? There are 2 correct answers to this question. a. Protected event and public handler b. Public event and protected handler c. Private event and private handler d. Private event and public handler .
13. Which of the following is an implicit enhancement? There are 2 correct answers to this question. a. Overwrite method b. Pre-method c. Protected method d. Private method .
16. Which of the following tasks does the BADI implementing class perform? Please choose the correct answer. a. Inserting b. Sequencing c. Deleting d. Filtering .
17. Which of the following rules must you follow when you create a static constructor? There are 3 correct answers to this question a. You must name the method CONSTRUCTOR b. You must name the method CLASS_CONSTRUCTOR c. You can use ONLY importing parameters or exceptions d. You CANNOT use parameters or exceptions e. You can ONLY define static constructors in the public section .
18. Which of the following statements are true? Select all that apply. a. Implicit enhancement options allow you to enhance interface parameters for function modules and methods without modifying the repository object. b. None of the above. c. Implicit enhancement can be used to enhance SAP objects developed prior to SAP NetWeaver 7.0. d. An implicit enhancement point can be used to insert code in an SAP pro- gram and is always available to the customer. .
23. For which of the following requirements can you implement a functional method? There are 2 correct answers to this questions. a. A method to set an instance attribute with one importing parameter and no other parameters b. A factory method that returns an object reference c. A private static helper method that returns a single value as the result of an algorithm d. A handler method for an event that has a returning parameter .
25. You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? a. All components b. Only public components c. Only protected components d. Only private components .
4. Which of the following statements can you use to setup checkpoints in an ABAP program? There are 3 correct answers to this question. a. BREAK b. LOG-POINT c. BREAK-POINT d. ASSERT e. CHECK .
5. How is an ABAP program with several dialog steps executed? Please choose the correct answer. a. The ABAP dispatcher takes over the entire execution without assigning any work process. b. The program is always executed in just one dialog work process without roll out c. Usually, dialog steps are assigned to different dialog work processes. d. The program is always executed in just one dialog work process with roll out. .
6. Which of the following enhancements calls a customer function module. There are 2 correct answers to this question. a. User exit b. Business Add-in (BADIs) c. Business Transaction event d. Customer exit .
7. You have defined a classical screen (dynpro) with mandatory input fields. You want to exit the screen using the Cancel button even if not all of the mandatory fields have been filled. What is necessary to achieve this? Please choose the correct answer. a. Assign function type E to the Cancel button and handle it in a module with the addition AT EXIT-COMMAND. b. Set the function code assigned to the Cancel button to CANCEL and handle it in a module with the addition AT EXIT-COMMAND. c. Use the LOOP AT SCREEN. ... ENDLOOP statement to set the "required" property of the input fields to zero. .
9. How do you embed a subscreen in a main screen? Please choose the correct answer a. Use CALL SUBSCREEN in the flow logic of the main screen. b. Use SET SUBSCREEN in the flow logic of the main screen. c. Use CALL SUBSCREEN in a PBO module of the main screen. d. Use SET SUBSCREEN in a PBO module of the main screen. .
14. Each ABAP program that actually contains executable statements… There are 2 correct answers to this question. a. Is divided into processing blocks. b. Assigns every executable statement to a processing block regardless of it being in a processing block. c. Can be tested from the ABAP Workbench by pressing (F8). d. Has declarative statements outside of processing blocks that are considered local. e. Only assigns executable statements in a processing block to a processing block. .
15. Which of the following characters is the first of a menu exit function code? Please choose the correct answer. a. & b. % c. + d. - e. * .
32. Why should you bundle database updates in your dialog programs? Please choose the correct answer. a. To allow you to use SAP locks to ensure data consistency b. To avoid database locks set by an SQL statement that persists until the end of the program c. To be able to rollback database changes performed in the same dialog step d. To process the SAP LUW within the database LUW to ensure data consistency .
34. Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. a. Enable multiple versions of an area root class b. Generate an area root class c. Set the root object d. Call the attach_for_write method of area root class e. Declare a catalog object .
50. 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 accessed in the program? Please choose the correct answer. a. Use the GET statement in the program to transport the data from the screen field b. Define a data object in the program with the same name as the screen field c. Use a MOVE statement in a PAI module to copy the data to a data object .
54. What can you do with the code inspector? There are 2 correct answers to this question a. Create your own inspections, object sets and check variants b. Create only local inspections, objects sets and check variants c. Choose from only the performance, security and user interface check categories d. Create an object set to represent the programs and objects to be inspected .
59. In which controller type can you embed a service call? Please choose the correct answer. a. View controller b. Interface controller c. Component controller d. Configuration controller .
60. When would you call the RFC function module synchronously? There are 2 correct answers to this question. a. During queue processing b. During two-way communication c. During interactive communication d. During unidirectional communication .
61. What features are provided by the database interface? There are 3 correct answers to this question. a. Conversion of Open SQL statements from ABAP statements into the corresponding database statements b. Access to SAP table buffers c. Syntax check of Native SQL commands d. Database independence of application programs e. Data consistency check using foreign key relationships .
2. Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. a. H-HELP REQUEST b. S- SYSTEM c. T-TRANSACTION d. E-EXIT.
14. When are the changes to the VB* table transferred to the database? Please choose the correct answer. a. When the update work process is executed b. When an update function module is executed c. When the main program is executed d. When the enqueue work process is executed .
18. When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer. a. When the table is small and seldom written b. When the table is large and frequently written c. When the table is large and seldom written d. When the table is small and frequently written .
22. Which of the following are table buffering types? There are 3 correct answers to this question a. Generic b. Single-record c. Full d. Column-store e. Primary-key .
26. Which of the following generic types can you use to define a field symbol that will be assigned to a character string? There are 2 correct answers to this question a. Type csequence b. Type clike c. Type string d. Type xstring e. Type any .
5. You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. a. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System. b. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. c. Perform a program-related global search for a customer exit. d. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). e. Perform a program-related global search for GET BADI. .
7. Can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question a. Search for suitable entries in the relevant component in the Implementation Guide (IMG) b. Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder c. Search in the Repository Information System and choose Enhancements -> Customer Exits d. Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER .
8. What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question a. The index must always be unique b. The table will be updated more quickly if you create more indexes c. The most frequently selected fields should be at the first positions in the index d. The index can be created for specific database systems only .
1. What types of changes to the repository does SAP provide? There are 3 correct answers to this question. a. Support Packages b. SAP Notes c. Transports d. Enhancement Packages e. Deployments from SDN.SAP.COM .
3. Which of the following components belong to the SAP application layer? There are 2 correct answers to this question a. Database server b. ABAP dispatcher c. SAP GUI d. Database interface .
1. In the technical settings for a transparent table, buffering is switched on and single record buffering is selected. Which statement uses the buffered data assuming that the WHERE clause contains restrictions for all key fields? Please choose the correct answer a. SELECT … INTO TABLE … . b. SELECT SINGLE … FOR UPDATE. c. SELECT … . ENDSELECT. d. SELECT SINGLE … . .
7. When do you need to use the GROUP BY clause in the SELECT statement? Please choose the correct answer. a. If you want to use aggregate functions and at least one component in the field list is a column identifier b. If you want to use ORDER BY to specify a sub-order c. If you want to use aggregate functions and all components in the field list are aggregate functions d. If you want to redefine the sequence of the columns in the result set .
9. Which of the following types of SQL statements always bypass the SAP table buffers? There are 2 correct answers to this question. a. SELECT … UP TO 1 ROW b. SELECT … INNER JOIN… c. SELECT SINGLE d. SELECT SUM (sales) .
10. What will happen at runtime when accessing a buffered table? Please choose the correct answer. a. If data is read from the table buffer, the existing indexes are not used. b. All SELECT statements will read data from the buffer. c. If table data is read using indexes, the table buffer will not be filled. d. Following an update to a buffered record, all table buffers in the system will be updated. .
12. Which of the following conditions must be fulfilled when using a GROUP BY clause in a SELECT statement? There are 2 correct answers to this question. a. The fields after GROUP BY must have a character type. b. All fields in the SELECT clause that are not part of an aggregate function must be listed after GROUP BY. c. The table in the FROM clause must be a transparent table. d. The SELECT statement must also have a WHERE clause. .
20. What do you have to take into account before you decide to buffer a table? Please choose the correct answer. a. The data read from the buffer may NOT be current b. The entire table content must be loaded into the table buffer c. The database server must allow table buffering d. The data must always be read from the buffer .
2. Which of the following items are used in a Web Dynpro Application to transport database data to the user interface? There are 2 correct answers to this question. a. Inbound plug b. Interface controller c. Context node d. Supply function .
8. What can be exposed in the component interface of a Web dynpro component? Please choose the correct answer. a. Context nodes of WINDOW controllers b. Standard hook methods of the component controller c. Public attributes of WINDOW controllers d. Custom methods of the component controller .
11. You want to include an element of type ‘Table’ in your web dynpro. What actions add the corresponding columns to the table automatically? Please choose the correct answer. a. Include the method BIND_TABLE of IF_WD_CONTEXT_NODE. b. Bind the table attribute ‘DATA_SOURCE’ to the context node. c. Generate a ‘BIND_TABLE’ method using the web dynpro method wizard. d. Right click the table and select the ‘CREATE_BINDING’ option. .
13. What does a Web Dynpro component contain? There are 3 correct answers to this question. a. A context b. Exactly one interface controller c. UI elements d. Multiple views within a window e. Component controller .
Denunciar Test