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

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: 38
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
Which of the following elements can a string template contain? There are 2 correct answers to this question. Functional method calls Literals String processing statements Function module calls.
What is the difference between the INITIALIZATION and AT SELECTION-SCREEN OUTPUT events? Please choose the correct answer - INITIALIZATION can change the properties of the screen fields - AT SELECTION-SCREEN OUTPUT cannot change the properties of the screen field - INITIALIZATION is only processed once. - AT SELECT-SCREEN OUTPUT can be processed multiple times - INITIALIZATION cannot change pushbutton texts - AT SELECTION-SCREEN OUTPUT can change pushbutton texts - INITIALIZATION can overwrite the default value of a PARAMETERS field - AT SELECTIION-SCREEN OUTPUT can overwrite the default values of a PARAMETERS field.
Which type of transport task is used when you modify SAP standard objects? Please choose the correct answer. Transport of copies Repair Workbench Development/Correction.
You define database view A and maintenance view B in the ASAP Dictionary. What restrictions apply to these views? There are 2 correct answers to this question. The tables joined in B must have foreign key relationships. The join type of both A and B is an inner join Only A can be used in the FROM clause of a SELECT statement. The tables joined in A must have foreign key relationships.
Which statements are allowed for processing internal tables? There are 3 correct answers to this question. SELECT UPDATE DELETE INSERT MODIFY.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question NUMC CHAR DATE DEC FLOAT.
What are the advantages of defining texts symbols in executable programs? There are 2 correct answers to this question The text of the text symbol can be changed at runtime They are easier to maintain than literals. They facilitate multilingual functionality. They can store up to 256 characters.
Which boundary conditions lead to improved access time to an internal table? There are 3 correct answers to this question. Index access for standard tables Left justified part of key for sorted tables Fully qualified key for sorted tables Left justified part of key for hashed tables Index access for hashed tables.
An ABAP program processes the following expression: r = a / b + c Which of the following data declarations would cause the runtime environment to use fixed-point arithmetic for the above expression? Please choose the correct answer. DATA: r type p, a type iVALUE 201, b type iVALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE p. DATA: r TYPE f, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f. DATA: r TYPE p DECIMALS 2, a TYPE iVALUE 201, b TYPE iVALUE 200, c TYPE f.
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. DATA gv_id TYPE s_conn_id. CONSTANTS gc_id TYPE s_conn_id VALUE '0400'. PARAMETERS pa_id TYPE s_conn_id. DATA gv_id LIKE s_conn_id.
What is the difference between a Unicode and non-Unicode program? Please select all the correct answers that apply. Offset positioning in a Unicode structure is restricted to flat data objects. Byte-type data objects cannot be compared to character-type data objects. Offset positioning in a Unicode structure is restricted to character data objects. Byte-type data objects cannot be assigned to character-type data objects. None of the above.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT LEAVE TO TRANSACTION CALL TRANSACTION SUBMIT… AND RETURN.
How many kinds of internal tables are supported in the ABAP language? Please choose the correct answer. 1 2 3 5 None of the above.
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question. Evaluate the time needed for program execution. Determine used database tables. Inspect the memory consumption Discover unused variables. Execute the extended program check.
Where are fixed values for fields stored? Please choose the correct answer. Structure Table Data element Field Domain.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORTING parameter named PAR 1. What type of parameter is PAR 1 in the post-method? Please choose the correct answer CHANGING IMPORTING EXPORTING RETURNING.
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 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. SELECT*FROM users AS a INTO TABLE It_users WHERE a»first_name = a»last_name.
You defined data reference z1 generically. Which statement would you use to access the content of the referenced variable? Please choose the correct answer. Assign z1 to <fs> Assign (z1) to <fs> Get reference of z1 into wa Assign z1->* to <fs>.
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,X F,I,P,X C,D,N,T D,I,string, T.
You add the CREATE PROTECTED addition to a class definition. From where you can instantiate the class? There are 3 correct answers to this question. From a child class From the class itself From any protected class From a friend class From a parent class.
You have 2 objects: O1 of type class C1 and O2 of type class C2. Class C2 is a subclass of class C1. Which of the following statements implements an up cast? Please choose the correct answer. O1 = O2. O2 ?= O1. MOVE O1 ?TO O2. MOVE O1 TO O2.
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 multiple key. A standard table should always have a unique key.
What pre-defined ABAP data type is deep? Please choose the correct answer. STRING DECFLOAT34 X N None of the above.
What type of method is generated automatically by the Web Dynpro Explorer when you assign an action to a button UI element? Please choose the correct answer. Ordinary method Supply function Event handler method Standard hook method.
Which statement will interrupt the processing of the current screen and branch to new screen? Please choose the correct answer. LEAVE TO SCREEN <NNNN> CALL SCREEN <NNNN> None of the above SET SCREEN <NNNN>.
What properties will be set when you define a table type in the ABAP Dictionary? There are 3 correct answers to this question. Change document GET/SET Parameter Access mode  Line type Primary key.
Which of the following are incorrect statements? There are 2 correct answers to this question. TYPES: date_ty TYPE D LENGTH 10. TYPES: werks TYPE C LENGTH 4. TYPES: Str TYPE STRING LENGTH 20. TYPES: carrid_ty LIKE spfli-s-carr_id.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Define selection criteria for the view. Define the join conditions between the tables. Choose the fields from the tables that should be part of the view. Choose the database tables from where the view acquires data. Define buffering settings for the underlying database tables.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Configuration controller View controller Window controller Component controller.
A user runs an ABAP program, enters an incorrect value on the selection screen, and chooses Execute. Which event block must send the error message in order to display the selection screen again? Please choose the correct answer AT SELECTION-SCREEN AT SELECTION-SCREEN OUTPUT AT SELECTION-SCREEN ON HELP-REQUEST AT SELECTION-SCREEN ON VALU E-REQUEST.
Which options are valid Open SQL? There are 3 correct answers to this question CROSS JOIN LEFT OUTER JOIN RIGHT OUTER JOIN FULL JOIN INNER JOIN.
Which of the following statements are true? There are 2 correct answers to this question. Standard tables can be accessed by index. A sorted table is always accessed by a unique key. Hashed tables are accessed by a unique key. Standard tables cannot be accessed by index. Hashed tables are always accessed by index.
You are asked to enhance the GUI status of an SAP standard application.  How do you identify which menu exit function code you can use? Please choose the correct answer. It starts with an ampersand (&). It starts with a plus (+). It starts with an asterisk (*). It starts with a dollar ($).
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPDD SPAU_ENH SPAD SPAU.
Each work process… There are 3 correct answers to this question. Can make database changes spanning multiple database LUWs. Uses a database connection to a work process established when the SAP NetWeaver Application Server ABAP started. Is independent of other work processes. Can only make database changes within a single database LUW. Uses a pool of database connections established when the SAP NetWeaver Application Server ABAP started.
In which order do you implement a new BAdI? Please choose the correct answer. Create BAdI Implementation Create Enhancement Project Create  BAdI Implementation Create Enhancement Spot Implementation Create Enhancement Project Create BAdI Implementation Create Enhancement Spot Implementation Create BAdI Implementation.
The statements CALL BADI and GET BADI are used for which type of BAdIs? Please choose the correct answer. Classical BAdI New BAdI None of the above Classical DDic.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Trace executing code Debug only a small portion of code Debug a large portion of code Specify as much or as little code to debug Bypass authorization objects.
Report abuse