option
Questions
ayuda
daypo
search.php

Random Test

COMMENTS STATISTICS RECORDS
TAKE THE TEST
Title of test:
Random Test

Description:
My test

Creation Date: 2022/12/16

Category: Others

Number of questions: 36

Rating:(0)
Share the Test:
Nuevo ComentarioNuevo Comentario
New Comment
NO RECORDS
Content:

You want to establish an automatic check during the release of change requests. If the check returns any errors, the system should prevent the request from being released. Which analysis tool can you configure for this? Please choose the correct answer. ABAP Test Cockpit (ATC). Code Inspector (SCI). Extended Check (SLIN). Performance Tuning Worklist (SWLT).

Where do you distinguish between OData V2 or OData V4? Please choose the correct answer. Projection View. Service Binding. Behavior Projection. Service Definition.

You develop an SAP Fiori app in a specific solution area. Where do you define tiles and target mappings for the app? Please choose the correct answer. In a Technical Catalog. In a Business Role. In a Business Catalog Group. In a Business Catalog.

Which CDS annotation do you use to add a section to an ObjectPage? Please choose the correct answer. @UI.facet. @UI.range. @UI.segment. @UI.area.

For performance optimization, you want to combine the results of ABAP Test Cockpit and the SQL Monitor runtime data. Which tool do you use for this? Please choose the correct answer. SQL Performance Tuning Worklist (SWLT). Runtime Check Monitor: Data Display (SRTCMD). SQL Monitor: Display Data (SQLMD). Runtime Check Monitor (SRTCM).

You develop a transactional application with the ABAP RESTful Application Programming Model (RAP).Not all field names in the data model view are identical to the field names in the database table. Where do you define the field name mapping? Please choose the correct answer. In the Behavior Projection. In the field mapping view. In the Behavior Definition. In the Behavior Implementation. You want to replace statements in a program with expressions.

You want to create a new CDS view VIEW1 that reads from CDS view VIEW2. VIEW2 has 2 input parameters, par1 and par2, with data type abap.char(10). Which of the following is the correct way to supply the input parameters? Please choose the correct answer. select from VIEW2( par1 = IText1I, par2 = IText2I ). select from VIEW2( par1: IText1I par2: IText2I ). select from VIEW2( par1: IText1I, par2: IText2I ). select from VIEW2( par1= IText1I par2= IText2I ).

You are writing an ABAP Managed Database Procedure that contains a SELECT statement. How does client handling work? Please choose the correct answer. Use sy-mandt. Use session_context( ICLIENTI ). Use $session.client. Client handling is automatic.

You implement the behavior of a CDS-based BOPF-Object and want to issue a message. Which is the correct sequence of the necessary implementation steps? Please choose the correct answer. Call a static method of class /bobf/cl_frw_message_factory. Add a message to the message container. Make sure parameter eo_message is not empty. Make sure parameter eo_message is not empty. Add a message to the message container. Call a static method of class /bobf/cl_frw_message_factory. Add a message to the message container. Make sure parameter eo_message is not empty. Call a static method of class /bobf/cl_frw_message_factory. Make sure parameter eo_message is not empty. Call a static method of class /bobf/cl_frw_message_factory. Add a message to the message container.

You have written the following code: START-OF-SELECTION. LOOP AT itab INTO DATA(line). * ENDLOOP. The system creates a variable called Line. When is it created and when can you address it? Please choose the correct answer. It is created when the LOOP statement is processed. You can access it only within the loop. It is created at the beginning of the program. You can access it any time after the declaration. It is created when the LOOP statement is processed. You can access it any time after the declaration. It is created at the beginning of the program. You can access it only within the loop.

You want to use the extensibility app, Custom Fields and Logic, to define custom fields for an SAP Fiori app. Which of the following conditions is a prerequisite for this activity? Please choose the correct answer. Custom fields can only be created for SAP Fiori apps that have been enabled by SAP for this type of extension. You must release the SAP Fiori app for extensibility via transaction Setup Adaptation Transport Organizer for Key User Tools (S_ATO_SETUP). You must release the SAP Fiori app for extensibility using the Enable Fields for Use transaction in the Custom Fields and Logic (SCFD_EUI) app. There is no specific requirement. Custom fields can basically be created for any SAP Fiori app.

What can you use as data source for an SAP Fiori App Launcher - Dynamic? Please choose the correct answer. Target mapping. OData service. SAPUI5 service. Source mapping.

You develop an OData V2 service in SAP Gateway. What is listed in the service document? Please choose the correct answer. Association Sets. Entity Sets. Entity Types. Associations.

Which of the following do you use as a separator between a table and a field name in a CDS view definition? Please choose the correct answer. Tilde (~). Pointer (->). Minus (-). Period (.).

In a central hub deployment, which protocol is used to communicate between front-end and back-end server? Please choose the correct answer. InA. OData. RFC. HTTP.

You implement the behavior of a CDS-based BOPF Business Object. For which of the following tasks can you reuse the implementation from the BOPF public library? Please choose the correct answer. Check for existing foreign keys. Auto-fill a Last Changed By field. Auto-fill semantic key fields. Check for valid dates in input fields.

You implement a SELECT statement in ABAP. When do you use the key word FIELDS? Please choose the correct answer. When the position of the fields list is after the UNION clause. When the position of the fields list is after the FROM clause. When the position of the fields list is after the GROUP BY clause. When the position of the fields list is after the ORDER BY clause.

The root-node of a CDS-based business object is based on CDS View ZMY_VIEW. The persistent data is stored in the database table ZMY_TABLE. At least one key field of ZMY_TABLE has a different name in CDS View ZMY_VIEW. Which kind of repository object is needed to map the fields of ZMY_VIEW to the fields of ZMY_TABLE? Please choose the correct answer. SQL View. Database View. Structure Type. Global Class.

You create a project in the Custom Code Migration app to analyze the readiness of custom code for SAP S/4HANA. How does the app supply the check results? Please choose the correct answer. It executes a check run in a remote system. It reads the check result from the local system. It reads a check result from a remote system. It executes a check run in the local system.

Which of the following do you use as a separator between a table and a field name in Open SQL? Please choose the correct answer. Pointer (->). Tilde (~). Minus (-). Period (.).

In a Custom Business Object you want to implement a determination for a node with the ID SALESORDER. What kind of parameter is the SALESORDER parameter? Please choose the correct answer. Importing. Changing. Returning. Exporting.

You edit a behavior implementation class of a draft-enabled BOPF Business Object. You need to distinguish between a new draft instance and an edit draft instance. Which property of the node instance do you evaluate? Please choose the correct answer. ActiveUUID. IsActiveEntity. DraftEntityOperationCode. HasActiveEntity.

You want to add a validation to a Custom Business Object. Which pattern do you choose for your custom logic? Please choose the correct answer. Before Modification. After Modification. Before Save. After Save.

You use remote client proxy in ABAP. You create an Exception Class for errors related to proxy consumption. Which of the following do you use as a superclass? Please choose the correct answer. CX_WEB_MESSAGE_ERROR. CX_RAP_QUERY_PROVIDER. CX_HTTP_DEST_PROVIDER_ERROR. CX_UUID_ERROR.

Which of the following CDS view definitions is syntactically correct? Please choose the correct answer. @AbapCatalog.sqlViewName: IS4D430_CARRIERI . DEFINE VIEW S4D430_Carrier AS SELECT. carrid, carrname, currcode, url. FROM scarr. @AbapCatalog.sqlViewName: IS4D430_CARRI. DEFINE VIEW S4D430_Carrier AS SELECT. FROM scar. FIELDS carrid, carrname, currcode, url. @AbapCatalog.sqlViewName: IS4D430_CARRI. DEFINE VIEW S4D430_Carrier AS SELECT . FROM scar. {carrid, carrname, currcode, url}. @AbapCatalog.sqlViewName: IS4D430_CARRI. DEFINE VIEW S4D430_Carrier AS SELECT. FROM scarr. { carrid carrname currcode url }.

Where does the SAP system organize the SAP Gateway services? Please choose the correct answer. Internet Transaction Server (ITS). Internet Communication Framework (ICF). Internet Graphics Service (IGS). Internet Communication Manager (ICM).

You want to search for custom code that needs to be adjusted. Which of the following tools can you use? Please choose the correct answer. ABAP Call Monitor (SCMON). Code Inspector (SCI). SQL Monitor (SQLM). Usage Data (SUSG).

In your system landscape, there is a development system DEV and a central check system CHK. Which of the following describes the developer scenario of remote checks with ABAP Test Cockpit (ATC)? Please choose the correct answer. A developer logs on to system CHK and invokes a check in system DEV. A developer logs on to system CHK and checks objects from system DEV. A developer logs on to system DEV and invokes a check in system CHK. A developer logs on to system DEV and checks objects from system CHK.

In your ABAP program, you have a loop over internal table T1. Inside the loop, you use the contents of T1 to fill another internal table T2: LOOP AT t1 INTO wa1. MOVE-CORRESPONDING wa1 TO wa2. APPEND wa2 TO T2. ENDLOOP. Which expressions could you use to replace the loop? Please choose the correct answer. CONF. REF. REDUCE. VALUE.

Which expression can you use in Open SQL release 7.50? Please choose the correct answer. CASE. NEW. CONV. COND.

Which OData option do you use to access the data model of the service? Please choose the correct answer. $select. $expand. $format. $metadata.

You want to define a CDS-based BOPF Business Object that consists of a root node (ZI_DocumentTP) and a child node (ZI_ItemTP). Which annotation is mandatory in the data definition of CDS view ZI_ItemTP? Please choose the correct answer. @ObjectModel.writeActivePersistence: I...I. @ObjectModel.transactionalProcessingEnabled: true. @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]. @ObjectModel.compositionRoot: false.

The Entity Manipulation Language (EML) is an extension of which of the following? Please choose the correct answer. The ABAP Programming Language. The Structured Query Language. The Service Definition Language. The Behavior Definition Language.

You want to adjust validations of a RAP Business Object. You open the related Behavior Pool. On which tab do you find the method implementations? Please choose the correct answer. Class-relevant Local Type. Global Class. Local Types. Test Classes.

You use the following expression to address the internal table gt_flights: gs_flight = gt_flights[ carrid = IXXI connid = I9999I]. There is NO table entry with the specified key. What is the result of the statement? Please choose the correct answer. gs_flight is initialized. The system triggers an exception. gs_flight retains its previous contents. The system triggers an exception. gs_flight retains its previous contents. The system sets sy-subrc to 4. gs_flight is initialized. The systemsetssy-subrc to 4.

You implement the Behavior of a CDS-based BOPF Business Object. You call method update( ) of the BOPF data modifier to update instance data of node ZMY_NODE. How do you type the actual parameter of import parameter IS_DATA? Please choose the correct answer. TYPE zt_my_node. TYPE zs_my_node. TYPE REF TO zs_my_node. TYPE REF to zt_my_node.

Report abuse