Questions
ayuda
option
My Daypo

ERASED TEST, YOU MAY BE INTERESTED ONCurso de literatura 2

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Curso de literatura 2

Description:
Aprenda a

Author:
Marcos
(Other tests from this author)

Creation Date:
30/08/2017

Category:
Art

Number of questions: 91
Share the Test:
Facebook
Twitter
Whatsapp
Share the Test:
Facebook
Twitter
Whatsapp
Last comments
No comments about this test.
Content:
You are writing a program that uses ABAP class. Which components of the class can you create directly from the program? Please choose the correct answer. Only public components All components Only private components Only protected components.
Which of the following components belong to the SAP application layer? There are 2 correct answers to this question Database interface SAP GUI ABAP dispatcher Database server.
You want to develop a program that processes character type data. When you implement the program, you can either use the classical string statements or the newer strings expressions and functions What are the main benefits of using string expressions and string functions? There are 2 correct answers to this question You can improve the performance significantly You can write code that is very easy to read and understand You can write compact syntax instead of a long sequence of statements You can reduce the number of intermediate variables.
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 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 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 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'.
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 search in the SAP reference Implementation Guide (IMG) for a suitable user exit You use the BAdI Builder (transaction SE19) to check for a suitable Business Add-In(BAdI) 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.
What features are provided by the database interface? There are 3 correct answers to this question. Database independence of application programs Access to SAP table buffers Data consistency check using foreign key relationships Syntax check of Native SQL commands Conversion of Open SQL statements from ABAP statements into the corresponding database statements.
Which of the following statements regarding the event AT SELECTIONSCREEN ON HELP-REQUEST FOR <FIELD> is correct? Please choose the correct answer. This event will display self-defined (F1) help for the output field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field. This event will display (F1) help for the input field on the selection screen. This event will display self-defined (F1) help for the input field programmed in the event block and will override any help possibly defined in the ABAP Dictionary for the field. None of the above.
Which elementary field types are considered a character type? There are 5 correct answers to this question. D N I XSTRING T STRING C X F.
How do you program an input validation on a selection screen that allows users to correct their input? Please choose the correct answer. Implement the check at the event AT SELECTION-SCREEN OUTPUT. In case of an input error, a type E MESSAGE must be displayed. 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 AT SELECTION-SCREEN. In case of an input error, a type A 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.
You want to define two database tables with different structures. Both tables should contain the fields CHANGE_DATE and CHANGE_TIME. How do you implement this in order to minimize the maintenance effort? Please choose the correct answer. Define a structure with these two fields and include this structure in both database tables. Define the two fields in each database table separately. Define an append structure with these two fields and assign this append structure to both database tables. Define the two fields in one database table and copy them to the other database table.
Which options are available for a JOIN in ABAP Open SQL? There are 3 correct answers to this question LEFT OUTER JOIN CROSS JOIN RIGHT OUTER JOIN FULL JOIN INNER JOIN.
How do you use a sorted internal table? There are 2 correct answers to this question You can read the records by index or key You need to specify a key in the table declaration You use APPEND to insert records at the correct position You can resort the table with SORT.
What types of changes to the repository does SAP provide? There are 3 correct answers to this question. SAP Notes Enhancement Packages Transports Deployments from SDN.SAP.COM Support Packages.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Objects List Break./Watchpoints Desktop 1 Session.
Which database objects can you create in the ABAP Dictionary? There are 2 correct answers to this question Foreign key relationships Indexes Projection views Logical databases.
You need to perform a downcast. What should you do? There are 2 correct answers to this question. Use the operator "=". Catch the exception CX_SY_MOVE_CAST_ERROR. Assign a subclass reference to a superclass reference. Perform the downcast only if an upcast has already been done for the object reference.
You want to check the user input in the field FIELD_NAME on a classical screen. If an incorrect value is entered, the user should be able to correct the field value. How do you call the module CHECK_MODULE in the PAI of the screen to accomplish this? Please choose the correct answer. CHAIN. MODULE check_module FIELD field_name. ENDCHAIN. MODULE check_module ON ERROR. FIELD field_name MODULE check_module. FIELD field_name MODULE check_module MESSAGE Ennn.
Which prerequisites must be fulfilled before a repository object can be transported? There are 3 correct answers to this question. An inactive version of the repository object must exist. A transport layer must be assigned to the package. The repository object must be assigned to a package. An application component must be assigned to the repository object. The repository object must be assigned to a change request.
Which of the following is a true statement? There are 3 correct answers to this question. The transport layer is a mandatory input field for the package. Packages use interfaces and visibility to make their elements visible to other packages. All customer repository objects have to be assigned to a package. A package can be nested.
Which of the following data types are predefined ABAP data types? There are 3 correct answers to this question. STRING DECFLOAT34 DECIMALS FLOAT XSTRING.
Identify the ways to map context structures. There are 2 correct answers to this question. Dynamic context mapping Direct context mapping Static context mapping External context mapping.
Which data element property do you set so that the system logs changes to the content of fields with this data element? Please choose the correct answer. Input history Documentation Change document PARAMETER ID.
Which must a search help do? There are 4 correct answers to this question. Determine the values for selection by the user Allow the user to select a response Be used from a screen Have a dialog with the user Use a table or a view for data selection.
Which statements are allowed for processing internal tables? There are 3 correct answers to this question. INSERT DELETE SELECT UPDATE MODIFY.
What do enhancement spots manage? There are 3 correct answers to this question Explicit enhancement points Implicit enhancement points Classic BAdIs Explicit enhancement sections New BAdIs.
Which actions release a lock object (with a default value for _SCOPE)? There are 5 correct answers to this question. The display of a dialog message type A A CALL TRANSACTION COMMIT WORK A call to a function module An "/n" in the command field The display of an SAP screen DEQUEUE_ ROLLBACK WORK ENQUEUE_ A SUBMIT.
Which of the following enhancement options does not require any preparation from SAP? Please choose the correct answer. Explicit enhancement point Explicit enhancement sections New BAdIs Implicit enhancement point.
You always want to check the user authorization for data entered in an input field of a selection screen.Where do you do this? Please choose the correct answer. In the event block AT SELECTION-SCREEN In the event block AT SELECTION-SCREEN on VALUE-REQUEST In the event block INITIALIZATION In the event block AT SELECTION-SCREEN OUTPUT.
Which of the following customer modifications options are available in the table maintenance generator? There are 2 correct answers to this question. Search helps Events Append searches Maintenance screens.
What can you do with the code inspector? There are 2 correct answers to this question Create only local inspections, objects sets and check variants Choose from only the performance, security and user interface check categories Create an object set to represent the programs and objects to be inspected Create your own inspections, object sets and check variants.
What can be part of the signature of an instance constructor? There are 2 correct answers to this question Changing parameters Export parameters Import parameters Exceptions.
You want to select data from two tables and store the result in as structure. Table PARTNER contains the fields PART_ID and KIND. Table CONTRACT contains the fields CONT_ID, CONT_TYPE and DIVISION. The structure is defined as follows DATA: BEGIN OF wa_result, Part_id type partner-part_id, cont_id type contract-cont_id, Cont_type TYPE contract-cont_type, END of wa_result, Lt_result type table of wa_result. How can you replace the following SELECT statement with an outer join? SELECT part_id from partner INTO wa_result WHERE kind = 'Residential'. SELECT cont_id from CONTRACT into wa_result-cont_id WHERE part EQ wa_partner-part_id And DIVISION eq 'Water'. Append wa_result to lt_result. ENDSELECT. If sy-subrc<>0. CLEAR wa_result-cont_id APPEND wa_result TO lt_result. ENDIF. ENDSELECT. Please choose the correct answer. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = 'Residential' and AND division EQ 'Water'. SELECT part_idcont_id from partner AS A LEFT JOIN contract AS b ON a~part_id = b~part_id AND b~division EQ 'Water' INTO TABLElt_result WHERE kind = 'Residential' SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND partner-kind EQ 'Residential' INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE division eq 'Water'. SELECT part_idcont_id from partner LEFT JOIN contract on partner-part_id = contract-part_id AND contract-division EQ 'Water' INTO TABLE lt_result WHERE kind EQ 'Residential'.
Which of the following statements are true? There are 2 correct answers to this question. Static attributes cannot be changed by an object. A static attribute is the same across all instances of the class. There is only one static attribute across all instances of the class. Static attributes can be declared only in the private visibility section of the class. Static attributes are declared with the CLASS-DATA statement.
What does a non-exclusive debugging mode mean? There are 4 correct answers to this question. Debugging is not possible between the statements SELECT and ENDSELECT because the database cursor needs to be closed using a COMMIT. Debugging is not possible for conversion or field exits. Someone else is debugging the same source code. A roll-out is forced in the application after each Debugger view. It may be used anywhere in the landscape. Owing to the commit, inconsistent datasets can occur in the database.
You are required to add customer source code in the SAP delivered object using the new enhancement framework without modification. How can you find the available enhancement? There are 3 correct answers to this question. Select from the list of application-related BAdIs or enhancement spots in the SAP Application Hierarchy. Search for a Business Transaction Event in the Customizing tree (transaction SPRO). Perform a program-related global search for a customer exit. Perform a program-related global search for GET BADI. Select from the list of freely selected BAdIs or enhancement spots in the Repository Information System.
What does a view do? There are 4 correct answers to this question. Can be contained in a window Contains a view controller Contains other views Contains windows If entered by an inbound plug, can cause an event handler method to be called.
You create a function group ZATP. What is the name of the corresponding main program? Please choose the correct answer. SAPFZATP SAPMZATP ZATP SAPLZATP.
Which elementary field types are considered a character type? here are 5 correct answers to this question. T X D C STRING N F XSTRING I.
Your program performs a data base 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 W MESSAGE TYPE X MESSAGE TYPE A ROLLBACK WORK MESSAGE TYPE E.
Which of the following statements are true? There are 3 correct answers to this question. You cannot use a pooled or cluster table for a database view. The tables included in the maintenance view should have foreign key relationships. The tables included in the help view should have a foreign key relationship. Projection views can have more than one table included for the view definition.
Compared to a predefined ABAP type what additional properties can be assigned to a domain? There are 3 correct answers to this question. Value tables Conversion exits Search helps Fixed values Parameter IDs.
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 Only key fields should be used in WHERE condition An append structure can be created.
What will happen at runtime when accessing a buffered table? Please choose the correct answer. If table data is read using indexes, the table buffer will not be filled. All SELECT statements will read data from the buffer. If data is read from the table buffer, the existing indexes are not used. Following an update to a buffered record, all table buffers in the system will be updated.
Which of the following statements regarding search helps are true? There are 3 correct answers to this question. Help views can also be used for the selection method for search help. You can use a maintenance view for the search help selection method. You can use transparent tables for the search help selection method. You can use a database view for the search help selection method.
Which type of view uses an inner join in a search help? Please choose the correct answer. Candidate key view Database view Maintenance view Help view.
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? There are 2 correct answers to this question DATA: r TYPE f, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE f. DATA: r TYPE p DECMALS 2, a TYPE i VLAUE 201, b TYPE i VALUE 200, c TYPE f. DATA: r TYPE p, a type I VALUE 201, b type I VALUE 200, c type i. DATA: r TYPE p DECIMALS 2, a TYPE i VALUE 201, b TYPE i VALUE 200, c TYPE.
When should you use a hashed internal table? There are 2 correct answers to this question. When accessing by index When accessing always by primary key When accessing by secondary key When accessing mainly single records When accessing using the left-justified part of the key.
Identify the types of layout managers. There are 4 correct answers to this question. ColumnLayout RowLayout FlowLayout GridLayout MatrixLayout TreeLayout.
What transactions can be used to carry out modification adjustments after a system upgrade? There are 2 correct answers to this question Spool Administration: Initial Screen (Transaction SPAD) to adjust ABAP Repository objects Modification Adjustment: Dictionary Object Selection (Transaction SPDD) to adjust ABAP Dictionary objects Modification Adjustment: Object Selection (Transaction SPAU) to adjust ABAP Repository objects Object Navigator (Transaction SPAU_ENH) to adjust ABAP Dictionary objects.
Which steps are needed when implementing the singleton concept for class instantiation with minimum coding? There are 3 correct answers to this question. Save the instance of the class in a static attribute. Define the instantiation of the class as private. Create an instance of the class in a static constructor. Define the class as abstract. Create an event that returns the instance of the class.
Which of the following items are used in a Web Dynpro Application to transport database data to the user interface? There are 2 correct answers to this question. Inbound plug Interface controller Supply function Context node.
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 Create several implementations Redefine the implementation Change the name Change the signature.
You can use the logical expression IS SUPPLIED for any formal parameter passed to which modularization unit? There are 3 correct answers to this question. Function module Static method Instance method Subroutine (FORM routine).
Which of the following can you assign a search help to? There are 3 correct answers to this question Domain Check table Table type Sructure component Data element.
You enhance an SAP standard global class by defining a post-method for an SAP method. The original SAP method has an EXPORT parameter named PARM1. Which parameters does the post-method have? Please choose the correct answer A CHANGING parameter named PARM1 An EXPORT parameter named PARM1 A RETURNING parameter named PARM1 An OMPORT parameter named PARM1.
Each component has an interface; of what does this interface consist? There are 2 correct answers to this question. Data Container Interface controller Interface context Interface view.
When you add programming logic to your ABAP program that checks authorizations,which of the following do you have to create? There are 2 correct answers to this question. An authorization role An authorization object An authorization profile An authorization Access.
Is it possible to have multiple active implementations of business add-ins at a time? There are 2 correct answers to this question. It can have a multiple active implementation. It can have multiple active implementations if the Multiple use checkbox is selected. It cannot have a multiple active implementation. It can have multiple implementations if the Filter-Depend. checkbox is selected.
What is the maximum number of watchpoints that can exist at one time? Please choose the correct answer. 6 10 No limit 8.
Under which circumstances will the classic Debugger start as the Debugger? There are 2 correct answers to this question. None; the new Debugger will always start as the Debugger. When five modes already exist for this logon session. When you specify the default as the classic Debugger in the settings of the Object Navigator. If you manually switched to the classic Debugger during your last session. When the number of debugging sessions exceeds half the number of dialog sessions.
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. Right click the table and select the 'CREATE_BINDING' option Include the method BIND_TABLE of IF_WD_CONTEXT_NODE. Bind the table attribute 'DATA_SOURCE' to the context node Generate a 'BIND_TABLE' method using the web dynpro method wizard.
Which of the following controller types can exist only once in a Web Dynpro component? There are 2 correct answers to this question. Component controller Configuration controller View controller Window controller.
Which desktops are part of the new ABAP debugger? There are 3 correct answers to this question. Objects Desktop 1 Session List Break./Watchpoints.
How do you define an internal table in a private method of a class? There are 3 correct answers to this question. DATA lt_itab TYPE <Dictionary Table> DATA lt_itab TYPE TABLE OF <Structure Type> DATA lt_itab TYPE TABLE OF <Dictionary Table > WITH HEADER LINE DATA lt_itabTYPE <Table Type> DATA lt_itab TYPE TABLE OF < Dictionary Table >.
Which statements are true about a class that has granted friendship to another class? There are 4 correct answers to this question. All classes the friend has granted friendship access status to also have the same access. The friend has access to protected attributes. The friend has access to private attributes. The friend has access to public attributes. All classes that inherit from the friend (subclasses) also have the same access.
What is the best order to provide an event handler for an ALV? Please choose the correct answer. Write the handler, create the ALV, register for the event, display the ALV Register for the event, write the handler, create the ALV, display the ALV Write the handler, register for the event, create the ALV, display the ALV Create the ALV, write the handler, register for the event, display the ALV Write the handler, create the ALV, display the ALV, register for the event.
Which property of the InputField UI element must be bound to a context attribute? please choose the correct answer. visible state value enable.
Which of the following statements are true? There are 3 correct answers to this question. Projection views can have more than one table included for the view definition. You cannot use a pooled or cluster table for a database view. The tables included in the maintenance view should have foreign key relationships. The tables included in the help view should have a foreign key relationship.
How can Unicode checks be made? There are 2 correct answers to this question. Only in a Unicode system or as part of a conversion to a Unicode system In any system (after release 6.10) by specifying the program has Unicode checks active By running Transaction UCCHECK Cannot be enforced.
Which of the following are features of the Context in Web Dynpro? There are 2 correct answers to this question Data is transferred from one Context to another by firing plugs Every Web Dynpro controller has multiple Contexts Data is shared between controllers through Context mapping Every Web Dynpro controller has one Context.
Which statements are allowed for processing internal tables? There are 3 correct answers to this question. UPDATE MODIFY SELECT INSERT DELETE.
What must you do to create a singleton class? There are 3 correct answers to this question Instantiate the class in a static method of the class itself Define the class as abstract Set the class instantiation to private Define the class as final Implement the IF_UMM_SINGLETON interface in the class.
Which statements are considered obsolete and cannot be used in ABAP Objects? Please select all the correct answers that apply. INFOTYPES TABLES DATA ... BEGIN OF ... OCCURS DATA ... TYPE ... OCCURS SEARCH RANGES LOOP AT dbtab LEAVE ON CHANGE OF.
You want to translate dynamic text in a web dynpro. From which abstract class should you inherit? Please choose the correct answer. CL_WD_CONTEXT_SERVICES CL_WD_CONFIGURATION_MODEL CL_WD_COMPONENT_ASSISTANCE CL_WD_COMPONENT_SERVICES.
Which data types are incomplete ABAP standard data types? There are 3 correct answers to this question. C F P I N.
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 Types All events Constants Instance attributes.
You define a database view A and maintenance view B in the ABAP dictionary. What restrictions apply to these views? There are 2 correct answers to this question The tables joined in A must have foreign key relationships Only A can be used in the FROM clause of a SELECT statement Only B can have either a left outer join or an inner join The tables joined in B must have foreign key relationships.
What is required to fully specify a Table Type in the ABAP Dictionary? There are 3 correct answers to this question. Access type Table size Line type Table key Header line.
Which of the following are table buffering types? There are 3 correct answers to this question Generic Single-record Primary-key Column-store Full.
You have located a new (kernel) Business Add-in(BAdI) in an SAP standard application? What must you create to implement the BAdI, and in which order? Please choose the correct answer. Enhancement Project BAdI Implementation BAdI Implementation Enhancement Spot Implementation Enhancement Spot Implementation BAdI Implementation BadI Implementation Enhancement Project.
What does a Web Dynpro component contain? There are 3 correct answers to this question. Exactly one interface controller Component controller Multiple views within a window A context UI elements.
Each work process is assigned a type of task that can be performed. Which statements related to this are true? There are 3 correct answers to this question. It is possible to have multiple spool work processes on an ABAP application server. A work process can communicate directly with an external system through a Remote Function Call. All work processes communicate with the dispatcher. All work processes communicate with the database. It is possible to have multiple enqueue work processes on an SAP NetWeaver Application Server. To switch a work process type requires a restart of the SAP NetWeaver Application Server ABAP. All work processes have the same structure.
In a subclass, you want to redefine a method of the super class. Which of the following conditions must be fulfilled? There are 2 correct answers to this question. The superclass method is an instance method The subclass method has a lower visibility than the super class method The subclass method has same visibility as the super class method The super class method is abstract.
What is unique about a functional method? There are 5 correct answers to this question. It can contain an exporting parameter. It can contain an importing parameter. It must contain a returning parameter. It must be a singleton. It can contain a changing parameter. It can be used in SELECT statements. It can be used in logical expressions.
For which of the following requirements can you implement a functional method? There are 2 correct answers to this question. A factory method that returns an object reference A method to set an instance attribute with one importing parameter and no other parameters A handler method for an event that has a returning parameter A private static helper method that returns a single value as the result of an algorithm.
Which of the following can you assign a search help to? There are 3 correct answers to this question Check table Data element Structure component Domain Table type.
What does Software Layer Aware Debugging allow you to do? There are 3 correct answers to this question. Bypass authorization objects Trace executing code Specify as much or as little code to debug Debug only a small portion of code Debug a large portion of code.
What is the event block that all of your code changes belongs to if you do not explicitly code any event blocks in an executable program? Please choose the correct answer. INITIALIZATION LOAD-OF-PROGRAM AT SELECTION-SCREEN OUTPUT START-OF-SELECTION.
The data buffered on each application server... Please choose the correct answer. Is does not the same. Depends on the users. Is never the same. Is always the same.
ABAP is a programming language that... There are 4 correct answers to this question. Processes and formats data. Executes on all three levels of the three-tier architecture. Controls the business logic. Interacts with the user. Separates program code from language text.
What can be defined using an implicit enhancement option? There are 3 correct answers to this question Replacements for global SAP methods Additional parameters in SAP function modules Additional exceptions in SAP function modules Additional attributes in global SAP classes Replacement for SAP function modules.
Report abuse Consent Terms of use