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

Description:
C_TAW12_750 - SAP - ABAP with SAP NetWeaver 7.50

Author:
AVATAR
SAP
Other tests from this author

Creation Date:
29/05/2020

Category: Others

Number of questions: 39
Share the Test:
New CommentNuevo Comentario
No comments about this test.
Content:
In which event block can you overwrite the default value of a PARAMETERS field on the selection screen? Please choose the correct answer. AT SELECTION-SCREEN START-OF-SELECTION INITIALIZATION PROCESS BEFORE OUTPUT.
Which of the following rules must you follow when you create a static constructor? There are 2 correct answers to this question You must name the method CONSTRUCTOR. You can define class-based or classic exceptions. You must define the method as public. You CANNOT define parameters.
In an ABAP program you have the following code sequence: DATA var TYPE n LENGTH 1. FIELD –SYMBOLS <fs> TYPE c ASSIGN var TO <fs> CASTING Which type is used to cast the assigned memory area? Please choose the correct answer. The default type STRING The default type I The type of <fs> The type of var.
The Internet Communication Manager (ICM)… Please choose the correct answer. Allows SAP NetWeaver Application Server to process HTTP requests. Replaced SAP ITS. Allows the ABAP stack and the Java stack to exchange data. Can not replaced SAP ITS.
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 When the assignment to gv_var2 is executed At the beginning of the START-OF-SELECTION event block As soon as the program is loaded into the internal session.
What must you do to create a singleton class? There are 2 correct answers to this question Create the objection a static method of the class itself. Define the class as abstract. Set the class instantiation to private. Store the reference to the singleton objection an instance attribute of the object itself.
What must before you can create a new transportable function modules? There are 3 correct answers to this question Function group Transport request Package Exception class Module pool.
Which options are valid Open SQL? There are 3 correct answers to this question CROSS JOIN FULL JOIN INNER JOIN LEFT OUTER JOIN RIGHT OUTER JOIN.
A work process… Please choose the correct answer. Uses a common memory area called shared memory. Becomes active while waiting for a user. Becomes inactive while waiting for a user. Stays linked toa screen through the dispatcher.
Which of the following standard hook methods exist in all Web Dynpro controllers? There are 2 correct answers to this question Wddobeforenavigation Wddoinit Wddoexit Wddoafteractions.
You define a formal parameter to a subroutine that accepts only internal table of type standard and type sorted as actual parameters. Which of the following generic ABAP data types must you use? Please choose the correct answer. Hashed table Standard table Index table Sorted table.
Each work process… There are 3 correct answers to this question. Uses a database connection to a work process established when the SAP NetWeaver Application Server ABAP started. Uses a pool of database connections 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. Can make database changes spanning multiple database LUWs.
Which enhancements can provide a screen exit? There are 3 correct answers to this question. Customer exits New BAdls Classic BAdls Explicit enhancement points Explicit enhancement sections.
What is the purpose of the enqueuer work process? Please choose the correct answer. It processes logical locks requests. It processes requests triggered by an active user. It processes update requests. It processes requests for a print output.
Which rules do you have to consider when working with pooled tables? There are 2 correct answers to this question All fields can be used in indexes Only key fields should be used in ORDER BY clauses An append structure can be created Only key fields should be used in WHERE condition.
What are some of the new features of Open SQL in SAP NetWeaver 7.5? There are 2 correct answers to this question. Intersection Full Join String expressions CASE expressions.
The following piece of code is used DATA: def TYPE abc, Ghi LIKE xyz. Which of the four elements are data types and which are data objects? Please choose the correct answer. abc - data type def, ghi ,xyz - data objects abc - data type def, ghi - data objects xyz - data type or data objects def, ghi - data objects abc, xyz - data type or data object abc, xyz - data type def, ghi - data objects.
When does SAP recommend that you use a full buffering type for a database table? Please choose the correct answer. When the table is small and frequently written When the table is large and seldom written When the table is small and seldom written When the table is large and frequently written.
Which of the following is an implicit enhancement? There are 2 correct answers to this question. Overwrite method Private method Protected method Pre-method.
What pre-defined ABAP data type is deep? Please choose the correct answer. STRING DECFLOAT34 X N.
What is the difference between SAP Basis and SAP NetWeaver? Please choose the correct answer. There is no difference; the name change was driven by marketing alone. All versions of SAP NetWeaver require the use of UTF-8. All versions of SAP NetWeaver include the ability to handle HTTP requests. All versions of SAP NetWeaver require the use of Unicode.
At most, how many menu items (including functions, separators and sub- menus) can a menu have on the screen? Please choose the correct answer. None of the above 10 20 15.
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. Enter the name of a data object in the Parameter ID attribute of the screen field Use the GET statement in the program to transport the data from the screen field Use a MOVE statement in a PAI module to copy the data to a data object Define a data object in the program with the same name as the screen field.
For a given date(variable lv_date), you want to find all the connections from Frankfurt to Sydney with exactly one stopover. You want to fly from the stopover city to Sydney on the same day you arrive in the stopover city. Table ZFLIGHTS hold the following information about flights. -flightid: primary key -cityfrom:departure city -datefrom: departure date -timefrom:departure time -cityto:destination city -dateto:destination date -timeto:destination time Which of the following Open SQL Queries can you use to find all the possible stopover cities? Please choose the correct answer. SELECT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT DISTINCT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityto INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT DISTINCT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityfrom IN (SELECT cityto FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’ SELECT cityfrom INTO TABLE lt_cities FROM zflights AS destination WHERE cityto IN (SELECT DISTINCT cityfrom FROM zflights WHERE dateto = destination~datefrom AND timeto < destination~timefrom AND cityfrom = ‘FRANKFURT’ AND datefrom = lv_date ) AND destination~cityto = ‘Sydney’.
Which controller types can exist within a Web Dynpro component? There are 3 correct answers to this question. User controller Component controller Application controller Window controller View controller.
Which type of transport task is used when you modify SAP standard objects? Please choose the correct answer. Development/Correction Transport of copies Workbench Repair.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Foreign key relationships Indexes Logical databases Projection views.
Which types of programs or parts of programs can be tested directly from the ABAP Workbench or ABAP Editor? There are 4 correct answers to this question. PROGRAM FUNCTION MODULE INTERFACE-POOL TYPE-POOL METHOD REPORT INCLUDE FUNCTION-POOL CLASS-POOL.
You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_CONFIGURATION_MODEL CL_WD_CONTEXT_SERVICES CL_WD_COMPONENT_ASSISTANCE CL_WD_COMPONENT_SERVICES.
What is unique about a singleton? There are 2 correct answers to this question. It must be instantiated using a public instance constructor. It must be instantiated using a private instance constructor. It must be instantiated using a static protected constructor. must be instantiated using a static private constructor. It must be instantiated using a static public constructor. It must be instantiated using a protected instance constructor. It must be defined as FINAL. It cannot be defined as FINAL.
Your program performs a database update by calling function modules in an update task. Which ABAP statements can be used in the program to discard all update requests for the current SAP logical unit of work(LUW)? There are 3 correct answers to this question MESSAGE TYPE X MESSAGE TYPE W MESSAGE TYPE E ROLLBACK WORK MESSAGE TYPE A.
Identify the types of controller. There are 5 correct answers to this question. Component controller Configuration controller Window controller View controller Custom controller Consumer controller.
Which of the following ABAP code lines is valid? There are 3 correct answers to this question. CONSTANTS gc_mantr TYPE mantr VALUE ‘100’ PARAMETERS p_mantr TYPE mantr DEFAULT ‘100’ DATA gc_mantr TYPE mantr DEFAULT ‘100’ STATICS s_mantr TYPE mantr VALUE ‘100’ SELECT-OPTIONS s_mantr TYPE mantr DEFAULT ‘100’.
You are writing a function module that will be called from external system via remote function call (RFC). How do you report an error back to the external caller? Please choose the correct answer. Write the error data into TABLES parameters that is passed by reference. Write the error data into an EXPORTING parameters passed by reference. Write the error data into a CHANGING parameters passed by value. Write the error data into a RECEIVING parameter that is passed by value.
What scheduling technique is used by the ABAP debugger dispatcher for processing user requests? Please choose the correct answer. First in , First out Multiple Queue Shortest First Round Robin.
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 DATA gv_id TYPE s_carr_id DATA gv_id TYPE s_carr_id DEFAULT ‘QF’ DATA gv_id LIKE s_carr_id CONSTANTS gc_qf TYPE s_carr_id VALUE ‘QF’.
What is the Web Dynpro programming model is based on? Please choose the correct answer. Internet Transaction Server (ITS) Classic Dynpro programming Business Server Pages (BSPs) Model View Controller (MVC).
Which of the following values are replaceable in debugger mode? Please choose the correct answer. Table names Variables Field names Constants.
A screen has the following PAI flow logic: PROCESS AFTER INPUT FIELD A MODULE check_A FIELD B MODULE check_B CHAIN. FIELD: C, D MODULE check_CD ENDCHAIN CHAIN. FIELD: C, B. MODULE check_CB ENDCHAIN What happens if the application sends a type E message during the check_CB module processing? Please choose the correct answer. The screen is displayed again without processing the PBO flow logic. Only fields B and C are ready for input The screen is displayed again without processing the PBO flow logic. All fields are ready for input. The screen is displayed again and the PBO flow logic is processed. Only fields B and C are ready for input. The screen is NOT displayed again. Processing terminates and the user must restart the ABAP program.
Report abuse