Jose Bermejo
Test por , creado hace más de 1 año

ABAP ABAP 7.50 Test sobre ABAP 2, creado por Jose Bermejo el 19/11/2019.

1176
1
0
Jose Bermejo
Creado por Jose Bermejo hace alrededor de 5 años
Cerrar

ABAP 2

Pregunta 1 de 30

1

What options do you have when setting a watchpoint?
There are 2 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • Stop at any change of all variables

  • Stop at predefined conditions for a specific variable

  • Stop at any change of a specific variable

  • Stop at predefined conditions for all variables

Explicación

Pregunta 2 de 30

1

How would you define a method of an ABAP class to prevent this method from being available in a subclass?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • Protected

  • Private

  • Abstract

  • Final

Explicación

Pregunta 3 de 30

1

Where can you define global data types that are visible system-wide?
There are 3 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • In the ABAP Dictionary

  • In a global interface

  • In a function module

  • In a method of a global class

  • In a global class

Explicación

Pregunta 4 de 30

1

When you define local classes in ABAP, which syntactical sequence must you follow?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • The order is handled automatically

  • PUBLIC SECTION, PROTECTED SECTION, PRIVATE SECTION

  • PRIVATE SECTION, PROTECTED SECTION, PUBLIC SECTION

  • The order doesn’t matter

Explicación

Pregunta 5 de 30

1

Which of the following structures is created when you use a table type to define one of its components?

Selecciona una de las siguientes respuestas posibles:

  • Nested structure

  • Append structure

  • Flat structure

  • Deep structure

Explicación

Pregunta 6 de 30

1

Where can you define data types that can be accessed directly by all ABAp repository objects in an SAP system?
There are 2 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • In a method

  • In a global class

  • In a function module

  • In the ABAP dictionary

Explicación

Pregunta 7 de 30

1

In which database table type is there a one-to-one relationship between the Dictionary table definition and the relevant physical table in the database?

Selecciona una de las siguientes respuestas posibles:

  • Internal table

  • Pooled table

  • Transparent table

  • Cluster table

Explicación

Pregunta 8 de 30

1

How do you use a sorted internal table?
There are 2 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • You need to specify a key in the table declaration

  • You use APPEND to insert records at the correct position

  • You can read the records by index or key

  • You can resort the table with SORT

Explicación

Pregunta 9 de 30

1

What are the advantages of defining texts symbols in executable programs?
There are 2 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • The same text symbol can be used by other programs

  • They facilitate multilingual functionality

  • They are easier to maintain than literals

  • Then can store up to 256 characters

Explicación

Pregunta 10 de 30

1

Global data types defined in SAP systems are…
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • Date types defined in the program using ABAP Dictionary types.

  • Date types does not defined Dictionary types

  • ABAP Dictionary types

  • Data defined in the program that is visible to all the routines/statements within the ABAP program

Explicación

Pregunta 11 de 30

1

Which of the following is correct?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • None of the above

  • 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

  • The screen attributes can be modified in the PROCESS AFTER INPUT event block

Explicación

Pregunta 12 de 30

1

Which statement is used to generically define the data reference variable z1?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • data z1 type any table

  • data z1 type ref to data

  • data z1 type ref to PA0001

  • data z1 type any

Explicación

Pregunta 13 de 30

1

Which of the following ABAP statements throws an error at the syntax check?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • DATA variable(5) TYPE p

  • DATA variable

  • DATA variable(5) TYPE n

  • DATA variable(5) TYPE t

Explicación

Pregunta 14 de 30

1

You are making changes to a program that already has a transaction code linked to it. Your colleague is testing the transaction in your development system. At what point can the changed version of the program be tested?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • When you perform a syntax check on the program

  • When you save the program

  • When you release the transport requests for the program

  • When you activate the program

Explicación

Pregunta 15 de 30

1

Which of the following statements are true?
There are 2 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • Standard tables can be accessed by index.

  • Hashed tables are always accessed by index.

  • Hashed tables are accessed by a unique key

  • A sorted table is always accessed by a unique key

  • Standard tables cannot be accessed by index

Explicación

Pregunta 16 de 30

1

You want to select all the records from a database table where field CITY contains substring ‘BU’ in any position. Which WHERE clause can you use in an Open SQL select statement?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • WHERE city LIKE ‘_BU’

  • WHERE city LIKE ‘%BU%’

  • WHERE city LIKE ‘%BU*’

  • WHERE city LIKE ‘*BU*’

Explicación

Pregunta 17 de 30

1

Your code contains the following statement:

READ TABLE gt_itab INTO gs_struc INDEX 1.

When defining gt_itab, which internal table types can you use?

Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • Sorted and hashed

  • Standard and hashed

  • Standard, sorted, and hashed

  • Standard and sorted

Explicación

Pregunta 18 de 30

1

Which statements are allowed for processing internal tables?
There are 3 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • MODIFY

  • UPDATE

  • DELETE

  • INSERT

  • SELECT

Explicación

Pregunta 19 de 30

1

What type of ABAP Dictionary view is implemented as an INNER JOIN?

Selecciona una de las siguientes respuestas posibles:

  • Maintenance view

  • Database view

  • Help view

  • Projection view

Explicación

Pregunta 20 de 30

1

What is the correct order for using a lock object?

Selecciona una de las siguientes respuestas posibles:

  • Set the lock, read the data, release the lock, change the data

  • Set the lock, read the data, change the data, release the lock

  • Read the data, set the lock, change the data, release the lock

  • release the lock, Read the data, set the lock, change the data

Explicación

Pregunta 21 de 30

1

You want to create a transparent table in the ABAP dictionary.
When the table is physically created in the database?

Selecciona una de las siguientes respuestas posibles:

  • When you activate the table

  • When you insert the table name and select create

  • When you run the database utility transaction (SE14)

  • When you save the table

Explicación

Pregunta 22 de 30

1

What are the advantages of modularization?
There are 3 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • Transparency

  • Profitability across DBMS

  • Maintainability

  • Reusability

  • Performance

Explicación

Pregunta 23 de 30

1

Which prerequisites must be fulfilled before a repository object can be transported?
There are 3 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • A transport layer must be assigned to the package

  • The repository object must be assigned to a package.

  • An inactive version of the repository object must exist.

  • An application component must be assigned to the repository object.

  • The repository object must be assigned to a change request.

Explicación

Pregunta 24 de 30

1

What types of changes to the repository does SAP provide?
There are 3 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • Support Packages

  • Enhancement Packages

  • Deployments from SDN.SAP.COM

  • SAP Notes

  • Transports

Explicación

Pregunta 25 de 30

1

How can you improve the performance when accessing a large data volume database table?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • Switch the database table to fully buffered.

  • Define appropriate indexes for the database table

  • Apply the appropriate data class and size category

  • Change the table type in the dictionary

Explicación

Pregunta 26 de 30

1

You want to loop over an internal table without copying each table row to a work area.
How can you achieve this using a field symbol?
Please choose the correct answer.

Selecciona una de las siguientes respuestas posibles:

  • LOOP AT <itab> TRANSPORTING INTO <field_symbol>. ENDLOOP.

  • LOOP AT <itab> ASSIGNING <field_symbol>. ENDLOOP

  • LOOP AT <itab> INTO <field_symbol>. ENDLOOP

  • LOOP AT <itab> REFERENCE INTO <field_symbol>. ENDLOOP

Explicación

Pregunta 27 de 30

1

What are characteristics of a hashed internal table?
There are 2 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • It can have a non-unique key

  • It can be accessed using the key

  • It must have a unique key

  • It can be accessed using the index.

Explicación

Pregunta 28 de 30

1

You are using the new debugger and you want to change the content of an internal table.
Which actions are allowed?
There are 3 correct answers to this question.

Selecciona una o más de las siguientes respuestas posibles:

  • Delete table from memory

  • Delete the selected rows

  • Change row content and press Save (<CTRL> + S)

  • Delete the entire contents of a table

  • Change row content and press Enter (<ENTER>)

Explicación

Pregunta 29 de 30

1

You need to create a piece of code that can be used by multiple programs.

Which of the following techniques for modularization does SAP recommend?

There are 2 correct answers to this question

Selecciona una o más de las siguientes respuestas posibles:

  • A method in a global class

  • A function module in a function group

  • A method in a local class

  • A subroutine in a program

Explicación

Pregunta 30 de 30

1

Where should the labels for fields be stored?

Selecciona una de las siguientes respuestas posibles:

  • Table

  • Structure

  • Domain

  • Data element

  • Field

Explicación