Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESECANDY, CANDY

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
CANDY, CANDY

Descripción:
NO FINALIZADO - FALTAN PREGUNTAS

Autor:
Sugar!
(Otros tests del mismo autor)

Fecha de Creación:
19/07/2018

Categoría:
Arte

Número preguntas: 36
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
What can you change in the ABAP Debugger? Definition of a structure Content of an internal table Value of a constant Value of a reference variable.
The data buffered on each application server... Is always the same Depends on the users Is never the same Is does not the same.
Which type of view uses an inner join in a search help? Help view Maintenance view Candidate key view Database view.
Where are fixed values for fields stored? Data element Field Structure Table Domain .
What are the declarative statements used to define the selection? There are 3 correct answers to this question PARAMETERS None of the above SELECTION-SCREEN SELECT-OPTIONS.
You want to add a field type CURR to a transparent table. What else must you do? Create a reference to a field of type C UKY Add a key field type CUKY Add a check table that contains a field of type CUKY Create a new field CUKY as a pre-defined type.
Which Of the following capabilities is provided by the Application Layer platform Of SAP Netweaver? Database and operating system abstraction Master data management Business process management Multi-channel access.
When is a foreign key check performed on an input/output field? If the field refers to the dictionary field for which a search is defined. If the field refers to the dictionary field for which a append search is defined. If the field refers to the dictionary field for which a check table is defined. If the field refers to the dictionary field for which a value help is defined.
Which of the following statements are true? There 3 corrects to this question Projection views can have more than one tabe included for tie view definition The tables included in the maintenance view should have foreign key relationships You cannot use a pooled or cluster table for a database view The tables included in the help view should have a foreign key relationship.
Which comparison operators can you use in a logical expression related to the WHERE clause of the SELECT statement? There are 3 correct answers to this question LIKE EQ CO CP GT.
Which of the following ABAP statements throws an error at the syntax check? DATA variable(5) TYPE p DATA variable(5) TYPE t. DATA variable(5) TYPE n DATA variable.
Which of the following can you do with the SAP code inspector? Monitor background task Analyze runtime data Monitor runtime behavior Perform static code check.
Each work process... There are 3 cared answers to this question Uses a pool of database mnnections established when the SAP NetWeaver Aplication Server ABAP started. Uses a database connection to a work process established when the Sap NetWeaver application server ABAP started. Can only make database changes within a single database LUW. Can make database changes spanning multiple database. Is independent of other work processes.
Which of the following statements are true? There are 2 correct answers to this question A maintenance view is implemented as an outer join A maintenance view is implemented as an inner join A database view is implemented as an outer joi A database view is implemented as an inner join.
How do you define an intemal table in private method of a class? There are 3 corrects answers to this question DATA lt_itab TYPE DATA lt_itab TYPE DATA lt_itab TYPE OF WITH HEADER LINE DATA lt_itab TYPE TABLE OF DATA lt_itab TYPE.
Which statement is true? A database LUW must be placed within an SAP LUW An SAP LUW must be placed within a database LUW A database LUW cannot be placed within an SAP LUW A database LUW must be placed without an SAP LUW.
Which ABAP statement using the local gty_l correctly defines a data object? There are 2 corrects answers to this question DATA gv_l LIKE gty_1 CONSTANT gc_l TYPE gty_l VALUE DATA gv_1 TYPE gty_1 DATA gv_1 TYPE gty_1 DEFUALT '1'.
How can you maintain documentation for input fields on your screen? Add docurnentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO) AFTER INPUT (PAI) Add documentation to the SCREEN table at PROCESS Add documentation to the underlying data element. Define text tables for the underlying structure.
When you add programming loginc to your ABAP program that checks authorizations, which of the following do you have to create? There are 2 corrects answers to this question An authorization profile An authorization access An authorization role An authorization object.
Which events can exist in all types of programs that actually contain executables statements? LOAD-OF-PROGRAM AT USER-COMMAND AT LINE-SELECTION START-OF-SELECTION INITIALIZATION.
Which method of passing parameters is preferred for its performance? Pass by reference Pass by class Pass by subclass Pass by value.
A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed tor the new fields? C, D, N, X F, I, P, X C, D, N, T D, I, string, T.
How many work areas are available in the Debugger? 12 7 9 15.
An executable ABAP program contains a standard selection screen and usus the event blocks AT SELECTION SCREEN, AT SELECTION-SCREEN OUTPU, INITIALIZATION, START-OF-SELECTION. In which sequence will ABAP runtime call these event blocks? INITIALIZATION AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT START-OF-SELECTION INITIALIZATION AT SELECTION-SCREEN OUTPUT START-OF-SELECTION AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT INITIALIZATION AT SELECTION-SCREEN START-OF-SELECTION INITIALIZATION AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN START-OF-SELECTION .
Which of the following statemtns are correct? There are 3 correct answers to this question. The SELECT-OPTIONS statement creates an internal table with a header line. The internal table is also known as the selection table The structure of the selection table created with SELECT-OPTIONS has four components: SIGN, OPTION, LOW and HIGH. You can only specify defailt values for the LOW and HIGH filds of the SELECTION-OPTIONS input field. You can use the addition, NO-DISPLAY to hide the input field on the selection screen.
ABAP is a programming language that.. There are 4 correct answers to this question Controls the business logic Processes and formats data Executes on all three levels of the three-tier architecture Interacts with the user Separates program code from language text.
Urder which circumstances will classic Debugger start as the Debugger? There are 2 corrects answers to this question When specify the default as the classic Debugger in the settings of the Object Navigator When five modes already exist for this logon session. When tie number of debugging sessions exceeds half the number of dialog sessions. None; the new Debugger will always start as the Debugger. If you manually switched to the classic Debugger during your last session.
Which of the following is a true statement? There are 2 corrects answers to this question Client specific customization objects are assigned to the customizing request All transportable objects have to be assigned to a package Repository objects and cross-client customization objects are assigned to the workbench request Local repository objects can be transported Inactive objects can be transported.
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 tabla VEHICLES. If an error occurs both issue a message of type X. If no error occurs only UPD_VEHI_A issue 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? UPD_TRAN_B UPD_VEHI_B UPD_VEHI_A UPD_TRAN_A UPD_TRAN_A UPD_VEHI_B UPD_VEHI_A UPD_TRAN_B.
What is the result of the following arithmetic operation? DATA: int TYPE i. Int= 5*(3/10) 1 1.5 2 0.
Which view types can you use to join two tables with an outer join? There are 2 corrects answers to this question Help view Maintenance view Projection view Database view .
Which of the following ABAP code lines is valid? There are 3 corrects answers to this question SELECT-OPTIONS s_mantr TYPE mantr DEFAULT 100 CONSTANTS gc_mantr TYPE mantr VALUE 100 DATA gc_mantr TYPE mantr DEFAULT 100 PARAMETERS p_mantr TYPE mantr DEFAULT 100 STATIS p_mantr TYPE mantr DEFAULT 100.
Table A and table B are partially buffered. Which of the following SELECT statements SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ '1234 SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF Is_AB SELECT a b c d FROM table A JOIN table B ON Table A~a EQ table B~e INTO CORRESPONDING FIELDS OF TABLE LT_A_B SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB.
In addition to the primary key of an internal table, how many secondary indexes can you define for an internal table? 10 0 15 1.
Which of the following ABAP standard types are numeric? There are 3 correct answers to this question I D P F N.
FORM routines (subroutines) can be used in which program types? There are 4 correct answers to this question Type groups Module pools Executables Class pools Interface pools Function groups Subroutine pools.
Denunciar test Consentimiento Condiciones de uso