Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONtest abap c_taw12_740

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
test abap c_taw12_740

Description:
c_taw12_740

Author:
AVATAR

Creation Date:
12/10/2017

Category:
Others

Number of questions: 40
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
You have to overwrite spaces in a string with the letter ‘A’.   Which of the following statements can you use?   There are 3 correct answers to this question SHIFT LEFT OVERLAY TRANSLATE CONDENSE REPLACE.
To which ABAP Dictionary definition can you assign fixed values? Please choose the correct answer. Data element Component of a structure Domain Field of a transparent table.
Why should you bundle database updates in your dialog programs? Please choose the correct answer. To process the SAP LUW within the database LUW to ensure data consistency To be able to rollback database changes performed in the same dialog step To avoid database locks set by an SQL statement that persists until the end of the program To allow you to use SAP locks to ensure data consistency.
You are establishing the business logic layer for a Web Dynpro Component. Which service types are available in the Service Call wizard? There are 3 correct answers to this question. Function module Transaction code Web service proxy Class method Function group.
Which of the following steps are required to set up a shared memory area? There are 3 correct answers to this question. Generate an area root class Declare a catalog object Set the root object Enable multiple versions of an area root class Call the attach_for_write method of area root class.
What must before you can create a new transportable function modules? There are 3 correct answers to this question Module pool Function group Package Exception class Transport request.
Which of the following statements dynamically changes the data type of field z1? Please choose the correct answer. Move z1 to <fs> Unassign <fs> Assign z1 to <fs> casting Assign z1 to <fs>.
What types of changes to the repository does SAP provide? There are 3 correct answers to this question. Deployments from SDN.SAP.COM Enhancement Packages Support Packages Transports SAP Notes.
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 a dollar($) It starts with an asterisk (*) It start with a plus (+) It starts with an ampersand (&).
What must before you can create a new transportable function modules? There are 3 correct answers to this question Module pool Transport request Function group Package Exception class.
You run an executable program which 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 the 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 thie internal session.
You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? There are 2 correct answers to this question Change the signature Redefine the implementation Change the name Create several implementations.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Explicit enhancement sections New BAdIs Implicit enhancement point Explicit enhancement point.
Which of the following statements are correct? There are 3 correct answers to this question. An enhancement spot can contain one or more simple or composite enhancements. An enhancement spot can contain either an explicit enhancement point and enhancement section or a new BAdI only, but all three cannot be in the same enhancement spot. An enhancement spot can contain an explicit enhancement point and an enhancement section. An enhancement spot can contain an explicit enhancement point, explicit enhancement section, and new BAdI.
Which of the following can you define in the technical settings of a transparent table? There are 3 correct answers to this question. Data class Buffering type Table name Delivery class Size category.
Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) You search in the SAP reference Implementation Guide (IMG) for a suitable user exit You search in the source code of the application for GET BADI statement You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement.
Your task is to enhance the screen of an SAP standard application. How do you determine if there is a customer exit for this task? Please choose the correct answer. You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) You search in the SAP reference Implementation Guide (IMG) for a suitable user exit You search in the flow logic of the screen for CAL CUSTOMER-SUBSCREEN statement You search in the source code of the application for GET BADI statement.
Which of the following is correct? Please choose the correct answer. None of the above. The screen attributes can be modified in the PROCESS BEFORE OUTPUT event block. The screen attributes can be modified in the PROCESS AFTER INPUT event block. The screen attributes can be modified in the PROCESS BEFORE OUTPUT and PROCESS AFTER INPUT event blocks.
What is required to fully specify a Table Type in the ABAP Dictionary? There are 3 correct answers to this question. Header line Table key Table size Access type Line type.
You have created a Web Dynpro view that shows data for airline connections between cities. You want to display flight data for a specific date in a different view after the user select a date and presses a button. Which of the following actions you must perform? There are 2 correct answers to this question. Add a client-side event in the view Edit the handler method in the view controller Set the interface property for key fields Create and link plugs between the views.
Which of the following ABAP dictionary types can you use to define domains? There are 3 correct answers to this question CHAR FLOAT DATE NUMC DEC.
How can you search for suitable classic Business Add-Ins(BAdIs)? There are 2 correct answers to this question Search in the Repository Information System and choose Enhancements - >Customer Exits Search for suitable entries in the relevant component in the Implementation Guide (IMG) Use the SAP menu Tools -> ABAP Workbench -> Development -> Business Object Builder Search in an application program for the method GET_INSTANCE of class CL_EXITHANDLER.
Which of the following function types in a GUI status are reserved for internal use? There are 2 correct answers to this question. T-TRANSACTION S- SYSTEM H-HELP REQUEST E-EXIT.
When would you call the RFC function module synchronously? There are 2 correct answers to this question. During queue processing During interactive communication During two-way communication During unidirectional communication.
Which of the following rules must you follow when you create a static constructor? There are 3 correct answers to this question You can ONLY define static constructors in the public section You can use ONLY importing parameters or exceptions You must name the method CONSTRUCTOR You CANNOT use parameters or exceptions You must name the method CLASS_CONSTRUCTOR.
You write a program that updates a data record in the data base using the following statement: UPDATE scar FROM Is_scarr. Which of the following tasks does the Database Interface perform? There are 2 correct answers to this question It translates the statement to native SQL It checks the authorization of the current user It applies a logical lock to the updated data record. It restricts the access to the log-on client.
What must you do to define a database view using the ABAP Dictionary? There are 3 correct answers to this question. Response: Define selection criteria for the view. Choose the fields from the tables that should be part of the view. Define buffering settings for the underlying database tables. Choose the database tables from where the view acquires data. Define the join conditions between the tables.
Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question. SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF ls_AB. SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’. SELECT a b c d FROM table A JOIN table B ON table A~a EQ table B~ eINTO CORRESPONDING FIELDS OF TABLE lt_A_B.
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. Inspect the memory consumption Determine used database tables. Execute the extended program check Discover unused variables.
Which components of the class can be accessed in the implementation of a static method in that class? There are 2 correct answers to this question All events Instance attributes Types Constants.
Table A and table B are partially buffered. Which of the following SELECT statements always access the database? There are 2 correct answers to this question. SELECT a b c d FROM table A JOIN table B ON table A~a EQ table B~ eINTO CORRESPONDING FIELDS OF TABLE lt_A_B. SELECT SINGLE FOR UPDATE a b FROM table A INTO CORRESPONDING FIELDS OF ls_A WHERE c EQ ‘1234’. SELECT SINGLE CLIENT SPECIFIED a b FROM table A INTO CORRESPONDING FIELDS OF ls_AB. SELECT a b FROM table A INTO CORRESPONDING FIELDS OF TABLE lt_AB.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question Additional parameters in SAP function modules Additional exceptions in SAP function modules Replacements for global SAP methods Replacement for SAP function modules Additional attributes in global SAP classes.
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. TYPE-POOL FUNCTION-POOL METHOD CLASS-POOL REPORT PROGRAM INCLUDE FUNCTION MODULE INTERFACE-POOL.
How many work areas are available in the Debugger? Please choose the correct answer. 12 7 9 15.
Which of the following interface technologies are available in SAP systems? There are 3 correct answers to this question. HTTP Ethernet RFC OLE ODBC.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Events Maintenance screens Search helps Append searches.
You implemented a subclass that inherits the instance constructor from it superclass What can you do with the inherited constructor? There are 2 correct answers to this question Change the name Create several implementations Redefine the implementation Change the signature.
Which components belong to an elementary search help? There are 2 correct answers to this question. Fixed values Selection method Import / export parameters Attachment to a field.
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 selection criteria for the view. Choose the fields from the tables that should be part of the view. Define buffering settings for the underlying database tables. Define the join conditions between the tables.
Which of the following can you assign a search help to? There are 3 correct answers to this question Table type Domain Structure component Check table Data element.
Report abuse Consent Terms of use