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

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: 16
Share the Test:
New CommentNuevo Comentario
tariq554 ( uploaded 3 years )
Report comment
the first questions can be found here --> https://en.daypo.com/sap-abap-mini-9.html
Content:
At most, how many buttons can the application toolbar have on the screen? Please choose the correct answer. 10 20 30 35 None of the above.
Which of the following ABAP data types are compatible with the generic character-type CLIKE? There are 3 correct answers to this question. N STRING DECFLOAT C XSTRING.
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. Message Server Software Deployment Manager (SOM) SAP GUI for Java Internet Communication Manager (ICM).
Value help can be supplied from which of the following? Please select all the correct answers that apply. Fixed values Key values of a check table Search help from a text table Search help for a check table Search help for table or structure fields Search help for a screen field Process On Value request Search help for a data element None of the above.
You run an executable program that contains the following code: DATA: gv_var1 TYPE n LENGTH 3, Gv_var2 TYPE n LENGTH 3 VALUE ‘456’. START-OF-SELECTION CLEAR gv_var2 Gv_var2 = gv_var1. Gv_var1 = ‘123’. At what point does the system reserve memory for the data object gv_var1? Please choose the correct answer. When value ‘123’ is assigned to the data object At the beginning of the START-OF-SELECTION event block As soon as the program is loaded into the internal session When the assignment to gv_var2 is executed.
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.
You perform an update task using update function modules and detect an error in the program that calls the update function modules. Which statement can be used to discard all update requests for the current SAP LUW? There are 2 correct answers to this question. EXIT. DELETE UPDATE. MESSAGE axxx(nnn). ROLLBACK WORK. MESSAGE exxx(nnn).
In which of the following source code blocks can you define local data objects? There are 3 correct answers to this question LOAD-OF-PROGRAM PBO module Subroutine Static method Function module.
Which events can exist in all types of programs that actually contain executable statements? Please choose the correct answer. START-OF-SELECTION AT USER-COMMAND LOAD-OF-PROGRAM AT LINE-SELECTION INITIALIZATION AT PF##.
How do you program an input validation on a selection screen that allows users to correct their input?  Please choose the correct answer. Implement a check at the event AT SELECTION-SCREEN. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event END-OF-SELECTION. In case of an input error, a type E MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN. In case of an input error, a type A MESSAGE must be displayed. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed.
You created a class by inheriting from a superclass. The superclass contains a public instance method do_something. You want to redefine method do_something. What must you do? Please choose the correct answer. Leave the signature of the method unchanged. Change the visibility of the method to PROTECTED. Declare the method FINAL. Call the implementation in the superclass.
After which statement will the runtime system initialize the ABAP memory? Please choose the correct answer. SUBMIT SUBMIT… AND RETURN LEAVE TO TRANSACTION CALL TRANSACTION.
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 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. SELECT*FROM users INTO TABLE It_users WHERE first name = users »last_name.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question. SPAU SPAD SPDD SPAU_ENH.
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 Fully qualified key for sorted tables Left justified part of key for hashed tables Left justified part of key for sorted tables Index access for hashed tables.
Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question You CANNOT define parameters. You can define class-based or classic exceptions. You must define the method as pubic. You must name the method CONSTRUCTOR.
Report abuse