Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONTest1

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Test1

Description:
test bc400-workbench foundations

Author:
karen
(Other tests from this author)

Creation Date:
25/07/2019

Category:
Personal

Number of questions: 63
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
When a program is not made up of a single block but of a several units, the concept is refered to as __. isolation modulatiry universality multiplicity.
Which of the following system development objects are included in the repository? Programs Function modules Object navigator Definitions of database tables.
Which of the following abap workbench tools is used to edit the source code? abap editor ABAP dictionary Repository information system Menu painter.
Which of the following are package types? Application component development package main package software component.
When is the transport of development objects for a development request triggered? when a object is saved when a object is activated when a task is released When a request is released.
Whenever you create or change a development object and save it, the system stores 2 inactive versions in repository. true false.
which of the following statements is correct about the abap programming language? it enables multi language applications it enables sql access it is platform-dependent it is typed.
ABAP objects is the object-oriented enhancement of the abap programming language. true false.
How do you include comment lines Begin the line with a pound in the first column Begin * End # End *.
after an employee completes the required task, he should do the following release the task within the change request transfer the task to the production system unlock and export the task to the transport directory export the project request.
Which of the following are complete ABAP standard types? T C N INT8 D.
In IF statements, negation are usually formulated by placing the __ operator before logical expression. END OR END NOT.
Which of the following are required in the syntax of the Message statement? Message number Message type Message class Message role.
In nested loops, which of the following contains the loop pass number of the loop in which it is located? SY-INDEX SY-REPID SY-UNAME SY-MANDT.
To switch to debugging mode at runtime, we can enter __ in the command field. /D /H /I /A.
What are the uses of modularization? To improve performance To provide a better overview of program layout To encapsulate a function that is required many times within a program for multiple use To implement the central maintainability of a function within a program To make a function available across the system .
The assignment of actual parameters to formal parameters when calling a subroutine is called __. Interface assignment parameter passing interface call subroutine call.
Variables defined in the main program are __. Global data objects Local data types local and global data types.
Which of the following elements does the interface of a function module contain? export parameter subroutines changing parameter SCREENS.
After defining the correspondin IMPORTING and EXPORTING parameters, you can swich to the __ tab page to implement the function module. Standard exceptions source code Attributes.
Data in the sap system can be accessed by means of a BAPI. true false.
which of the following can be used as a visibility option for an attribute? Public Private Static Instance.
Methods are called using the CALL CLASS METHOD statement. true false.
When you identify a method as a static method, it can be called directly without the need to generate an instance of the class first. true false.
To create a static method, all you need to do is enter its name in the constructor list. true false.
which of the following special tools maintains global classes? object builder class builder method builder attribute builder.
To define an instance method as opposed to a static method in a local class, the METHODS statement is used instead of CLASS-METHODS. true false.
Which of the following statement copies the content of the source structure to the target structure, one component at a time? COPY-CORRESPONDING REPLACE-CORRESPONDING MOVE-CORRESPONDING REMOVE-CORRESPONDING.
Which of the following statements is used for defining local structure types? TYPES BEGIN END START.
Which of the following specifications are required in the definition of an internal table? Line type primary key secondary key table kind .
Which of the following is used for adding a row into an internal table? ADD Line INSERT ROW APPEND UPDATE TABLE.
For each entity fixed in the data model, the developer creates a transparent table in the __. transparent field abap dictionary data field database.
When using the transparent table as a data type, other properties, such as the key definition or the technical properties, are relevant. true false.
Which of the following are the types of reuse components that encapsulate database access? Conceptual database Function modules Business Application Programing Interfaces (BAPIs) Methods of local classes.
The SELECT clause determines which lines are read into the target structure and processed using the statement block which you specify in the loop body. true false.
If you want to append rows in a SELECT statement, you can use the __ addition. INTO TABLE APPENDING TABLE INTO CORRESPONDING FIELD OF TABLE END SELECT.
If you select data from client-specific tables without specifying the client, data records from the current and all other clients are read. true false.
In the worst case scenario, the system has to search the entire table, or at least a very large part thereof, for the required entries. This concept is reffered to as __. direct search binary search sequential search indirect search.
if an abap program reads a buffered table, the database interface tries to get the required data from the sap table buffer. true false.
which of the following should you specify when defininf a table join? Join tables Join conditions Join rows Join collumns.
which of the following statements are contained within open sql? CREATE UPDATE INSERT SELECT.
At runtime, which of the following statements can you use to check whether the actual user has the authorization required for executing the function in the user master record? AUTHORITY SELECT AUTHORITY-CHECK VALID AUTHORITY.
you can define authorization objects within object classes. true false.
You can use the __ to adapt the default list interface to your own needs. WRITE statement Menu painter Pattern function.
which of the following are standard functionality on a selection screen? singular capability type check variants Value entry.
Which of the following statements is used for defining an input variable? DATA Value PARAMETERS DEFAULT.
which of the following are the characteristics of an event block? ends by beginning the next processing block can be nested Existence not absolutely necessary Sequence of event blocks important.
Which of the following can you use to start screen processing? Screen flow control setting Dialog transaction Create processing statement Start screen processing setting .
To make input mandatory, assign the __ attribute to a screen field. insert required graphical layout delete.
which of the following statements is true regarding the implementation of data transport? system field sy-ucomm serves as the interface for data transport between the program and the screen. data transport is performed when you enter values on the screen. the TABLES statement serves as the interface for data transport between the program and the screen.
Which of the following is the container class that is used to link the Enjoy sap control with the control area on the screen? CL_GUI_CUSTOM_CONTAINER CL_ALV_CONTAINER CL_CONTAINER CL_ENJOY_CONTAINER.
Which of the following are methods of global class CL_GUI_ALV_GRID? CONSTRUCTOR SET_TABLE_FOR_FIRST_DISPLAY CREATE_TABLE_FOR_FIRST_DISPLAY REFRESH_TABLE_DISPLAY.
The screen sequence defined in the window is started by way of the __. WD structure WD application WD component WD content.
What can be defined inside of a WD component? View Component Controller Application Window Dynpro.
Data is transported between the central component controller and the individual view controllers using __. Service call context mapping Data binding input/output fields.
Which of the following statements about the code inspector are true? You can only use the DEFAULT check variant You can create a check variant to define the details what to check. Standard inspection is carried out (USED) when check is performed through context menu from object navigator You can define check variants, object sets, and inspections using transaction SCI.
Which aspects does the code inspector take into consideration when examining a program? Syntax check Typical semantic errors Performance Security Formatting the source code (identing).
Which of the following statements are true? ADTs are an alternative to the ABAP Workbench ADTs allow you to connect to ONE ABAP system at a time and provide session fail over, which reduces the impact of lost connections. ADTs enable cross-platform development by integrating ABAP and non-ABAP development tools in a single powerful integrated development environment. Eclipse allows development in many different programming languages. For each language, it contains the SAME combination of tools.
Only ABAP development tools should be used for ABAP development true false.
Repairing an SAP repository object in a customer client is called a __. Modification adjustment Customer exit Modification Correction.
Which of the following are the options for adjusting the SAP software to customer requirements? Customizing Enhancements Development.
Which of the following are the enhancement types? Menu Exit Business application programing interface (BAPI) Screen exit Customer event exit.
Which of the following layers contains the user interface where each user can access a program, enter new code, and receive the results of a work progress? Application server layer Presentation server layer Application logic layer SAP Netweaver Application.
Report abuse Consent Terms of use