ABAP 4

Beschreibung

TAW10 - parte 2 - hasta capitulo 7
Jose Bermejo
Quiz von Jose Bermejo, aktualisiert more than 1 year ago
Jose Bermejo
Erstellt von Jose Bermejo vor mehr als 4 Jahre
851
0

Zusammenfassung der Ressource

Frage 1

Frage
Which of the following statements are true? There are 3 correct answers to this question.
Antworten
  • You cannot use a pooled or cluster table for a database view.
  • The tables included in the maintenance view should have foreign key relationships.
  • The tables included in the help view should have a foreign key relationship.
  • Projection views can have more than one table included for the view definition.

Frage 2

Frage
You want to add a field ZZPRICE to the SAP standard transparent table EKKO. Which of the following actions result in an enhancement of the SAP standard? There are 2 correct answers to this question.
Antworten
  • Insert ZZPRICE at the end of the table
  • Create an append structure and add ZZPRICE to it.
  • Add ZZPRICE to the customizing include for the table
  • Insert ZZPRICE into an SAP structure for the table

Frage 3

Frage
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer.
Antworten
  • Define an append structure with these two fields and assign this append structure to both database tables.
  • Define the two fields in one database table and copy them to the other database table.
  • Define the two fields in each database table separately.
  • Define a structure with these two fields and include this structure in both database tables

Frage 4

Frage
When included in a structure, which elementary field types allow the structure to be considered a character-type data object? There are 4 correct answers to this question.
Antworten
  • XSTRING
  • STRING
  • N
  • T
  • X
  • D
  • C
  • F

Frage 5

Frage
Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question.
Antworten
  • Table name
  • Buffering type
  • Data class
  • Size category
  • Delivery class

Frage 6

Frage
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question.
Antworten
  • Fully qualified key for sorted tables
  • Left justified part of key for hashed tables
  • Left justified part of key for sorted tables
  • Index access for standard tables
  • Index access for hashed tables

Frage 7

Frage
An executable ABAP program contains a standard selection screen and uses the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPUT, INITIALIZATION, START-OFSELECTION. In which sequence will ABAP runtime call these event blocks? Please choose the correct answer.
Antworten
  • 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. AT SELECTION-SCREEN 4. START-OF-SELECTION
  • 1. INITIALIZATION 2. AT SELECTION-SCREEN OUTPUT 3. START-OF-SELECTION 4. AT SELECTION-SCREEN
  • 1. AT SELECTION-SCREEN OUTPUT 2. INITIALIZATION 3. AT SELECTION-SCREEN 4. START-OF-SELECTION
  • 1. INITIALIZATION 2. AT SELECTION-SCREEN 3. AT SELECTION-SCREEN OUTPUT 4. START-OF-SELECTION

Frage 8

Frage
Which of the following can you assign a search help to? There are 3 correct answers to this question
Antworten
  • Table type
  • Check table
  • Structure component
  • Data element
  • Domain

Frage 9

Frage
Which of the following ABAP standard types are numeric? There are 3 correct answers to this question.
Antworten
  • F
  • D
  • N
  • I
  • P

Frage 10

Frage
You want to add a field type CURR to a transparent table. What else must you do? Please choose the correct answer.
Antworten
  • Add a key fieldof type CUKY.
  • Add a check table that contains a field of type CUKY.
  • Create a reference to a field of type CUKY.
  • Create a new field CUKY as a pre-defined type.

Frage 11

Frage
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? Please choose the correct answer.
Antworten
  • 1
  • 10
  • 15
  • 0

Frage 12

Frage
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question.
Antworten
  • XSTRING
  • FLOAT
  • DECIMALS
  • STRING
  • DECFLOAT34

Frage 13

Frage
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer.
Antworten
  • Field of a transparent table
  • Data element
  • Component of a structure
  • Domain

Frage 14

Frage
What is the SAP recommended naming convention for append structures of standard SAPtables? Please choose the correct answer.
Antworten
  • The components of an append structure should start with ZZ or YY.
  • The name of the append structure must start with ZA.
  • The name of the append structure must start with ZZ or YY.
  • The components of an append structure should start with Z or Y.

Frage 15

Frage
What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question
Antworten
  • The table must be copied before the append structure can be created
  • The fields in the append structure should star with YY or ZZ
  • The enhancement category of the table is NOT set to ‘Not enhacable’
  • The table cannot have any fields of type FLTP

Frage 16

Frage
Which ABAP statement using the local type gty_1 correctly defines a data object? There are 2 correct answers to this question.
Antworten
  • DATA gv_1 TYPE gty_1.
  • DATA gv_1 TYPE gty_1 DEFAULT '1'.
  • CONSTANTS gc_1 TYPE gty_1 VALUE '1'
  • DATA gv_1 LIKE gty_1.

Frage 17

Frage
Which of the following can you do with the ABAP debugger? There are 3 correct answers to this question.
Antworten
  • Compare data objects.
  • Analyze memory usage.
  • Change source code
  • Analyze internal tables
  • Analyze SQL traces.

Frage 18

Frage
The order of fields for a transparent table in the database… Please choose the correct answer.
Antworten
  • Is created in the order of the Data Dictionary.
  • Is created in the order of the ABAP Dictionary.
  • Needs to match the ABAP Dictionary.
  • Is allowed to be different than the ABAP Dictionary.

Frage 19

Frage
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.
Antworten
  • SELECT … . ENDSELECT.
  • SELECT SINGLE …
  • SELECT … INTO TABLE …
  • SELECT SINGLE … FOR UPDATE

Frage 20

Frage
What do you have to take into account before you decide to buffer a table? Please choose the correct answer.
Antworten
  • The entire table content must be loaded into the table buffer
  • The database server must allow table buffering
  • The data read from the buffer may NOT be current
  • The data must always be read from the buffer

Frage 21

Frage
What will happen at runtime when accessing a buffered table? Please choose the correct answer.
Antworten
  • Following an update to a buffered record, all table buffers in the system will be updated.
  • If table data is read using indexes, the table buffer will not be filled.
  • All SELECT statements will read data from the buffer.
  • If data is read from the table buffer, the existing indexes are not used.

Frage 22

Frage
In which circumstances is a table considered to be a text table? There are 3 correct answers to this question.
Antworten
  • The ABAP runtime system determines that the relationship exists.
  • This table has a foreign key to the data table as a text table.
  • This table only has one character-based data field.
  • The entire key of this data table is included as the key to this table.
  • This table has an additional language key field.

Frage 23

Frage
A transport company keeps track of this availability in two tables, table VEHICLES and table TRANSPORT. To accept a new transport of a certain capacity must be found in table VEHICLES. If a record is found, a record is created in table TRANSPORT. The capacity is then adjusted in table VEHICLES.\ You have four function modules at your disposal. UPD_VEHI_A and UPD_VEHI_B update a matching report in table VEHICLES. If an error occurs both issue a message of type X. If no error occurs only UPD_VEHI_A issues a message of type X. If no error occurs UPD_VEHI_A issues a message of type I. UPD_TRAN_A and UPD_TRAN_B create a single record in table TRANSPORT. If an error occurs both issues a message of type X. If no error occurs only UPD_TRAN_A issues a message of type I. Which of the following function module calls ensures a single logical unit of work? Please choose the correct answer.
Antworten
  • 1.UPD_VEHI_A 2.UPD_TRAN_B
  • 1. UPD_TRAN_A 2. UPD_VEHI_B
  • 1. UPD_TRAN_B 2. UPD_VEHI_B
  • 1.UPD_VEHI_A 2.UPD_TRAN_A

Frage 24

Frage
You run an executable program which contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer.
Antworten
  • At the beginning of the START-OF-SELECTION event block
  • When the assignment to gv_var2 is executed
  • When the value ‘123’ is assigned to the data object
  • As soon as the program is loaded into thie internal session

Frage 25

Frage
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.
Antworten
  • Change the Data Class and Size category in the technical settings.
  • Provide the correct reference field for the Currency or Quantity field.
  • Select the option Not Classified from the enhancement category.
  • Select any option other than Not Classified from the enhancement category

Frage 26

Frage
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
Antworten
  • A database view can be buffered
  • An outer join can only be implemented in a database view
  • A secondary index can be created for a database view
  • A database view can be reused in other programs

Frage 27

Frage
Which elementary field types are considered a character type? There are 5 correct answers to this question.
Antworten
  • N
  • T
  • I
  • X
  • XSTRING
  • C
  • D
  • STRING
  • F

Frage 28

Frage
Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question.
Antworten
  • SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’.
  • SELECT a b c d FROM table A JOIN table B ON table A~a EQ table B~ eINTO CORRESPONDING FIELDS OF TABLE lt_A_B.
  • SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB
  • SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF ls_AB.

Frage 29

Frage
Where are fixed values for fields stored? Please choose the correct answer.
Antworten
  • Data element
  • Field
  • Domain
  • Structure
  • Table

Frage 30

Frage
What do you need to consider when creating a secondary index on a table? There are 2 correct answers to this question
Antworten
  • The most frequently selected fields should be at the first positions in the index
  • The index can be created for specific database systems only
  • The table will be updated more quickly if you create more indexes
  • The index must always be unique
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

PuKW - STEP1 Prüfungsvorbereitung WS 13/14
kathvee
Modul 2C FernUni Hagen Entwicklungspsychologische Grundlagen und Vorstellung, Spiel & Phantasie
Anni T-Pünktchen
Zivilrecht - Streite Sachenrecht
myJurazone
4 schnelle Tipps für Technologie im Klassenzimmer
Laura Overhoff
Analysis - Abiturvorbereitung Mathe
c.aciksoez
DELF B1/B2 Vocabulaire 1/...
Chiara Braun
Vetie Immunologie
Katrin Harles
Vetie - Arzneimittelverordnung 2014
Schmolli Schmoll
Tierseuchenbekämpfung 2014
Birte Schulz
Vetie - Lebensmittelkunde 2020/2019
Valerie Nymphe
Vetie Fleisch 2019/2020 (Matrikel 14)
Maite J