New Test
|
|
Title of test:
![]() New Test Description: New Test |



| New Comment |
|---|
NO RECORDS |
|
After you created a database table i the RESTful Application Programming model, what do you create next?. A metadata extension. A projection view. A service definition. A data model view. In RESTful Application Programming, a business object contains which parts? Note: There are 2 correct answers to this question. Behavior definition. Authentication rules. Process definition. CDS view. Which of the following are reasons that SAP recommends developing Core Data Services view entities as opposed to classic Core Data Services DDIC-based views? Note: There are 2 correct answers to this question. simplified syntax check. simpler and stricter syntax. Elimination of the need for a database view. Automated client handling. When you work with a test class you can set up some prerequisites before the actual testing. In which sequence will the following fixtures be called by the test environment? setup() class_teardown() teardown() class_setup(). Which of the following are valid ABAP SQL type conversions? Note: There are 3 correct answers to this question. CAST( field_fs as DEC( 15,2 ) ) AS f_dec_15_2. CAST( 29 as INT8 ) AS f_int8. CAST( field_f2 as N( 8 ) ) AS f_n8. CAST( 34 as I ) AS f_i34. CAST( 'field_f1' as CHAR( 8 ) ) AS f_char8. Which RESTful Application Programming object can be used to organize the display of fields in an app?. Projection view. Data model view. Metadata extension. Service definition. Given the following code, what are valid statements? Note: There are 2 correct answers to this question. The pragma is not checked by the syntax checker. ##NEEDED is checked by the syntax checker. The pseudo-comment is checked by the syntax checker. #EC_NEEDED is not checked by the syntax checker. What describes multi-column internal tables?. They use one incomplete data type. They must contain nested components. They are based on a structured row type. They use one complete data type. In class ZCL_CLASS_A, you use the statement DATA var TYPE ***, What may stand in place of ***? Note: There are 2 correct answers to this question. The name of a data element from the ABAP Dictionary. The name of a type defined privately in class ZCL_CLASS_A. The name of a type defined privately in another class. The name of a domain from the ABAP Dictionary. When you join two database tables, which of the following rules applies to the database fields you use in the join?. They must be compared with an ON condition. They must have the same name, e.g col1 = col1. They must always have an alias name. They must be a the same position in their table, for example left_table-col1 = right_table-col1. What is the purpose of a foreign key relationship between two tables in the ABAP Dictionary?. To create a corresponding foreign key relationship in the database. To document the relationship between the two tables. To ensure the integrity of data in the corresponding database tables. What can you do in SAP S/4HANA Cloud, public edition? Note: There are 2 correct answers to this question. Use ABAP Development Tools in Eclipse (ADT). Use SAP-released extension points. Use Web Dynpros. Modify SAP objects. Which of the following are reasons to use the side-by-side extensibility pattern? Note: There are 3 correct answers to this question. An extension uses its own data model with occasional consumption of data in SAP S/4HANA. An extension enhances an existing SAP Fiori Ul. An extension runs in the same logical unit of work (LUW) as an SAP S/4HANA application. An extension implements reactive (event based) process extensions. An extension is managed independently from SAP S/4HANA. You want to document a global class with ABAP Doc. What do you need to consider? Note: There are 3 correct answers to this question. The documentation can be translated. The documentation can contain links to other repository object's documentation. The documentation may contain tags like <strong> </strong>. The documentation has to be positioned directly after the declarative statement. The documentation starts with "l. Which of the following statements are correct? Note: There are 2 correct answers to this question. The REDUCE expression creates a loop over source_itab. This REDUCE expression may produce a result of multiple rows. Row is a predefined name and cannot be changed. Components of h_structure_variable will be copied to same-named components of structure_variable. How can you execute test classes? Note: There are 3 correct answers to this question. As a mass test when releasing a transport request with the ABAP Transport Organizer. Interactively during the release of transport request. Interactively by calling function "Run as a unit test" from within the tested object. Interactively by calling function "Run as a unit test" from within the test class. As a mass test when executing an ABAP Test Cockpit (ATC) check variant. You have the following CDS definition: Which of the following ON conditions must you insert in place of "222">. ONZ_Sourcel.carrier_id = Z_Source2.carrier_id. ON Sprojection Carrier =_Source2.carrier. ON $projection carrier_id = Z_Source2.carrier_id. ON Sprojection.Carrier =_Source2.carrier_id. Given the following code excerpt that defines an SAP HANA database table: Which field is defined incorrectly?. field3. field2. field4. field1. Given the following code which defines an SAP HANA database table in SAP S/4HANA Cloud, public edition: You are a consultant and the client wants you to extend this SAP database table with a new field called “zz_countrycode” on line #14. Which of the following is the correct response?. The database table cannot be extended since it has not been extensibility enabled by SAP. The database table can be extended whether extensibility enabled or not it is assigned to a software component of type “Standiard ABAP”. The database table can be extended whether extensibility enabled or not if it is assigned to a software component of type “ABAP Cloud”. The database table can be extended once it has been extensibility enabled by the customer. Given the following ABAP code, which exception will be raised on execution? CONSTANTS ¢_char TYPE c LENGTH 1 VALUE 'X'. cx_sy_itab_line_not_found. cx_sy_zerodivide. cx_sy_conversion_no_number. Given this code, what are valid statements? Note: There are 3 correct answers to this question. go_if1 may call method m1 with go_if1->m1( ..). go_if1 may call method m2 with go_if->m2( ...). go_cl1 may call method m1 with go_cl1->if1-m1(..). Instead of go_cl1 = NEW #( ... ) you could use go_ifl = NEW cl1(..). Instead of go_cl1 = NEW #( .. ) you could use go_if1 = NEW #( ..). Given the following ABAP SQL statement excerpt from an ABAP program: Based on this information, which of the following general settings should you set for the spfli database table? Note: There are 2 correct answers to this question. “Storage Type"to “Column Store”. “Load Unit" to “Column Loadable™. “Load Unit” to “Page Loadable”. “Storage Type" to “Row Store”. Which of the following custom code use cases falls under Tier 1 extensibility guidelines?. Implement a user or customer exits, for example SAPMVA45A. Create a custom field on a DB table or CDS view via a released extension include. Apply an SAP note with manual corrections, for example a DDIC object from SAP Basis. Create a wrapper class around SAP objects that have not been released yet. Which of the following rules apply for dividing with ABAP SQL? Note: There are 3 correct answers to this question. The division operator "/ accepts floating point input. SELECT FROM TABLE dbtab1 FIELDS f1, 2 / 3 ... Numeric function division( nominator, denominator, decimal places ) accepts floating point input. SELECT FROM TABLE dbtab1 FIELDS f1, division( f2, f3, 2 ) ... Numeric function division( nominator, denominator, decimal places ) accepts decimal input. SELECT FROM TABLE dbtab1 FIELDS 1, division( f2, 3,2 ) ... The division operator "/" accepts decimal input. SELECT FROM TABLE dbtab1 FIELDS f1, f2 / f3 ... Numeric function div( nominator, denominator ) expects only integer input. SELECT FROM TABLE dbtab1 FIELDS f1, div( f2, 3 ) ... Given the following Core Data Service View Entity Data Definition, when you attempt to activate the definition, what will be the response?. Activation error because the field names of the union do not match. Activation error because the key fields of the union do not match. Activation error because the field types of the union do not match. Activation successful. Which of the following Core Data Services built-in functions returns a result of type INT4? Note: There are 2 correct answers to this question. dats_add_months. dats_add_days. dats_is_valid. dats_days_between. Which of the following integration frameworks have been released for ABAP cloud development? Note: There are 3 correct answers to this question. Business events. OData services. Business Add-ins (BAdls). CDS Views. SOAP consumption. Which function call returns 0?. find( val = 'fIND FOUND FOUND' sub = 'F' ). find( val = 'find Found FOUND' sub = 'F' occ = -2 ). find( val = 'find FOUND Found' sub 'F' occ = -2 CASE = abap_false ). find( val = 'FIND Found found' sub = 'F' occ = -2 CASE = abap_true ). When you create an exception class, what does SAP recommend you do? Note: There are 3 correct answers to this question. Define corresponding public attributes, if you want to pass context-specific values to placeholders of a message. Inherit from cx_static_check, if you want a warning at design time that the exception can never be raised. Implement interface if_t100_message, if you want to reuse messages from a message class. Inherit from cx_no_check, if you want to reuse messages from a system exception class. Inherit from cx_static_check, if you want a warning at design time that the exception will not be caught. Constructors have which of the following properties? Note: There are 2 correct answers to this question. The constructor can have returning parameters. The constructor must be the first method called by the client. The constructor can have importing parameters. The constructor is automatically called during instantiation. Which of the following pre-defined ABAP data types is a complete data type?. N. P. D. C. How do you make class sub1 a subclass of class super1?. In sub1 use clause "INHERITING FROM super1” in the DEFINITION part. In sub1 use clause "INHERITING FROM super1” in the IMPLEMENTATION part. In super1 use clause "sub1 REDEFINITION" in the IMPLEMENTATION part. In super1 use clause "sub1 REDEFINITION" in the DEFINITION part. What are some features of the current ABAP programming language? Note: There are 2 correct answers to this question. It has built-in database access. A data object’s type can change at runtime. Keywords are case-sensitive. The code is expression-based. What RESTful Application Programming object contains only the fields required for a particular app?. Projection view. Database view. Data model view. Metadata extension. Which of the following are rules that extensions in SAP S/4HANA Cloud, public edition must adhere to? Note: There are 3 correct answers to this question. Use cloud-enabled and released technologies. Use tier 2 wrappers to enable access to non-released SAP APIs. Extend SAP objects through predefined extension points. Modify SAP objects in exceptional cases only. Use released remote or local SAP APIs. Which statement can you use to change the contents of a row of data in an internal table?. INSERT. MODIFY. APPEND. UPDATE. Which of the following actions cause an indirect change to a database table requiring a table conversion? Note: There are 2 correct answers to this question. Deleting a field from a structure that is included in the table definition. Shortening the length of a domain used in a data element that is used in the table definition. Changing the field labels of a data element that is used in the table definition. Renaming a field in a structure that is included in the table definition. You want to join two database tables, T_CARRIER, and T_CONNECTIONS, to retrieve all carriers, whether they have corresponding connections or not. Which statements would achieve this? Note: There are 2 correct answers to this question. SELECT FROM t_carrier LEFT OUTER JOIN t_connections ON…. SELECT FROM t_carrier LEFT INNER JOIN t_connections ON …. SELECT FROM t_carrier INNER JOIN t_connections ON …. SELECT FROM t_connections RIGHT OUTER JOIN t_carrier ON …. You want to extract date information of a flight date (f_info) and format it like yyyy-dd-mm using the following code: For the extract_* functions to work, what can be the data dictionary types of f_info? Note: There are 3 correct answers to this question. TIMS. TIMESTAMP. UTCLONG. TIMN. DATS. To which of the following rules must extensions in SAP S/4HANA, public cloud edition adhere? Note: There are 2 correct answers to this question. Use released APIs. Use C1/ CD pipelines. Build at the UX layer. Use predefined extension points. |





