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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
tariq554
Other tests from this author

Creation Date:
01/06/2020

Category: Others

Number of questions: 38
Share the Test:
New CommentNuevo Comentario
AVATARCassio ( uploaded 2 years )
Report comment
I'm with doubt if the question - YOU CREATE A DOMAIN IN THE ABAP DICTIONARY. HOW CAN YOU USE THIS DOMAIN? The answer is: TO DEFINE DATA OBJECTS IN ABAP PROGRAMS Is this right?
Content:
You create a domain in the ABAP dictionary. How can you use this domain? Please choose the correct answer. To define data objects in ABAP programs To define the data type of a table field or structure component To define technical properties of data elements To describe the value range of a table field or structure component.
Which of the following elements can a string template contain? There are 2 correct answers to this question. String processing statements Functional method calls Literals Function module calls.
You need to create a piece of code that can be used by multiple programs. Which of the following techniques does SAP recommend? There are 2 correct answers to this question. Use an include program. Use a method in a global class Use a function module in a function group. Use a method in a local class.
How can you maintain documentation for input fields on your screen? Please choose the correct answer. Add documentation to the SCREEN table at PROCESS BEFORE OUTPUT (PBO). Add documentation to the SCREEN table at PROCESS AFTER INPUT (PAI). Define text tables for the underlying structure. Add documentation to the underlying data element.
Which of the followings components are part of SAP NetWeaver AS ABAP version 7.1x and higher? There are 2 correct answers to this question. Software Deployment Manager (SOM) Internet Communication Manager (ICM) Message Server SAP GUI for Java.
To generate the function modules for a lock object for a custom table (ENQUEUE_<lock_object> and DEQUEUE_<lock_object>), which tool would you use? Please choose the correct answer. Function Builder (Transaction SE37) General Table Maintenance Dialog (Transaction SE54) Text Elements (Transaction SE32) ABAP Dictionary (Transaction SE11) Reuse Library (Transaction SE83).
How many work areas are available in the Debugger? Please choose the correct answer. 7 9 12 15 None of the above.
Which are the functions of the ABAP dispatcher? There are 3 correct answers to this question. It integrates the presentation layer. It distributes the requests among the work processes. It saves the processing requests in request queues. It requests the data from the database or the buffers. It performs a roll-in and roll-out of user context.
You have created table ZTAB and you want to create a foreign-key relationship to table SAPTAB. Under which condition is this possible? Please choose the correct answer. The check field in ZTAB must have a data element that does NOT refer to a domain. The check field in ZTAB must have the same domain as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same name as the corresponding field of check table SAPTAB. The check field in ZTAB must have the same ABAP Dictionary type as the corresponding field of check table SAPTAB.
Identify the ways to map context structures. There are 2 correct answers to this question. Static context mapping Direct context mapping Dynamic context mapping External context mapping.
Which options do you have to read data from multiple tables while using a SELECT statement? There are 3 correct answers to this question. Database views Pooled tables Nested select statements Join statements Nested loop statements.
How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 0 1 2 3 5 None of the above.
Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. x P N D T.
What data type you can create in the ABAP Dictionary? Please choose the correct answer Structure Lock object Secondary index Type group.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Choose the database tables from where the view acquires data. Define the join conditions between the tables. Choose the fields from the tables that should be part of the view. Define selection criteria for the view. Define buffering settings for the underlying database tables.
You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? Please choose the correct answer. Only protected components Only private components All components Only public components.
To reserve an area on the screen for an ALV Grid Control, you must do the following: Please choose the correct answer. Create an object (instantiate the object) of the class CL_SALV_TABLE Create an object (instantiate the object) of the class CL_GUI_ALV_GRID Use the Screen Painter Create an object (instantiate the object) of the class CL_GUI_CUSTOM_CONTAINER.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPDD SPAU SPAD SPAU_ENH.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. CASE expressions Full Join Intersection String expressions.
Which of the following can you do with the SAP code inspector? Please choose the correct answer. Perform static code checks Analyze runtime data. Monitor runtime behavior Monitor background tasks.
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question. Function module LOAD-OF-PROGRAM PBO module Subroutine Static method.
Which of the following repository objects can you maintain in the ABAP Workbench? There are 3 correct answers to this question. Transparent tables Business functions Internal tables Function modules Module pools.
You have implemented a class CL_CUSTOMER in which you defined a private attribute. From where can you access this attribute directly? There are 2 correct answers to this question. From all methods of the class CL_CUSTOMER From any program using the class CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From all methods of all subclasses of CL_CUSTOMER.
Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. INITIALIZATION LOAD-OF-PROGRAM AT LINE-SELECTION AT PF## AT USER-COMMAND START-OF-SELECTION.
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. GT (greater than) CP (covers pattern) LIKE (fits pattern) CO (contains only) EQ (equals).
What is the purpose of implicit enhancement points? Please choose the correct answer. To change code in a standard SAP program To add fields to an SAP database table To create a secondary index for an SAP database table To add code to a standard SAP program.
Which of the following statements correctly define a data object with the type of data element s_conn_id? There are 3 correct answers to this question. DATA gv_id TYPE REF TO s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id LIKE s_conn_id. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id TYPE s_conn_id.
Which must a search help do? There are 4 correct answers to this question. Use a table or a view for data selection Have a dialog with the user Allow the user to select a response Be used from a screen Determine the values for selection by the user.
You build a dialog screen with an input field in an ABAP program. How do you ensure that the contents of the screen field can be accessed in the program? Please choose the correct answer. Use a MOVE statement in a PAI module to copy the data to a data object Enter the name of a data object in the Parameter ID attribute of the screen field Define a data object in the program with the same name as the screen field Use the GET statement in the program to transport the data from the screen field.
Which additions to the PARAMETERS statement can you use to fill the input field on the selection screen with a suggested value? There are 2 correct answers to this question. MODIF ID DEFAULT VALUE-CHECK MEMORY ID.
How can you search for classic Business Add-Ins (BAdIs)? There are 2 correct answers to this question. Search in the application program for the method GET_ INSTANCE of class CL_EXITHANDLER. Search the relevant component in the Implementation Guide (IMG). Search in the application program for the GET BADI statement. Search in the application program for the CALL BADI statement.
Which data element property do you set so that the system logs changes to the content of fields with this data element? Please choose the correct answer. Input history PARAMETER ID Change document Documentation.
You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Get reference of z1 into wa Assign (z1) to <fs> Assign z1 to <fs> Assign z1->* to <fs>.
To which context object is the attribute LEAD_SELECTION_INDEX related? Please choose the correct answer. Node Attribute Supply function Element.
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. Protected Abstract Private Final.
What are the prerequisites when creating an append structure for a standard SAP table? There are 2 correct answers to this question The enhancement category of the table is NOT set to ‘Not enhacable’ The table cannot have any fields of type FLTP The table must be copied before the append structure can be created The fields in the append structure should star with YY or ZZ.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. Multiple Queue Shortest First Round Robin First in , First out.
What type of ABAP Dictionary view is implemented as an INNER JOIN? Please choose the correct answer. Maintenance view Database view Help view Projection view.
Report abuse