<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5917633052251788702</id><updated>2011-12-06T18:43:24.213-08:00</updated><title type='text'>Exámen de Certificación ABAP - Preguntas</title><subtitle type='html'>Exámen de Certificación ABAP - Preguntas y Respuestas</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://examen-abap.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5917633052251788702/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://examen-abap.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Enrique Quispe</name><uri>http://www.blogger.com/profile/07771031718605817110</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5917633052251788702.post-1351743054770634684</id><published>2007-12-01T15:47:00.001-08:00</published><updated>2008-10-26T09:23:09.812-07:00</updated><title type='text'>Exámen de Certificación ABAP</title><content type='html'>1. Which statements are allowed if you are working with an internal table of the&lt;br /&gt;type SORTED? (T/F)&lt;br /&gt;F- SORT&lt;br /&gt;F- APPEND&lt;br /&gt;F- MODIFY&lt;br /&gt;T- COLLECT&lt;br /&gt;T- READ&lt;br /&gt;2. Which of the following ABAP statements create a list for executable programs?&lt;br /&gt;(T/F)&lt;br /&gt;T- SKIP&lt;br /&gt;T- WRITE&lt;br /&gt;F- PERFORM&lt;br /&gt;F- CLEAR&lt;br /&gt;T- ULINE&lt;br /&gt;3. Which of the following statements are correct? (T/F)&lt;br /&gt;- You can select from several database tables using a database view or a join. T&lt;br /&gt;- A secondary index for non-key fields generally works like a primary index for&lt;br /&gt;key fields. T&lt;br /&gt;- A key field in a database table uniquely identifies a data record. T&lt;br /&gt;- The client field is a selective field and should therefore always be specified in&lt;br /&gt;the&lt;br /&gt;WHERE condition for SELECT. F&lt;br /&gt;- The OPEN SQL statements are converted into database-specific statements by&lt;br /&gt;the database interface. T&lt;br /&gt;4. What do you get when you refer to a client-specific transparent table in the&lt;br /&gt;Dictionary if you have a data definition with TABLES? (Single selection)&lt;br /&gt;- A structured work area (line). T&lt;br /&gt;- A field. F&lt;br /&gt;- An internal table. F&lt;br /&gt;5. In program P, the SUBMIT statement is used to call report R. How can you pass&lt;br /&gt;data from P to R? (T/F)&lt;br /&gt;- Using the SET/GET parameters. T&lt;br /&gt;- By passing parameters using additions in the SUBMIT statement. T&lt;br /&gt;- Using the ABAP memory. T&lt;br /&gt;- By declaring the data objects with the same name in both programs, using the&lt;br /&gt;DATA statement. F&lt;br /&gt;6. Which of the following statements about the SELECT statement are correct?&lt;br /&gt;(T/F)&lt;br /&gt;- With SELECT SINGLE access, the result is one data record maximum. T&lt;br /&gt;- The SELECT statement supports the return code (SY-SUBRC). T&lt;br /&gt;- With SELECT...ENDSELECT access. the result is one data record maximum. F&lt;br /&gt;- The SELECT statement always reads the data into the SAP memory first. F&lt;br /&gt;- With SELECT...INTO TABLE access, the result is one data record maximum. F&lt;br /&gt;7. Which of the following statements about data types, data objects, and field&lt;br /&gt;symbols are correct? (T/F)&lt;br /&gt;- If you change the value of a field symbol, the value of the data object to which&lt;br /&gt;the field&lt;br /&gt;symbol is assigned also changed.&lt;br /&gt;T&lt;br /&gt;- A field symbol always reference a data element. F&lt;br /&gt;- You can no longer create data objects at runtime(dynamically) since the ABAP&lt;br /&gt;runtime system combines all the declarative statements in on processing block&lt;br /&gt;and executes these first. F&lt;br /&gt;- A field symbols only references a data object after the latter has been assigned&lt;br /&gt;to the field symbols using the ASSIGN statement. T&lt;br /&gt;- You can change the type of the assigned data object using the CASTING-TYPE&lt;br /&gt;addition for the ASSIGN statement. T&lt;br /&gt;8. Which of the following statements about internal tables is correct? (T/F)&lt;br /&gt;- Key access to an internal table of the type STANDARD generally has even less&lt;br /&gt;runtime consumption than index access. F&lt;br /&gt;- Index access to an internal table of type SORTED will, in certain cases, violate&lt;br /&gt;the sort sequence. F&lt;br /&gt;- Access to nested internal tables using field symbols usually increase&lt;br /&gt;performance. T&lt;br /&gt;- Index access to an internal table of the type HASHED has less runtime&lt;br /&gt;consumption. F&lt;br /&gt;- You can perform a binary search on internal tables of the type SORTED using&lt;br /&gt;the addition BINARY SEARCH only. F&lt;br /&gt;9. You want a subroutine U to have a formal parameter P that is used to return a&lt;br /&gt;value. Which of the following definitions of U would you use to ensure that the&lt;br /&gt;value is passed back to the calling program only if the processing of U ends&lt;br /&gt;normally and is not terminated with a MESSAGE statement? (Single selection)&lt;br /&gt;- FORM U CHANGING VALUE(P). T&lt;br /&gt;- FORM U CHANGING P. F&lt;br /&gt;- FROM U USING P.&lt;br /&gt;LOCAL P. F&lt;br /&gt;- FROM U USING p. F&lt;br /&gt;- FORM U USING VALUE(P). F&lt;br /&gt;10. Which statement at the time of AT SELECTION-SCREEN causes the selection&lt;br /&gt;screen to be displayed again with fields ready for input and a message in the&lt;br /&gt;status line? (Single selection)&lt;br /&gt;- A MESSAGE E...statement T&lt;br /&gt;- An AUTHORITY-CHECK statement that return code SY-SUBRC NE 0. F&lt;br /&gt;- A MESSAGE I...statement. F&lt;br /&gt;11. What do you get when you refer to a client-specific transparent table in the&lt;br /&gt;Dictionary if you have a data definition with TABLES? (Single selection)&lt;br /&gt;- A structured work area (line). T&lt;br /&gt;- A field. F&lt;br /&gt;- An internal table. F&lt;br /&gt;12.&lt;br /&gt;Which of the following events generate lists? (T/F)&lt;br /&gt;- PROCESS BEFORE OUTPUT F&lt;br /&gt;- START-OF-SELECTION. F&lt;br /&gt;- AT SELECTION-SCREEN. F&lt;br /&gt;- INITIALIZATION. F&lt;br /&gt;- AT LINE-SELECTION. T&lt;br /&gt;13. Which component of an application sever controls the data traffic between a&lt;br /&gt;work process and a presentation server? (Single selection)&lt;br /&gt;- Dispatcher. T&lt;br /&gt;- SAPGUI. F&lt;br /&gt;- Front-end processor. F&lt;br /&gt;- Message Handler. F&lt;br /&gt;- Screen processor. F&lt;br /&gt;14. For which tasks is the database interface responsible? (T/F)&lt;br /&gt;- Syntax check of "native" SQL commands. F&lt;br /&gt;- Conversion of Open SQL statement from ABAP statements into the&lt;br /&gt;corresponding database statements. T&lt;br /&gt;- Data consistency check with respect to foreign key relationships. F&lt;br /&gt;- Database independence of application programs. T&lt;br /&gt;- Usage of the SAP buffers. T&lt;br /&gt;15.&lt;br /&gt;Which SAP GUI types are there? (T/F)&lt;br /&gt;- SAP GUI for Windows T&lt;br /&gt;- SAP GUI for HTML. T&lt;br /&gt;- SAP GUI for Web AS. F&lt;br /&gt;- SAP GUI for ITS. F&lt;br /&gt;- SAP GUI for Java. T&lt;br /&gt;16. Where can you have automatic input checks against the check table? (Single&lt;br /&gt;selection)&lt;br /&gt;- For input fields on screens if the input fields have been copied from the&lt;br /&gt;Dication into the Screen Painter. T&lt;br /&gt;- For input fields on ABAP lists. F&lt;br /&gt;- For input fields on selection screens. F&lt;br /&gt;17. Is it possible to increase the number of key fields in transparent tables that&lt;br /&gt;are already active? (Single selection)&lt;br /&gt;- No, Key changes are not allowed. T&lt;br /&gt;- Yes, irrespective of whether the table already contains data or not. F&lt;br /&gt;- Yes, However, the table must not contain any data yet. F&lt;br /&gt;18. Which of the following statements about APPEND structures are true? (T/F)&lt;br /&gt;- After adding an APPEND structure to a table, you must convert the table. F&lt;br /&gt;- You can use an APPEND structure like any other structure in ABAP programs. ?&lt;br /&gt;F&lt;br /&gt;- An APPEND structure allow you to append field to an SAP table without having&lt;br /&gt;to modify the table itself. T&lt;br /&gt;- An APPEND structure is the same as substructure. F&lt;br /&gt;19. Changes to active transparent tables: The type for the non-key field is to be&lt;br /&gt;changed from NUMC to CHAR. What follow-up actions are to be expected? (T/F)&lt;br /&gt;20. Which of the following statements apply to a database view? (T/F)&lt;br /&gt;- A database view supplies the results quantity of an outer join logic. F&lt;br /&gt;- Using a database view, you can read data from several tables. T&lt;br /&gt;- Using a database view, you can insert data into several tables. F&lt;br /&gt;- A database view is a special view of transparent tables. F&lt;br /&gt;- A database view can have one or several base tables. T&lt;br /&gt;21.&lt;br /&gt;The search help function know various link options in the ABAP dictionary.&lt;br /&gt;Which of the following statements apply? (T/F)&lt;br /&gt;- A search help function that is linked to the table field can return values only for&lt;br /&gt;the search field (field where the f4 help was triggered). F&lt;br /&gt;- A search help function that is linked to the data element can return values only&lt;br /&gt;for the search field (field where the f4 help was triggered). F&lt;br /&gt;- If the search help function is linked to the data element as well as to the field.&lt;br /&gt;The search help for the field is displayed. T&lt;br /&gt;- If the search help function is linked to a table A. this search help is displayed&lt;br /&gt;whenever there are input field from A on the screen. f&lt;br /&gt;- If the search help function is linked to a table A. this search help displayed&lt;br /&gt;whenever there are input fields on that screen that have A as the check table. T&lt;br /&gt;22. Which statements about parameters for an elementary search help apply?&lt;br /&gt;(T/F)&lt;br /&gt;- Parameters can be displayed on the result list. T&lt;br /&gt;- Parameters must be fields from the selection method only. F&lt;br /&gt;- Import parameters control which data can be included in the data selection. T&lt;br /&gt;- Export parameters control which data can be returned to the input template. T&lt;br /&gt;- A parameter is either an import or an export parameter F&lt;br /&gt;23.&lt;br /&gt;Which of the following statements about indexes are correct? (T/F)&lt;br /&gt;- The primary index consists of the key fields of the database table. T&lt;br /&gt;- An Index can be assigned to several database tables. F&lt;br /&gt;- A database table can have more than one index. T&lt;br /&gt;- Using an index speeds up data selection from a table. T&lt;br /&gt;24.&lt;br /&gt;For what purpose are foreign key (FK) defined in the ABAP Dictionary? (Single&lt;br /&gt;selection)&lt;br /&gt;- For the purpose of data consistency: when you active the table the FKs are&lt;br /&gt;created in the database. You thus prevent invalid data from getting into the table.&lt;br /&gt;F&lt;br /&gt;- For the propose data consistency: when you maintain data records using dialog&lt;br /&gt;transaction (screens). T&lt;br /&gt;- The input values are automatically check in accordance with the FKs. T&lt;br /&gt;- FKs are used solely for documenting table relationships. F&lt;br /&gt;25.&lt;br /&gt;In which of the following table types is there a one-to-one relationship between&lt;br /&gt;the table defined in the ABAP Dictionary and relevant physical table in the&lt;br /&gt;database?&lt;br /&gt;- Cluster table F&lt;br /&gt;- Pooled table F&lt;br /&gt;- Structure F&lt;br /&gt;- Transparent database table. T&lt;br /&gt;26. What is allowed within class definitions? (T/F)&lt;br /&gt;- Typing with LIKE to ABAP Dictionary types. F&lt;br /&gt;- The definition of internal tables with header lines. F&lt;br /&gt;- The TABLES statement. F&lt;br /&gt;- The definition of internal tables without header lines. T&lt;br /&gt;- Typing with TYPE to ABAP Dictionary types. T&lt;br /&gt;27.&lt;br /&gt;Which techniques are basic requirements for polymorphism? (T/F)&lt;br /&gt;- Narrowing Case. T&lt;br /&gt;- Redefinition of methods (for polymorphsim through inheritance). T&lt;br /&gt;- Widening Cast. F&lt;br /&gt;- Implementation of methods of an interface in the respective classes&lt;br /&gt;(for polymorphism through interfaces). T&lt;br /&gt;28. Which of the following statements about interfaces are correct? (T/F)&lt;br /&gt;- Interfaces actually stand for an interface (protocol) between a client (interface&lt;br /&gt;user) and a server (implementing class). T&lt;br /&gt;- Interfaces are used to call static components of a class. F&lt;br /&gt;- Using interface references you can reference all the public components of an&lt;br /&gt;object that have been defined in the corresponding interface-implementing class.&lt;br /&gt;F&lt;br /&gt;- A client (caller) can use interface reference to access all methods of the&lt;br /&gt;interfaces and thus archive polymorphism behavior. T&lt;br /&gt;- Using interfaces you can simulate multiple inheritance.T&lt;br /&gt;29.&lt;br /&gt;Using the statement CREATE OBJECT you can instantiate objects of a class.&lt;br /&gt;What situations can arise here? (T/F)&lt;br /&gt;- All objects of the same class contain the same number of attributes and&lt;br /&gt;methods after being created. T&lt;br /&gt;- You can preset different objects of a class with different values immediately&lt;br /&gt;when they are being created. T&lt;br /&gt;- The contents of the attributes of different objects in a class always contain the&lt;br /&gt;same content or value immediately after being created. F&lt;br /&gt;- You define the type and number of attributes of an object through the&lt;br /&gt;corresponding class. T&lt;br /&gt;30. Ref_cl is a reference to the class cl_document. ref_if is a reference to the&lt;br /&gt;interface if_display.&lt;br /&gt;The interface if_display is implemented by the class cl_document. What option&lt;br /&gt;do you have to create an object of the class cl_docment? (T/F)&lt;br /&gt;- CREATE OBJECT ref_cl. T&lt;br /&gt;- CREATE OBJECT ref_if TYPE cl_document. T&lt;br /&gt;- CREATE OBJECT ref_if. F&lt;br /&gt;- DATA class_name TYPE string.&lt;br /&gt;class_name = "CL_DOCUMENT".&lt;br /&gt;CREATE OBJECT ref_if TYPE (class_name). T&lt;br /&gt;31.&lt;br /&gt;In the case of classes, we distinguish between two types of components&lt;br /&gt;(attributes and methods):&lt;br /&gt;Instance components and static components. Which of the following statements&lt;br /&gt;apply in this context? (T/F)&lt;br /&gt;- In a static method, instance attributes can also be used, provided they are&lt;br /&gt;declared as READ ONLY. F&lt;br /&gt;- Instance methods can use both static as well as instance components in their&lt;br /&gt;implementation part. T&lt;br /&gt;- Both static as well as instance attributes are declared using the DATA&lt;br /&gt;statement.F&lt;br /&gt;- Static methods can be called through the class:&lt;br /&gt;&lt;class_name&gt;=&gt;&lt;method_name&gt;. T&lt;br /&gt;- Static attributes exist only once for each class. T&lt;br /&gt;32. Which of the following statements about functional methods are correct?&lt;br /&gt;(T/F)&lt;br /&gt;- Functional methods cannot have any EXPORTING or CHANGING parameters. T&lt;br /&gt;- Functional methods have exactly one RETURNING parameter. T&lt;br /&gt;- You can functional methods directly in a WRITE statement. F&lt;br /&gt;- You can use functional methods directly in an arithmetic expression. T&lt;br /&gt;33. Which of the following statements apply to the SAP grid control? (T/F)&lt;br /&gt;- Can only be implemented in module pools. F&lt;br /&gt;- Can only display single-line lists. T&lt;br /&gt;- Cannot print data. F&lt;br /&gt;- Provides standard functions such as sorting. T&lt;br /&gt;- Can only display structures from the Dictionary. F&lt;br /&gt;34.&lt;br /&gt;Which access authorizations apply to friend relationships? (T/F)&lt;br /&gt;- A friend of a class access to the public attributes of the class allowing the&lt;br /&gt;friendship. T&lt;br /&gt;- A subclass of a friend class has automatic access to the private attributes of&lt;br /&gt;the class allowing the friendship. F&lt;br /&gt;- A friend of a class has access to the private attributes of the class allowing the&lt;br /&gt;friendship. T&lt;br /&gt;- The allowing of a friendship is not inherited. T&lt;br /&gt;35.&lt;br /&gt;Which statements in connection with methods are correct? (T/F)&lt;br /&gt;- You can call methods in ABAP objects in the same way as function modules. F&lt;br /&gt;- You can call methods only within ABAP Objects classes. F&lt;br /&gt;- Like form routines or function modules, methods are a means to modularize&lt;br /&gt;software. T&lt;br /&gt;- Similar to the case with function modules, you have the option with methods of&lt;br /&gt;marking parameters as "optional". T&lt;br /&gt;36. SE24&lt;br /&gt;If you have a "Singleton Pattern", you must ensure that only one object can be&lt;br /&gt;created from a cl_singleton class. What mechanisms must you avail of here?&lt;br /&gt;- The singleton class must have a class method implemented in which the&lt;br /&gt;CREATE OBJECT call is programmed for this one object. T&lt;br /&gt;- The singleton class must have the addition CREATE PRIVATE in the definition&lt;br /&gt;part. T&lt;br /&gt;- In the singleton class, there must be an even defined that is triggered when the&lt;br /&gt;first and only object is created&lt;br /&gt;and also prevents further objects of this class from being created. T&lt;br /&gt;- The singleton class must have an instance method implemented in which the&lt;br /&gt;CREATE OBJECT call is programmed for this one object. T&lt;br /&gt;- The CREATE OBJECT call for this one object can take place in the class&lt;br /&gt;constructor of the singleton class. T&lt;br /&gt;37.&lt;br /&gt;The reference ME is defined by the system and has the following function.(Single&lt;br /&gt;selection)&lt;br /&gt;- You use the reference ME within a class solely to reference the private methods&lt;br /&gt;of the class itself. F&lt;br /&gt;- You use the reference ME within a class to call attributes and methods of the&lt;br /&gt;class itself. T&lt;br /&gt;- You use the reference ME within a class solely to reference the private&lt;br /&gt;attributes of the class itself. F&lt;br /&gt;38.&lt;br /&gt;In a OO transaction, a transaction code is assigned to a method of a global class&lt;br /&gt;CL_A. Afterwards,&lt;br /&gt;this method can be called directly using the transaction code. What limitation&lt;br /&gt;exists with regard to the (instance) constructor of this class CL_A?&lt;br /&gt;- The constructor must not have any importing parameters.T&lt;br /&gt;- There is no limitation. F&lt;br /&gt;- The constructor must be defined in the protected section.F&lt;br /&gt;39.&lt;br /&gt;Which of the following statements about inheritance are correct? (T/F)&lt;br /&gt;- Through inheritance, the public attributes of the super class are inherited to the&lt;br /&gt;subclass. T&lt;br /&gt;- Through inheritance, the private attributes of the super class are inherited to&lt;br /&gt;the subclass&lt;br /&gt;and they can be addressed in the subclass directly using "ME-&gt;". F&lt;br /&gt;- Through inheritance, the protected attributes of the super class are inherited to&lt;br /&gt;the subclass. T&lt;br /&gt;- Through inheritance, the private attributes of the super class are inherited to&lt;br /&gt;the subclass&lt;br /&gt;and they can be addressed in the subclass directly using "THIS-&gt;". F&lt;br /&gt;40.&lt;br /&gt;Typing is not always necessary in ABAP, for example,&lt;br /&gt;for interface parameters of a subroutine. Which of the following statements&lt;br /&gt;applies to ABAP objects? (Single selection)&lt;br /&gt;- Typing is imperative for interface parameters of a method belonging to an ABAP&lt;br /&gt;objects class. T&lt;br /&gt;- To simplify writing the software and design it clearly, you can do without typing&lt;br /&gt;altogether within the ABAP object classes. F&lt;br /&gt;- If you have numeric interface parameter in an ABAP Objects class. You can do&lt;br /&gt;without typing. F&lt;br /&gt;41.&lt;br /&gt;What is a (instance) constructor? (Single selection)&lt;br /&gt;- An instance attribute that is automatically given a unique identification by the&lt;br /&gt;system when an object is created. F&lt;br /&gt;- An instance method for initializing the attributes of an object; it is automatically&lt;br /&gt;called by the system during CREATE OBJECT. T&lt;br /&gt;- An instance method for controlling how much main memory is to be reserved&lt;br /&gt;for an object. F&lt;br /&gt;42.&lt;br /&gt;Which statements apply to dialog program? (Single selection)&lt;br /&gt;- If you are using asynchronous update, the database changes are executed&lt;br /&gt;directly from the program F&lt;br /&gt;- If you are using asynchronous update, the statement COMMIT WORK is not&lt;br /&gt;required because it is executed implicitly after each screen change. T&lt;br /&gt;- In the PAI of each screen, you must use the statement COMMIT WORK. F&lt;br /&gt;- If an inline change has resulted in an error, the statement ROLLBACK WORK&lt;br /&gt;must be listed in the last screen in order to rollback the entire SAP LUW. F&lt;br /&gt;- All inline change must be done in the PAI of the last screen in order to ensure&lt;br /&gt;the rollback ability of the SAP LUW. F&lt;br /&gt;43.&lt;br /&gt;What can you do to undo database changes executed beforehand in a dialog?&lt;br /&gt;(T/F)&lt;br /&gt;- Output a termination message.(ABORT, X) T&lt;br /&gt;- Analyze the log record. F&lt;br /&gt;- Output an error message. F&lt;br /&gt;- Perform a ROLLBACK WORK. T&lt;br /&gt;- Raise an exception. F&lt;br /&gt;44. Which of the following steps should be carried out in a transaction that&lt;br /&gt;implements an updating technique? (T/F)&lt;br /&gt;- Call the ABAP command COMMIT WORK. T&lt;br /&gt;- Unlock the data record that is to be updated F&lt;br /&gt;- Lock the data record that to be update. F&lt;br /&gt;- Read the data record that is to be update. F&lt;br /&gt;- Pass the changes entered by the user to the update process. F&lt;br /&gt;45. You call an update function using CALL FUNCTION ... IN UPDATE TASK. At&lt;br /&gt;what time are the values of the function parameters determined? (Single&lt;br /&gt;selection)&lt;br /&gt;- At the end of the dialog step. F&lt;br /&gt;- at the start of the V1 update. F&lt;br /&gt;- At the time of the call F&lt;br /&gt;- At the start of function execution. F&lt;br /&gt;- At COMMIT WORK. T&lt;br /&gt;46. You are writing a transaction to update a database table. Which of the&lt;br /&gt;following elements must the program contain? (T/F)&lt;br /&gt;- A logical database. F&lt;br /&gt;- A table buffer refresh on the application server. F&lt;br /&gt;- A call for ENQUEUE/DEQUEUE fuction modules. T&lt;br /&gt;- An AUTHORITY-CHECK statement. T&lt;br /&gt;- A call for an update function module in the case of time-consuming changes. T&lt;br /&gt;47. What are the main reasons for using update techniques? (T/F)&lt;br /&gt;- To log the database changes. F&lt;br /&gt;- To achieve delayed implementation of database changes. F&lt;br /&gt;- To collect database change requests from several dialog step in order to&lt;br /&gt;process them or delete them together. T&lt;br /&gt;- To create reusable modules for database changes. T&lt;br /&gt;- To relieve the load on the dialog work processes. T&lt;br /&gt;48. What happens if you have a CALL TRANSACTION statement? (T/F)&lt;br /&gt;- The update process triggered by the called transaction can be executed&lt;br /&gt;asynchronously or synchronously, as required. T&lt;br /&gt;- The called transaction is processed in a separated database LUW. T&lt;br /&gt;- Processing of the calling program will be continued at the end of the&lt;br /&gt;transaction. T&lt;br /&gt;- Another internal session is opened for the transaction. T&lt;br /&gt;49.&lt;br /&gt;Which sub objects can an SAP enhancement contain? (T/F)&lt;br /&gt;- Menu exits. T&lt;br /&gt;- Screen exits. T&lt;br /&gt;- Append Structures. T&lt;br /&gt;- Function module exits. T&lt;br /&gt;- User exits. F&lt;br /&gt;50.&lt;br /&gt;You want to supply your users with a transaction variant. Using transaction&lt;br /&gt;variants you can … (T/F)&lt;br /&gt;- ... have transaction run in the background. F&lt;br /&gt;- ... change the flow logic of a screen. F&lt;br /&gt;- ... reduce the complexity of transactions. T&lt;br /&gt;- ... suppress individual fields. T&lt;br /&gt;- ... suppress entire(a) screens. T&lt;br /&gt;51.&lt;br /&gt;Which of the following statements apply to table appends? (T/F)&lt;br /&gt;- There can be several append structures for one table. T&lt;br /&gt;- If you copy a table to which an append structure has been added, the fields in&lt;br /&gt;the append structure become standard fields in the table. T&lt;br /&gt;- When you active the table, all the active append structure of the table are&lt;br /&gt;established and appended to the table in the database. T&lt;br /&gt;- An append structure can be assigned to several tables. F&lt;br /&gt;52. You wish to use a Business Transaction Event (BTE) to enhance an SAP&lt;br /&gt;application. Which statement applies? (T/F)&lt;br /&gt;- BTEs are called on a cross-client basis. F&lt;br /&gt;- BTEs allow you to call additional components in other systems. F&lt;br /&gt;- BTEs allow you to link up addtional components to the SAP standard system. T&lt;br /&gt;- BTEs interface can be used repeatedly. T&lt;br /&gt;53. You wish to modify an SAP program. What do you need to watch out for?&lt;br /&gt;(T/F)&lt;br /&gt;- If a user has modified an SAP object and SAP delivers a new version of the&lt;br /&gt;object&lt;br /&gt;in a release upgrade of Support Package, the modified object must be adjusted&lt;br /&gt;during the upgrade. T&lt;br /&gt;- You can perform the modification immediately if you set the global setting for&lt;br /&gt;system modifiability to "Modifiable". RZ11(CONFIGURATION) T&lt;br /&gt;- There R/3 System oes not allow modifications by user DDIC or SAP*. F&lt;br /&gt;- You can change application programs delivered by SAP without registration&lt;br /&gt;using the Modification Assistant. F&lt;br /&gt;- Before you can change the program, you must request a key for the object in&lt;br /&gt;the SAP New Web front-end. T&lt;br /&gt;54. You wish to adapt the SAP standard software to the needs of the customer.&lt;br /&gt;Which of the following methods should you preferably use? (T/F)&lt;br /&gt;- Customizing. T&lt;br /&gt;- Modification of SAP objects. F&lt;br /&gt;- Enhancement concept. T&lt;br /&gt;- Customer's own developments. F&lt;br /&gt;55.&lt;br /&gt;Assuming a customer has modified SAP objects in the customer system, which&lt;br /&gt;activities are required at release upgrade or when applying a Support Package?&lt;br /&gt;(T/F)&lt;br /&gt;- No manual operations are necessary. Everything is performed automatically. F&lt;br /&gt;- ABAP Dictionary objects are not handled separately. T&lt;br /&gt;- The modified objects must be adjusted to match the standard version whenever&lt;br /&gt;SAP delivers new versions of the objects. T&lt;br /&gt;- After each upgrade, the new SAP objects is available as an active version. T&lt;br /&gt;- Only ABAP Dictionary tables, data elements, and domain are adjusted during&lt;br /&gt;the upgrade. F&lt;br /&gt;56.&lt;br /&gt;You wish to use a Business Add-In (BAdI) in order to enhance an SAP application.&lt;br /&gt;Which of the following statements are correct?&lt;br /&gt;- A BAdi always has exactly one interface in which the methods of the&lt;br /&gt;enhancement are defined. T&lt;br /&gt;- More than one implementation can exist event for BAdis that are not used on&lt;br /&gt;multiple basis. F&lt;br /&gt;- BAdis can contaion menu enhancements. T&lt;br /&gt;- If a defualt implementation exists for a BAdi. this will always be run. F&lt;br /&gt;- If you have filter-dependent BAdis, there can always be only one active&lt;br /&gt;implementation for a filter value. F&lt;br /&gt;57.&lt;br /&gt;How do you output icons on an ABAP list? (Single selection)&lt;br /&gt;- You must enter the include &lt;icon&gt;in the program and also specify the addition&lt;br /&gt;AS ICON in the WRITE statement. T&lt;br /&gt;- You must enter include &lt;system&gt;in the program. F&lt;br /&gt;- You must specify the addition FORMAT AS ICON is the WRITE statement. F&lt;br /&gt;58.&lt;br /&gt;How do you ensure there will be the correct number of decimal places for&lt;br /&gt;currency amounts on an ABAP list output? (Single selection)&lt;br /&gt;- By maintaining the corresponding customizing table and by using the addition&lt;br /&gt;CURRENCY in the WRITE statement. T&lt;br /&gt;- This take place automatically, provided the checkbox 'CURRENCY output' is&lt;br /&gt;ticked in the program attributes. F&lt;br /&gt;- By saving the currency amounts with decimal place in the database. F&lt;br /&gt;59.&lt;br /&gt;You want to output the string "Name:" in line 20, column 10 on the first page of a&lt;br /&gt;list,&lt;br /&gt;and the string "Address" immediately below it, the page should otherwise remain&lt;br /&gt;blank (no header). Which of the following reports can you use to achieve this?&lt;br /&gt;(T/F)&lt;br /&gt;- REPORT TEST NO STANDARD PAGE HEADING.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write:/ ‘Name:’, /’Address’. F&lt;br /&gt;- REPORT TEST NO STANDARD PAGE HEADING.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write:/ ‘Name:’, /’Address:’ under "Name’. F&lt;br /&gt;- REPORT TEST NO STANDARD PAGE HEADING.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write: / 'Name:'. write /'Address:'.’. F&lt;br /&gt;- REPORT TEST NO STANDARD PAGE HEADING.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write:/ "Name:", /10 "Address:". T&lt;br /&gt;- REPORT TEST.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write:/ "Name:", "Address" under "Name". F&lt;br /&gt;- REPORT TEST.&lt;br /&gt;skip to line 20.&lt;br /&gt;position 10.&lt;br /&gt;write:/ 'Name:', 'Address' under 'Name'. T&lt;br /&gt;60.&lt;br /&gt;A logical database has four nodes altogether. First you have the root node&lt;br /&gt;node_00.&lt;br /&gt;Underneath the root node you have node_01 and then node_02 arranged in such&lt;br /&gt;a way so that they belong to the same hierarchy level.&lt;br /&gt;In addition, node_02 has a hierarchically dependent node, node_21. You have the&lt;br /&gt;following statements in programs: NODES. (Single selection)&lt;br /&gt;- NODE_00, Node_02 Node_21. F&lt;br /&gt;- NODE_00, Node_02, Node_21. T&lt;br /&gt;- NODE_00, Node_02. T&lt;br /&gt;- NODE_00, NODE_01, Node_02. F&lt;br /&gt;61. A logical database has four nodes altogether. First you have the root node&lt;br /&gt;node_00.&lt;br /&gt;Underneath the root node you have node_01 and then node_02 arranged in such&lt;br /&gt;a way so that they belong to the same hierarchy level.&lt;br /&gt;In addition, node_02 has a hierarchically dependent node, node_21. You have&lt;br /&gt;the following statements in programs: NODES. (Single selection)&lt;br /&gt;- The event is executed each time all the dependent data records for a node_00&lt;br /&gt;data record have been delivered into the program. F&lt;br /&gt;- The event is executed each time after the event GET node_02. F&lt;br /&gt;- The event is not executed. T&lt;br /&gt;- The event is executed only if no data record is found for node_00. F&lt;br /&gt;62.&lt;br /&gt;Dose a PAI occur when you switch between tab pages whose titles have function&lt;br /&gt;type P in a tabstrip? (Single selection)&lt;br /&gt;- Yes, if at least one PAI module exists for the sub-screen container. F&lt;br /&gt;- Yes, if at least one required entry field exits on of the tab pages. F&lt;br /&gt;- No. T&lt;br /&gt;- Yes, always. F&lt;br /&gt;63.&lt;br /&gt;Which of the following statements about context menus on screens is correct?&lt;br /&gt;(Single selection)&lt;br /&gt;- All the elements of a screen always have the same context menu. F&lt;br /&gt;- You set context menus using the command set pf-status. F&lt;br /&gt;- You set context menus within a subprogram ON_CTMENU_ &lt;form&gt;. T&lt;br /&gt;- The key combination Shift-F10 on a screen always calls a context menu. F&lt;br /&gt;64.&lt;br /&gt;Which conditions must be fulfilled in a programmed check so that a screen input&lt;br /&gt;field is made ready for input again? (T/F)&lt;br /&gt;- The check module must be called using:&lt;br /&gt;FIELD field_name MODULE check_module. F&lt;br /&gt;- The check module must be called using:&lt;br /&gt;FIELD field_name MODULE check_module MESSAGE Ennn. F&lt;br /&gt;- The moduel must output an E-type message or W-type message. F&lt;br /&gt;- An I-type message must be output. T&lt;br /&gt;65. You want to have the system branch to list processing from within a screen.&lt;br /&gt;Which of the following statements apply here? (Single selection)&lt;br /&gt;- The list buffer must first be read (READ LIST). F&lt;br /&gt;- You have to program the command LEAVE TO LIST-PROCESSING. T&lt;br /&gt;- You have to program the two commands CALL SELECTION-SCREEN &lt;screen&gt;and LEAVE TO LIST-PROCESSING. F&lt;br /&gt;- You must place the command LEAVE TO LIST-PROCESSING at the end of the&lt;br /&gt;PAI of the respective screen. F&lt;br /&gt;66.&lt;br /&gt;Which of the following statements about pushbuttons are correct? Pushbuttons...&lt;br /&gt;- On a screen always have a corresponding function key. F&lt;br /&gt;- In an application toolbar always have a corresponding function key. T&lt;br /&gt;- With function code E cause program termination. F&lt;br /&gt;- In an application toolbar always have a function code. T&lt;br /&gt;67. What effect does the statement SUPPRESS DIALOG have in a PBO module of&lt;br /&gt;a screen? (Single selection)&lt;br /&gt;- The screen is displayed. But no inputs are possible. F&lt;br /&gt;- Processing is continued with the calling screen. F&lt;br /&gt;- The screen in question is not called. F&lt;br /&gt;- Screen display is suppressed. T&lt;br /&gt;- Neither the respective PBO module nor any of the subsequent PBO modules&lt;br /&gt;are processed.F&lt;br /&gt;68.&lt;br /&gt;Which of the following statements about radio buttons is correct? (Single&lt;br /&gt;selection)&lt;br /&gt;- For each screen, the user can choose only one radio button. F&lt;br /&gt;- Clicking a radio button always triggers a PAI. F&lt;br /&gt;- Only the selected radio buttons have the value 1 for PBO in the field SCREENACTIVE.&lt;br /&gt;F&lt;br /&gt;- For each radio button group, the user can choose only one radio button. T&lt;br /&gt;69. Which of the following statements about sub-screens are correct? (T/F)&lt;br /&gt;- You call sub-screens using the screen command CALL SUBSCREEN.T&lt;br /&gt;- You call sub-screens using the ABAP command CALL SUBSCREEN. F&lt;br /&gt;(SCREEN COMMAND)&lt;br /&gt;- The statement LEAVE TO SCREEN is not allowed in sub-screen flow logic. F&lt;br /&gt;- Sub-screens have their own OK code field. F&lt;br /&gt;70.&lt;br /&gt;You have defined a screen with required entries. You want the "CANCEL"&lt;br /&gt;function to work event if all the required entry fields are not filled. How can you&lt;br /&gt;do this? (Single selection)&lt;br /&gt;- The "Cancel" function must have the function code "BACK". F&lt;br /&gt;- There is no way to do this: required entry fields must always be filled first. F&lt;br /&gt;- No special actions are required. F&lt;br /&gt;- You must temporally switch off the required entry for the fields concerned&lt;br /&gt;within the&lt;br /&gt;LOOP AT SCREEN. .... ENDLOOP. F&lt;br /&gt;- The ‘Cancel’ function must be type ‘E’ and be handled in a module with the&lt;br /&gt;addition&lt;br /&gt;AT EXIT-COMMAND. T&lt;br /&gt;71.&lt;br /&gt;Which of the following statements about screens is correct? (Single selection)&lt;br /&gt;- Only full-screens can have a subsequent screen. F&lt;br /&gt;- You can define screens only in programs of type M. F&lt;br /&gt;- On a screen, you can only output fields with Dictionary reference. F&lt;br /&gt;- You assign each screen to exactly one program. T&lt;br /&gt;72.&lt;br /&gt;Where can you set the status and the title for a modal dialog box (popup)?&lt;br /&gt;(Single selection)&lt;br /&gt;- At the event TOP-OF-PAGE. F&lt;br /&gt;- In a PBO module of the corresponding screen. T&lt;br /&gt;- In a PAI module of the corresponding screen. F&lt;br /&gt;- In the attributes of the corresponding screen. F&lt;br /&gt;73.&lt;br /&gt;Which of the following statements about field transport between ABAP and&lt;br /&gt;screen are correct? (T/F)&lt;br /&gt;- Name equivalence is imperative for field transport between ABAP and screen. T&lt;br /&gt;- Field transport from ABAP to the screen generally takes place before the first&lt;br /&gt;PBO module of the screen. F&lt;br /&gt;- Field transport from the screen to ABAP is delayed if you have a FIELD&lt;br /&gt;statement. T&lt;br /&gt;- Dictionary structure on the screen requires a TABLES statement in ABAP. T&lt;br /&gt;74.&lt;br /&gt;You have created a screen with 5 radio buttons. How do you ensure that only one&lt;br /&gt;radio button is selected at a time? (Single selection)&lt;br /&gt;- Combine all the radio buttons into a group. T&lt;br /&gt;- Create a common function code for all the radio buttons. F&lt;br /&gt;- Assign all the radio buttons to the same modification group. F&lt;br /&gt;- Enclose all entire radio button in a frame. F&lt;br /&gt;75.&lt;br /&gt;Under which circumstances is module with the addition ON CHAIN-INPUT&lt;br /&gt;executed? (Single selection)&lt;br /&gt;- When exactly one field within the CHAIN has a value other than its initial value.&lt;br /&gt;F&lt;br /&gt;- When a new entry has been made for at least one field within the CHAIN. F&lt;br /&gt;- When a new entry has been made for all fields in the chain. F&lt;br /&gt;- When the value of at least one field within CHAIN is other than its initial value. T&lt;br /&gt;76.&lt;br /&gt;Which of the following statements in relation to Web Services are correct? (T/F)&lt;br /&gt;- As of Release 6.20, ABAP Web Services can be developed on the SAP Web&lt;br /&gt;Application Server.&lt;br /&gt;- In the ABAP runtime environment, each function module and also each BAPI&lt;br /&gt;can be switched on as a Web service.&lt;br /&gt;- Web Services are based on open and generally accepted standards.&lt;br /&gt;- In NetWeaver04, Web services can be developed both in the ABAP as well as&lt;br /&gt;the Java runtime environment.&lt;br /&gt;77. How does the Web Service Framework support the inclusion of Web services&lt;br /&gt;that have been provided? (T/F)&lt;br /&gt;- Generation of a WSDL description.&lt;br /&gt;- UDDI Brower for searching for suitable Web services.&lt;br /&gt;- Generation of a client proxy on the basis of the WSDL description.&lt;br /&gt;- Configuration of the SOAP runtime on the client side using logical ports.&lt;br /&gt;78. Which components are created by the Web Service Creation Wizard when a&lt;br /&gt;Web service&lt;br /&gt;is defined? (T/F)&lt;br /&gt;- Virtual Interface.&lt;br /&gt;- Client proxy.&lt;br /&gt;- XI Message Interface.&lt;br /&gt;- Web service definition.&lt;br /&gt;- Logical port.&lt;br /&gt;79. What advantages do Shared Objects have compared with import/export To&lt;br /&gt;Shared memory / Buffer? (T/F)&lt;br /&gt;- In Shared Objects areas, groups of object references can be stored.&lt;br /&gt;- Data In shared objects areas is compressed.&lt;br /&gt;- It is possible to access data in Shared Objects areas, without copying.&lt;br /&gt;- In Shared objects areas, more data - in principle - can be stored than in the&lt;br /&gt;shared memory / buffer&lt;br /&gt;80.&lt;br /&gt;How is a Shared Objects area accessed in ABAP? (Single selection)&lt;br /&gt;- With the help of a special database table.&lt;br /&gt;- With the help of a special data type.&lt;br /&gt;- With the help of a special class.&lt;br /&gt;81. What does the transformation between XML and ABAP data structures&lt;br /&gt;involve?&lt;br /&gt;(Single selection)&lt;br /&gt;- Generation of ABAP proxy types from XML schemas.&lt;br /&gt;- Generation of XML schemas from ABAP types.&lt;br /&gt;- Neither generation of XML schemas from ABAP types nor generation of ABAP&lt;br /&gt;proxy types from XML schemas.&lt;br /&gt;82.&lt;br /&gt;In which cases can the ABAP statement CALL TRANSFORMATION be used? (T/F)&lt;br /&gt;- To transform as iXML document object into and ABAP data structure using&lt;br /&gt;XSLT.&lt;br /&gt;- To transform an XML document contained in a string into another XML&lt;br /&gt;document&lt;br /&gt;using and XSLT program.&lt;br /&gt;- To get canonic XML display of an ABAP data structure.&lt;br /&gt;- To transform an XML document contained in an xstring into another XLM&lt;br /&gt;document using an ST program (Simple Transformation).&lt;br /&gt;- To transform and ABAP data structure into an SML document using ST.&lt;br /&gt;&lt;/form&gt;&lt;form&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5917633052251788702-1351743054770634684?l=examen-abap.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://examen-abap.blogspot.com/feeds/1351743054770634684/comments/default' title='Enviar comentarios'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=5917633052251788702&amp;postID=1351743054770634684' title='2 comentarios'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5917633052251788702/posts/default/1351743054770634684'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5917633052251788702/posts/default/1351743054770634684'/><link rel='alternate' type='text/html' href='http://examen-abap.blogspot.com/2007/12/exmen-de-certificacin-abap.html' title='Exámen de Certificación ABAP'/><author><name>Enrique Quispe</name><uri>http://www.blogger.com/profile/07771031718605817110</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry></feed>
