test 4
|
|
Título del Test:
![]() test 4 Descripción: test 30 preguntas |



| Comentarios |
|---|
NO HAY REGISTROS |
|
92. You are creating a new Business Central report. You plan to use triggers and functions to dynamically create a dataset and control the report behavior. You must provide the following implementation: Run when the report is loaded. Run when the data item is iterated for the last time. Skip the rest of the report. You need to select the triggers and functions for the report. Which triggers and functions should you use?. 1. Runs when the report is loaded. 2. Run when the data item is iterated for the last time. 3. Use this function to skip the rest of the report. 93. A company uses Business Central. The company plans to use the AL object model in Business Central to extend the Base Application. You need to extend the objects. Which two objects can you extend? Each correct answer presents a complete solution. (Choose two.). Codeunit. Report. Query. API page. Enum. 90. You create a page with the PageType property set to RoleCenter. You navigate through the different sections of the page. You need to add functionalities to the page. What should you do?. Define actions in the area(reporting) before actions in the area(creation). Add an Activity page to display data in a graphical way. Define the navigation bar in the area(embedding). Integrate Charts to display information in cues. 94. You create a page with the PageType property set to RoleCenter. You navigate through the different sections of the page. You need to add functionalities to the page. What should you do?. Define an action with the plus icon in the area(creation). Create headlines using the Cuegroup control. Define the navigation bar in the area(processing). Integrate Charts to display information in cues. 95. The control department manager requires a brief guide for the Description and Comments fields when employees create a new record so users know what to include in the fields. The guide must disappear as soon as users add a value in the fields. The Subcontract Documents table must be displayed on a new page named Subcontract Document List through an action from the standard Vendor page. The Amount field, included in the Subcontract Document List, must be formatted in bold format when the record is posted (field Posted = true). Which formatting should you use?. field(Amount; Rec.Amount) { Style = Strong; StyleExpr = true; }. field(Posted;Rec.Posted) { Style = None; StyleExpr = Rec.Amount > 0; }. field (Posted;Rec.Posted) { Style = Strong; StyleExpr = Rec.Posted = true; }. field(Amount; Rec.Amount) { Style = Strong; StyleExpr = Rec.Posted = true; }. field(Amount; Rec.Amount ) { Style = None; StyleExpr = Rec.Posted = true; }. 96. You need to configure the Subcontract Docs extension to translate the fields. The extension must be in English - United States (ENU) and Spanish Traditional Sort (ESP) so the application can be used in both languages. The translations must be on the table, not on the page, to avoid repeating them. The control department does not want to use translation files. Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. 1. 2. 3. 97. You develop a table named Contoso Setup and a page. You plan to use No. Series to automatically assign a unique number to data entries. You set up No. Series on the Vendor Nos. field of the Contoso Setup table. You need to apply the No. Series Design Pattern to the trigger OnInsert(). Which four code segments should you use to develop the solution?. 1. 2. 3. 4. 98. You have a column in a report. You receive the following warning from CodeCop: "Field 'Home Page' is marked for removal. Reason: Field length will be increased to 255.. AL(AL0432)" You have the following code: 1 column(CompanyHomePage; CompanyInformation."Home Page") 2 { 3 } For each of the following statements, select Yes if the statement is true, Otherwise, select No. Create a custom Home Page field for the Company information table. Enclose Line 1 within #pragma warning disable AL0432 .. #pragma warning restore AL0432. Disable the AL0432 rule in the ruleset. Remove or comment the column and then put it back after the field length is increased. 99. A company has a test application. A user observes the following error messages when running the test: "Unhandled UI: Message" "Unhandled UI: Confirm" You need to resolve the errors. Which action should you take?. Create a separate test codeunit that has Message Handler and Confirm Handler methods. Create the Message Handler and Confirm Handler methods in the test runner codeunit. Create a separate test runner codeunit that has Message Handler and Confirm Handler methods. Create the Message Handler and Confirm Handler methods in the test codeunit. |




