option
Cuestiones
ayuda
daypo
buscar.php
TEST BORRADO, QUIZÁS LE INTERESE: Test practice test 4: sap_c_fiordev_22
COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Test practice test 4: sap_c_fiordev_22

Descripción:
Time per question: 2.3 min

Autor:
AVATAR
Daniel
OTROS TESTS DEL AUTOR

Fecha de Creación:
07/02/2023

Categoría: Otros

Número Preguntas: 50
COMPARTE EL TEST
COMENTARNuevo Comentario
No hay ningún comentario sobre este test.
Temario:
Which of the following are the main states of a file in GIT? (3 correct) Modified Chaged Committed Released.
To add a header facet, you should use @UI.HeaderFacet annotation and put it before the dene statement of your CDS view. FALSE TRUE.
What message types are known to SAPUI5? Control message Log message Server message UI message.
If your backend system is based on ABAP 7.50, which are available ways of using facets? (2 correct) It is not possible to use facets in ABAP 7.50. Declare both: field group and facet as local annotation using WebIDE. Declare both: eld groups and facets in CDS view. Declare field group in CDS view, declare facets as local annotation using WebIDE.
What is the name of the aggregation of the sap.m.App control, or more precisely the name of the sap.m.NavContainer control, in which UI controls are aggregated? masterPages fullPages detailsPages pages.
What are the key aspects of SAP's UX strategy? (3 correct) Design strategy SAP screen personas New/Renew/Enablement Architecture and Technology New/Renew/Empower.
Which of the following are features of the SAPUI5 SDK? Note: There are 2 correct answers to this question. Full translation support Feature-rich UI controls for handling complex UI patterns Responsiveness across browsers on non-mobile devices only Interface for Web Dynpro.
Which function must be called inside a control Tenderer to add the control ID to the DOM tree and support eventing? writeControlData writelcon writeClasses write.
Which of the following SAP Fiori element based UIs are currently available? (3 correct) Wizard Form Master-Detail Object Page Overview Pages List Report.
What is the use of the annotation @UI.hidden? Not expose these fields as a property of OData service. Prevent a column selected by user when customizing table settings. Prevent a column from display on the UI. Create an invisible column to save the value in a hidden control of HTML.
Which model supports deep inserts? XML model Resource model JSON model OData model.
In which state are the files in GIT when a remote repository is cloned? (3 correct) Modified and tracked Tracked and unmodified Staged and modified Tracked and staged.
What class in the SAPUI5 API supports back-end mock up and is recommended by SAP? sap.m.MockServer sap.ui.core.util.MockServer sap.ui.app.MockServer sap.ui.core.MockServer.
What method is called inside the library.js file? sap.ui.getCore().runLibrary sap.ui.getCore().initLibrary sap.ui.getCore().registerLibrary sap.ui.getCore().loadLibrary.
How can you hide some columns when the list report is accessed by a mobile phone? Put all fields, which are not important at the end of the report, when screen gets smaller, the fields will hide automatically. Set UI.lineItem.importance for those fields as #LOW or @Medium. Add @UI.hidden for fields. not import. Prepare a different version of @UI.lineItem and assign them as different qualier.
What are the two aggregations provided by sap.m.SplitApp control to add page implementations? (2 correct) infoPages masterPages detailPages mainPages detail.
What type of concurrency control is offered by OData? Optimistic concurrency control Exclusive concurrency control No concurrency control Pessimistic concurrency control.
Which UI annotation is used to declare a field for the smart filter template? UI.searchField UI.selectionField UI.finderField UI.filterField.
Which control can you use to create responsive table-free layouts? sap.ui.layout.Grid sap.ui.layout.ResponsiveFlowLayout sap.ui.layout.HorizontalLayout sap.ui.layout.VerticalLayout.
How is the extension type called to hide UI controls? View modification Control modification Element modification Control replacement.
What parameter is needed when instantiating a MockServer object? rootUri url rootUrl uri.
Which of the following should you avoid with regard to golden rule "Every SAP Fiori app must run as a web app"? (4 correct) Absolute URLs generated in front or back-end Hard dependencies between apps Using SAPUI5 Calling UI2 services directly instead of using APIs Use of platform-specific functionality without availability check.
Since when is the Split-Screen layout deprecated? 1.48 1.42 1.5 1.44 1.46.
How does the OData Model handle XSRF tokens? The OData Model does not handle XSRF-tokens. The developer must implement token handling. The OData Model fetches the token for each request and sends the token automatically with each request. The OData Model fetches the token when reading the metadata and sends the token automatically in each write request header.
When do you need to work with local data? When working with static data To perform a quick test without creating live entities on the back-end server When performance is poor in the productive system. When you want to reduce the complexity of your application.
You need the backend server to sort and filter the data used in your customer's app. Which SAPUl5-supported data model must you use? JSONModel OData Model ResourceModel XMLModel.
Which aggregation is used to overwrite the standard behavior of a SmartField control? configure overwrite extension.
What are the tasks of the controller in the Model-View-Controller implementation? (2 correct) Modifies the model Holds the business data Updates using data binding Contains the UI implementation Modifies the view via API.
Which file contains the initialization code for the UI library? loadlibrary.js lib.dll library.js library.load.js .
Your customer wants to enable the SAP Fiori app to be accessed in multiple languages . Which of the following activities do you perform?(3 CA) Create a resource file containing key/value pairs. Encode the special characters in HTML in the resources file. Create a view file and a controller file for each language. Create a resource file for each language. Create a resource file with a .props extension.
What activities are required when you implement an XSRF token? Note: There are 2 correct answers to this question Generate a token on each read and write request Retrieve the token and send it with each write request Include the token in the HTTP request body of each write request Execute the Refresh method for an expired token.
Which of the following can you use to extend an SAP Fiori Elements application? Note: There are 2 correct answers to this question. Adaption extensions CDS extension App extension ABAP extension.
A business user is unable to find an application on the SAP Fiori Launchpad or on the App Finder. Which of the following options could explain why the tile is unavailable? Note:There are 3 correct answers to this question. The end user is missing the required group containing the tile The OData service authorization is missing The user does not have the proper PFCG role assigned to see the application or tile. The target mapping for the tile is missing in the catalog. The catalogs assigned to the user do not contain the relevant application or tile.
Which info will be used for creating a destination in SAP Cloud Platform for Fiori Elements development? External name in SAP Cloud Connector. Internal address of SAP Backend Server. Virtual name in SAP Cloud Connector. Internal name in SAP Cloud Connector.
What can you connect with the SAP Cloud Connector? SAP BTP services to on-premise systems in a customer's network SAP Business Application Studio to a Cordova development environment SAP BTP services to SAP Business Application Studio SAP API Business Hub to client devices.
To what namespace is the ExtensionPoint class assigned? sap.m sap.ui.extension sap.ui.core.extension sap.ui.core.
Your customer asks you about the advantages of the Model View Controller (MVC) design pattern used in SAPUl5. Which of the following answers do you provide? Note: There are 2 correct answers to this question. Allows the project team to decouple UI development from business logic development MVC is easy to implement for the project team members and supports quick coding The data models can be reused by several different applications. MVC artifacts can be transported and debugged separately.
Which of the following best describes a commit? A commit in GIT is a local operation With every commit, a new local repository is created With every commit, GIT takes a snapshot of the current state of the underlying files With every commit, GIT create a new branch.
What is the namespace in which the smart controls are bundled? sap.m sap.ui.comp sap.ui.smart.
Which of the following statements are true with regard to implementing your own renderer? Implement the renderer using AMD syntax Implement a renderer class, derived from sap.ui.core.Renderer, in a separate file Implement the render function inside the control Assign a reference to the renderer property of the UI control.
An administrator wants to configure the SAP Fiori Launchpad for all users in one client for your S/4HANA 1809 landscape. Which of the following options represents the best way for the administrator to do this? Use the configuration file to define URL parameters tenable/disable features when starting the SAP Fiori Launchpad Define settings using transaction/U12/FLP_SYS_CONF. Define settings using transaction /Ul2/FLP_CUS_CONF. Create a target mapping in a catalog and assign the catalog tall users using roles.
What happens if the text is not available in the customized bundle of your extension? An exception is raised SAP UI5 tries to find the text in the resource bundle of the standard application. No text is displayed The key will display in the application in capital letters.
You need to securely connect the SAP Web IDE to an on-premise system How does the SAP Cloud Connector help do this? Note: There are 2 correct answers to this question. It secures an SSL tunnel between the SAP Cloud and the on-premise system It initiates a cloud-based reverse-invoke process It creates connectivity by a reverse-invoke process on the on-premise system It supports custom destination API configuration and certificate inspection.
In what configuration area of the manifest.json file can you activate automatic message creation? sap.app sap.ui sap.ui5.
Which ABAP transactions can be used to analyze the intents used in target mappings? Choose the 2 correct answers. /UI2/FSAC /UI2/FLIA /UI2/FLC /UI2/FLP.
Which of the following statements are true with respect to QUnit? (3 correct) JavaScript code Supports asynchronous tests out-of -the-box Supports only synchronous testing out of the box. QUnit is a JavaScript unit and integration test framework Is capable of testing any generic.
Which modes are provided by the sap.m.SplitAppMode enumeration? (3 correct) ShowHideMode StretchCompresssMode HideShowMode PopoverMode ShrinkCozyMode.
Which function do you call on the ODataModel to trigger a deep insert? create insertDeep createDeep updateDeep.
What is meant by the phrase “SAPUI5 supports modification free enhancements”? The developer must create a copy of the application that should be enhanced and the enhancement is done in the copy. SAP provides a service in the cloud to generate an enhanced application using aspect-oriented programming. The delivered standard application remains unchanged and hence the extension is considered to be modification free.
Which of the following describe benefits of SAP Fiori elements? (2 correct) (Review this) The autoRespondAfter parameter and the full qualified path to the local metadata file The full qualified path to the model and the URI for the service document. The full qualified path to the local metadata file and the folder where the model data are stored locally.
Denunciar Test