option
Questions
ayuda
daypo
search.php
ERASED TEST, YOU MAY BE INTERESTED ON SAP ABAP
COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
SAP ABAP

Description:
Test your Knowledge

Author:
Luis Cruz
Other tests from this author

Creation Date:
26/01/2014

Category: Others

Number of questions: 68
Share the Test:
New CommentNuevo Comentario
rohank ( uploaded 9 years )
Report comment
Hi
Content:
You can only work in on window (session) at a time in a SAP system? True False.
Which of the fallowing statements accurately describe a client in a SAP system? Choose the correct answer(s). A client represents a completely independent business entity. A client has its own database. A client corresponds to a customer. A client may represent an entire company.
The following strings are valid entries in the command field: Choose the correct answer(s) /nend /nex ?SM04 /nSM04 From SAP Easy Access: SM04 From SAP Easy Access: search_sap_menu.
What are the advantages of a three-tier client/server configuration as compared to a single-tier or two-tier configuration? Choose the correct answer(s). Simpler scalability Simpler administration Load balancing possible None of the above.
Which AS ABAP process receives the user request? Choose the correct answer(s). Work Process Dispatcher Server Process SAP GUI.
Which work process types are there in an AS ABAP system? Choose the correct answer(s). Dialog work process Message server Update work process Internet communication manager (ICM) Background work process Enqueue work process Spool work process.
Which of the following processes belong to AS Java? Choose the correct answer(s). Server (process) Internet Communication Manager (ICM) Software deployment manager (SDM) Dispatcher Java connector (JCo).
Application Link Enable (ALE) allows you to: Choose the correct answer(s). Exchange data only between SAP systems, as long as they have the same release status Exchange data across system boundaries, but only for SAP applications Exchange data between collaborating enterprises, using certain formats and technologies The communication between different systems of your system landscape Update your order data using the appropriate BAPI, only once every 24 hours.
The following interfaces or communication options are supported by SAP systems: Choose the correct answer(s). HTTP (HyperText Transfer Protocol) SMTP (Simple Mail Transfer Protocol) RFC (Remote Function Call) BAPIs (Business Application Programming Interfaces) XDTP (Extended Data Transfer Protocol) STP (SAP Transfer Protocol).
You can use BAPIs to: Choose the correct answer(s). Request data from an SAP system Pass data to an SAP system Transfer SAP screen images to third-party applications (such as Microsoft Word) Access business processes in SAP systems.
You access BAPIs in SAP systems using an RFC interface: True False.
Business ____________ Programming Interfaces are specialized ___________ modules. They are accessed using the ____________ interface. They are created and managed using the _____________ Builder. Application, function, RFC, Function Function, RFC, Application, function RFC, Application, function, Function function, Function, RFC, Application.
Repository objects are not client-specific True False.
Customer objects can be included in SAP packages True False.
Which two tools are used for searching for Repository objects? When should each search tool de used? Repository Information System (for application-independent searches) SAP Application Hierarchy (for application-related searches) None of the above.
You must create a new application program for each language used in the system True False.
When is the transport of development objects for a development request triggered? When an object is saved When an object is activated When a task is released When a request is released.
Which of the ABAP standard types are numeric? I, F, P, DECFLOAT16, DECFLOAT34 I, F, N, DECFLOAT16, DECFLOAT34 C, N, X, P D, T, I, F, DECFLOAT16, DECFLOAT34, STRING, XSTRING.
Which ABAP keyboard do you use to define local types? Type Types None of the above.
In which system field will you find the loop counter for the DO and WHILE loops, respectively? SY-INDEX SY-MANDT SY-UNAME SY-LANGU SY-DATUM SY-UZEIT SY-TCODE SY-REPID.
For what should you use the modularization? Choose the correct answer(s). For performance improvement For 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.
For what should you use the subroutine technique? Choose the correct answer(s). For performance improvement For a better overview of program layout To encapsulate a function that is required many times within a program for multiple use To implement central maintainability of a function within a program To make a function available across the system.
Why should you pass parameters to subroutines? Choose the correct answer(s). Mainly to transfer user inputs to the subroutine For performance improvement For achieving more flexibility in the subroutine For achieving more stability in the subroutine.
Which of the following statements concerning subroutines are correct? Choose the correct answer(s). When a subroutine is called, variables or literals are to be passed as actual parameters to the corresponding formal parameters When a subroutine is called, it is important to watch out for the same names of formal parameters and actual parameters The passing method for a formal parameter is defined in the subroutine definition There are two different passing methods for formal parameters USING parameters without the VALUE addition are call-by-reference parameters Large internal tables should be passed to the subroutine through a call-by-value parameter.
Which of the following statements concerning function modules are correct? Choose the correct answer(s). When you call a function module, all the import, export, and CHANGING parameters have to be filled with data Whenever a function module is called, all exceptions should be caught and handled. Otherwise, a runtime error occurs whenever an exception that is not caught is raised by the function module When a function module is called, the IMPORT parameters are listed with the IMPORTING addition and the EXPORT parameters are listed with the EXPORTING addition When a function module is called, the IMPORT parameters are listed with the EXPORTING addition and the EXPORT parameters are listed with the IMPORTING addition.
By which elements of the ABAP Dictionary can you set the type for a structure variable within the program? Choose the correct answer(s). Data Element Domain Structure Table type.
What is an internal table? Choose the correct answer(s). Database table Excel table Variable in an ABAP program Table that is embedded in another table.
Which three specifications are required in the definition of an internal table? Row type, key and kind of internal table kind of internal table key and kind of internal table None of the above.
Which three kinds of internal tables are available so that you can influence system performance for table access? STANDARD, SORTED and HASHED STANDARD, SORTED and TRANSPARENT STANDARD, SORTED, TRANSPARENT and HASHED.
What is a table type? An internal table Description of an internal table Description of a database table The specification “STANDARD”/”SORTED”/ ”HASHED” for an internal table.
BC400_S_BOOKING is a Dictionary structure. Which syntax do you use to create an internal table with the same structure as BC400_S_BOOKING? DATA gt_itab TYPE bc400_s_booking DATA gt_itab TYPE OF bc400_s_booking DATA gt_itab TYPE LINE OF bc400_s_booking DATA gt_itab TYPE LIKE bc400_s_booking.
Which statement retrieves a single record from an internal table? SELECT … ENDSELECT SELECT SINGLE READ TABLE GET FETCH.
You can define variables in the program using Dictionary types (descriptive elements) True False.
Database tables are stored together with their content in the ABAP Dictionary True False.
What is defined with the statement “DATA myvar TYPE dbtab”. If dbtab is a transparent table? Choose the correct answer(s). A copy of the database table dbtab An internal table with the same structure as the database table dbtab An internal table with the same content as the database table dbtab A structure variable with the same structure as a dbtab row.
What is the name of the high-performance technique that one should use to load the content of a database table into an internal table? Array Fetch Fetch None of the above.
In which system field do you find the number of the records read using SELECT? SY-SUBRC SY-TABIX SY-DBCNT SY-INDEX.
Which of the following statements concerning authorization checks are correct? In the SELECT statement, the corresponding authorization check is already integrated The SELECT statement functions without any problem, even if the user does not have the appropriate authorization for the read process To protect data from unwanted access, an authorization check must be implemented in the program An authorization check must always be implemented in the program.
Which of the following statements concerning authorization and authorization checks are correct? An authorization object has fields and field values An authorization is a real characteristic of an authorization object – that is, an authorization object with field values There are authorization objects in the user master record There are authorizations in the user master record.
When you create a screen, you must: Choose the correct answer(s). a. Desing the screen layout in the layout editor b. Set the general screen attributes on the attribute screen c. Write the flow logic in the flow logic editor d. Set the field attributes in the field list Select the correct order, a,b,c,d c,d,b,a b,a,d,c d,b,a,c.
After the processing of _______________, the data is transferred to the screen and displayed PBO PAI None of the above.
To allow you to set the attributes of all screen elements, the Screen painter contains an element list with four views True False.
To interrupt processing of the current screen and branch to a new screen, or sequence of screens, you use the following statement: CALL SCREEN <nnn> SET SCREEN <nnn> LEAVE SCREEN LEAVE TO SCREEN <nnn>.
You must program your screen modifications in a module that is processed during the ____________ processing block PAI PBO None of the above.
The function keys that contain proposals, which comply with the SAP systems ergonomic standards are: Reserved Recommended Freely All of the above.
There are ______________ ways to create a title One Two Three Four.
The content of the Icontext attribute appears in the status bar of the screen when the user chooses the function True False.
You can initialize the command field only at PAI True False.
If your text consists of more than one word, use the following character as separators Underscore Comma Question mark Space.
The group box text cannot be changed dynamically True False.
____________________________, and ________________________ attributes of a status icon can be changed dynamically. Visible length, intensified, Invisible Intensified, Visible length, Invisible Invisible, Visible length, intensified.
The following message appears when the processing is interrumped and the user can correct the entries: E Error W Warning I Information X Exit.
The Back function differs from Cancel in its dialog behavior True False.
When using an encapsulated subscreen, the subscreen call must occur before the function module call True False.
To program a tabstrip control, to scroll locally at the frontend, you must call all subscreen from the flow logic True False.
The object-oriented programming model was developed considerably later tan the procedural one. It offers more options for solving problems that previously could not be solved with purely procedural programming languages True False.
Suppose you have a class X that inherits from class Y. After an up-cast a reference variable that is statically typed TYPE REF TO Y points to an instance of class X. What components of class X can you access with this reference variable? Components defined in class X Components inherited from class Y Components redefined in class X Components defined in class X and redefined in its subclasses.
Suppose you have the same class X that inherits from class Y. After a down-cast a reference variable that statically typed TYPE REF TO X points to an instance of class X. Which of the following components of class X can you access with this reference variable? Components defined in class X Components inherited from class Y Components redefined in class X Components defined in class X and redefined in its subclasses.
Suppose that you copy an instance reference of a class that implements an interface to a reference variable that is typed on the interface (up-cast). What components can you access with this reference variable? The components of the interface The components of the class that are not defined in the interface All components of the class The components of the interface for which alias names have been defined.
Suppose that a reference variable that is typed on an interface contains an instance reference of a class that implements this interface and you copy this to a reference variable that is typed on the class (down-cast). Which of the following components can you access with this reference variable? The components of the interface The components of the class that are not defined in the interface All components of the class The components of the interface for which alias names have been defined.
Which of the following statements are correct? You can create function modules using the Class Builder A global class can contain a local class A global interface can contain a local interface A global class can contain a local interface Nested definition of classes is when a local class is within a global class Using the Class Builder, a local class can be converted into a global class A local class can be copied using the Class Builder. The copy is then a global class You can use the Refactoring Assistant to move the methods to a different class within an inheritance hierarchy You can use the refactoring Assistant to design model diagrams.
For a user to be able to execute an object-oriented program, you always need to supply a module pool program or a function group program. Otherwise, there is nowhere for the CREATE OBJECT statement to create the instance True False.
Which of the following statements are correct? A non-abstract class can contain abstract methods An abstract class contains no implementations An abstract method contains no implementations Final classes cannot be superclasses within a class hierarchy A final method must be redefined Final classes can contain non-final methods A friend of a class is also a friend of its subclasses The subclasses of a class friend are also the class friend The visibility of an instance constructor can be limited A private instance constructor (instantiation only by the class itself) can be defined in the private section.
The new exception concept replaces the old one. Thus, all old source code sections must be rewritten. As of SAP Web AS 6.20, function modules from the SAP standard system automatically raise object-oriented exceptions True False.
Unlike the old exceptions, those embodying the new concept can also be raised from subroutines and propagated True False.
The new exception classes can only be defined globally. This ensures central maintenance and reuse True False.
When you define an exception class, the superclass you choose specifies whether or not its exceptions must be caught explicity with a TRY-CATCH-ENDTRY block and, if so, how the system reacts if the exception is not caught True False.
Which of the following statements regarding dynamic programming is correct? Field symbols contain the addresses of data objects at runtime When you change the content of a field symbol, this changes the address of the assigned data object When you change the content of a field symbol, this changes an address. That is, the field symbol then no longer refers to the data object You can use field symbols to access data objects as if they had a different type than their static type There are no data references in ABAP; field symbols are merely dereferenced pointers When you change the content of an assigned data reference, this changes an address. That is, the reference no longer points to the data object In ABAP, you can define the type of an object when you define the reference, or wait until it is generated at runtime In ABAP, you can define the type of an object when you define it, or wait until it is generated at runtime If a data reference variable is typed statically, it passes on ist type attributes when it is assigned to a non-typed data reference You can use RTTI classes in ABAP to determine all of the type properties of a (data) object at runtime.
Report abuse