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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
tariq554
Other tests from this author

Creation Date:
31/05/2020

Category: Others

Number of questions: 40
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
How can you find customer exists in an ABAP program? There are 2 correct answers to this question. Search for ‘CL_EXTHANDLER’ in the program. Search for customer exists in the Repository Information System Search for customer exists in the program documentation Search for ‘CALL CUSTOMER’ in the program.
You display the content of an internal table using an ALV grid control. The content of the internal table changes during the program. Which CL_GUI_ALV_GRID class method can you use to display the changed content? Please choose the correct answer. SET_TABLE _FOR_FIRST_DISPLAY in module PBO REFRESH_TABLE_DISPLAY in module PAI SET_TABLE_FOR_FIRST_DISPLAY in module PAI REFRESH_TABLE_DISPLAY in module PBO.
Which options are valid Open SQL? There are 3 correct answers to this question CROSS JOIN FULL JOIN LEFT OUTER JOIN INNER JOIN RIGHT OUTER JOIN.
Which of the following regarding search helps is a true statement? Please select all the correct answers that apply. The text table for the selection method is automatically populated if the text table is attached to the database table being used as the selection method. The SPos parameter defines the position of the input field on the dialog screen. The interface for the search help is defined by the IMP (import) and EXP (export) flag of the search help parameter. The LPos parameter defines the position of the search help parameter in the search hit list.
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Discover unused variables. Inspect the memory consumption Evaluate the time needed for program execution. Execute the extended program check Determine used database tables.
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 all subclasses of CL_CUSTOMER From all methods of a class to which CL_CUSTOMER grants friendship From any program using the class CL_CUSTOMER From all methods of the class CL_CUSTOMER.
A customer has asked that you improve performance for a small table with frequent read accesses. What buffering type do you recommend? Please choose the correct answer. Column store Full table Primary key Single record.
Which selection screen elements allow user input in ABAP Reports? There are 2 correct answers to this question SELECTION-SCREEN BLOCK SELECT-OPTIONS PARAMETERS SELECTION-SCREEN COMMENT.
A structure has enhancement category 3, can be enhanced (character-type). Which set of elementary types is allowed for the new fields? Please choose the correct answer. C,D,N,T F,I,P,X D,I,string, T C,D,N,X.
What is the purpose of the enqueuer work process? Please choose the correct answer. It processes logical locks requests. It processes requests for a print output It processes update requests. It processes requests triggered by an active user.
The USER has the following fields: ID, FIRST_NAME, LAST_NAME. FIRST_NAME, LAST_NAME have the same basic type and length. You want to compare fields FIRST_NAME, LAST_NAME to each other. Which of the following SELECT statements can you use? There are 2 correct answers to this question. SELECT*FROM users INTO TABLE It_users WHERE first_name = users last_name SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name. SELECT*FROM users AS a INTO TABLE It_users WHERE a first_name = last_name.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. A transport layer must be assigned to the package. An inactive version of the repository object must exist. An application component must be assigned to the repository object. The repository object must be assigned to a package. The repository object must be assigned to a change request.
In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation Create Enhancement Project Create Enhancement Spot Implementation Create BAdI Implementation Create Enhancement Project Create BAdI Implementation Create  BAdI Implementation Create Enhancement Spot Implementation.
You write the following ABAP statement: SELECT SINGLE carrid, connid, cityfrom, cityto FROM spfli INTO @gs_spfli WHERE carrid = @pa_car AND connid = @pa_con. How are the selected fields placed into target structure gs_spfli? Please choose the correct answer. From left to right Into fields with the same name Into fields with the same type Into fields with the same name and same type.
How is data shared between Web Dynpro controllers? There are 2 correct answers to this question. By using data binding from a view controller to another view controller By using context mapping from a view controller to another view controller By using context mapping from a view controller to a custom controller By using context mapping from a view controller to the component controller.
You need to perform a downcast. What should you do? There are 2 correct answers to this question. Catch the exception CX_SY_MOVE_CAST_ERROR Use the operator “?=” Assign a subclass reference to a superclass reference Use the operator “=“.
Which of the following are features of the Context in Web Dynpro? There are 2 correct answers to this question Every Web Dynpro controller has one Context Data is transferred from one Context to another by firing plugs Data is shared between controllers through Context mapping Every Web Dynpro controller has multiple Contexts.
You are writing an ABAP declaration using the data element S_CARR_ID. Which of the following statements correctly define a data object? There are 2 correct answers to this question CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’ DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id TYPE s_carr_id DATA gv_id LIKE s_carr_id.
Value help can be supplied from which of the following? Please select all the correct answers that apply. Search help for a screen field Search help for a data element Key values of a check table Search help for table or structure fields Process On Value request Search help for a check table Search help from a text table Fixed values.
You want to include an element of type ‘Table’ in your web dynpro.  What actions add the corresponding columns to the table automatically? Please choose the correct answer. Generate a ‘BIND_TABLE’ method using the web dynpro method wizard. Right click the table and select the ‘CREATE_BINDING’ option Bind the table attribute ‘DATA_SOURCE’ to the context node Include the method BIND_TABLE of IF_WD_CONTEXT_NODE.
You want to read a single line of an internal table using table expression itab[ ...]. How can you identify the line? There are 3 correct answers to this question. Specify a WHERE condition. Specify a regular expression. Specify a secondary table key. Specify the line index. Specify a free table key.
You are making changes to a program that already has transaction code ZZZZ linked to it. Your colleague is testing transaction code ZZZZ in the same system. When does the changed version of the program become visible to your colleague via transact on code ZZZZ? Please choose the correct answer. When the syntax of the program is correct When you activate the program When you save the program When you execute the program from the ABAP Editor.
In an ABAP program you have the following code sequence: DATA text TYPE string. DATA Text_ref TYPE REF TO string. DATA data_ref TYPE REF TO data. FIELD-SYMBOLS <fs> TYPE any Text = ‘Content of Data Object’ GET REFERENCE OF text INTO data_ref. Which of the following pieces of code can you use to output the content of variable text? There are 2 correct answers to this question. text_ref ?= data_ref. WRITE text_ref->*. ASSIGN data_ref->* TO<fs> WRITE <fs> WRITE data_ref->*. GET REFERENCE OF data_ref->* INTO text_ref. WRITE text_ref->*.
Which of the following is a true statement? There are 2 correct answers to this question. A sorted table can have a unique or a non-unique key. A hashed table should always have a unique table key. A standard table should always have a unique key. A standard table should always have a multiple key.
Which of the following statements are correct? There are 4 correct answers to this question. You can call private methods within the public methods without reference to the object or class. Class methods assigned to the public visibility section can be accessed outside the class using the static component selector and the class name. Static methods can be defined in both the public and private visibility section of the class. None of the above Only public methods can be addressed outside the class.
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 s_conn_id. DATA gv_id LIKE s_conn_id. PARAMETERS pa_id TYPE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. DATA gv_id TYPE REF TO s_conn_id.
What do you have to take into account before you decide to buffer a table? Please choose the correct answer. The database server must allow table buffering The data must always be read from the buffer The entire table content must be loaded into the table buffer The data read from the buffer may NOT be current.
What features are provided by the database interface? There are 3 correct answers to this question. Syntax check of Native SQL commands Data consistency check using foreign key relationships Access to SAP table buffers Conversion of Open SQL statements from ABAP statements into the corresponding database statements Database independence of application programs.
What is mandatory for automatic data transport between a variable and an input field on a classical screen (dynpro)? Please choose the correct answer. The name of the variable and the name of the input field must be identical. The variable must be declared using the DATA statement. The property OUTPUT of the input field must be set. The variable must be declared using the TABLES statement.
What ABAP statements can you use to create an instance of the class CL_GUI_CUSTOM_CONTAINER in an ABAP program? Please choose the correct answer. DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container….. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE OBJECT go_container…. DATA: go_container TYPE CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container… DATA: go_container TYPE REF TO CL_GUI_CUSTOM_CONTAINER. CREATE DATA go_container….
dbtab is a transparent table. What is declared by the following statement? DATA myvar TYPE dbtab. Please choose the correct answer. An elementary field A structure variable An internal table A reference to an internal table.
Which statement ends a screen sequence and starts from initial screen? Please choose the correct answer. LEAVE SCREEN SET SCREEN 0 LEAVE TO SCREEN CALL SCREEN.
What happens when an authorization check fails? Please choose the correct answer. The system field SY-SUBRC is set to a value other than zero. A CX_AUTH_FAILED type exception is raised. The program is terminated. A type E message is displayed.
You want to define a field symbol that will be assigned to a character string. Which generic types can you use? There are 3 correct answers to this question. xsequence  any click csequence any table .
Which must a search help do? There are 4 correct answers to this question. Allow the user to select a response Have a dialog with the user Use a table or a view for data selection Be used from a screen Determine the values for selection by the user.
Which of the following are incomplete ASAP pre-defined data types? There are 3 correct answers to this question. D N x P T.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. New BAdIs Explicit enhancement point Implicit enhancement point Explicit enhancement sections.
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 a method in a global class Use a method in a local class. Use a function module in a function group. Use an include program.
What are the advantages of modularization? There are 3 correct answers to this question Reusability Profitability across DBMS Transparency Maintainability Performance.
Which of the following elements can a string template contain? There are 2 correct answers to this question. Function module calls String processing statements Literals Functional method calls.
Report abuse