option
Cuestiones
ayuda
daypo
buscar.php

Test2

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del Test:
Test2

Descripción:
Test 30 preguntas

Fecha de Creación: 2026/02/11

Categoría: Otros

Número Preguntas: 9

Valoración:(0)
COMPARTE EL TEST
Nuevo ComentarioNuevo Comentario
Comentarios
NO HAY REGISTROS
Temario:

31.The serial numbers of the non-conformities and the period in which they can be created must be in a configuration table and its corresponding page to allow them to be modified for the users. You need to create the Install codeunit that is required in the extension used for installing or updating the Housekeeping app. Which data type or declaration should you use?. 1. Data type for information. 2. Start of the declaration of the method or procedure to perform the tasks.

32. The business partner will provide a REST API secured with basic authentication. Credentials to access the API will be shared with Contoso, Ltd. The API for sending subcontracting orders must be called by sending an authenticated POST request to the given endpoint. The API for retrieving the order no. and planned release date of each subcontracting order responds with the following JSON: "status": "OK", "num_results": 110, "results": [ { "order_no": "SB0230034", "customer_name": "Contoso Ltd.", "planned_release_date": "2023-12-13", "updated_date": "2023-10-20" } Each order no. must be retrieved. You need to create the API page according to the requirements. How should you complete the code segment? To answer, select the appropriate options in the answer area. 1. 2.

33. The business partner will provide a REST API secured with basic authentication. Credentials to access the API will be shared with Contoso, Ltd. The API for sending subcontracting orders must be called by sending an authenticated POST request to the given endpoint. The API for retrieving the order no. and planned release date of each subcontracting order responds with the following JSON: "status": "OK", "num_results": 110, "results": [ { "order_no": "SB0230034", "customer_name": "Contoso Ltd.", "planned_release_date": "2023-12-13", "updated_date": "2023-10-20" } Each order no. must be retrieved. You need to write the code to call the subcontractor's REST API. How should you complete the code segment?. 1. RequestHeaders.Add( ). 2.

33. The business partner will provide a REST API secured with basic authentication. Credentials to access the API will be shared with Contoso, Ltd. The API for sending subcontracting orders must be called by sending an authenticated POST request to the given endpoint. The API for retrieving the order no. and planned release date of each subcontracting order responds with the following JSON: "status": "OK", "num_results": 110, "results": [ { "order_no": "SB0230034", "customer_name": "Contoso Ltd.", "planned_release_date": "2023-12-13", "updated_date": "2023-10-20" } Each order no. must be retrieved. You need to write the code to call the subcontractor's REST API. How should you complete the code segment?. 1. httpContent. 2. httpClient.

34. A company is implementing Business Central. In the per-tenant extension, TableA Header and TableA Line are document tables, and TableB Header and TableB Line are document history tables. The company requires that the resulting dataset of query objects contain the following records: All records from TableA Header even if no matching record value exists in the linked TableA Line. Records from TableB Header where a match is found in the linked TableB Line field. You need to configure the linked data item to generate the required dataset. Which SqlJoinType should you use? To answer, move the appropriate SqlJoinTypes to the correct dataset requirements. You may use each SqlJoinType once, more than once, or not at all. Inlcude all records from TableA Header. Include only matched records from TableB Header.

35. You create a Business Central report. You need to insert values on the Request page to be saved for the next time the report is run. What should you do?. Set the TransactionType property to Update. Declare a ‘SaveValues’ variable and assign it to true on the OnOpenPage() trigger. Set the UseRequestPage property to true. Set the SaveValues property to true.

36. You create the following Vendor table and Item table in Business Central. Vendor: | Vendor No. | Vendor Name | Item: | Item No. | Item Description | Vendor No. | You require the following data set to assign vendors to items. (Hay una imagen final que muestra solamente vendedores que han sido asignados a algún producto. You need to create a query to assign the vendors. Which three code blocks should you use to develop the solution?. SqlJoinType = LeftOuterJoin;. DataItemLink = "Vendor No." = Vendor."Vendor No.";. dataitem(Item; Item). SqlJoinType = RightOuterJoin;. DataItemLink = "Vendor No." = Item."Vendor No.";. SqlJoinType = InnerJoin;. SqlJoinType = CrossJoin;. dataitem(Vendor; Vendor).

37. ou are developing an XMLport to export data from the parent Item table and a related child "Item Unit of Measure" table. The XMLport configuration must provide the following: Link the child table to its parent. Display a confirmation message after the XMLport runs. You need to generate the XMLport. What should you do? To answer, move the appropriate triggers to the correct requirements. You may use each trigger once, more than once, or not at all. Trigger to link the child table to its parent. Trigger to display a confirmation message after the XmlPort runs.

38. You have a per tenant extension that contains the following code. interface "IDiscount Calculation" 11 { 12 procedure GetLine(var Line: Variant) 13 procedure GetDiscount() : Decimal 14 } 15 codeunit 50100 "Discount Mgmt." implements "IDiscount Calculation" 16 { 17 procedure GetLine(var VariantLine: Variant) 18 begin 19 end; 20 procedure GetDiscount() DiscountAmount : Decimal 21 begin 22 end; 23 procedure DiscountIsValid(DocumentDate: Date): Boolean 24 begin 25 end; 26 } For each of the following statements, select Yes if the statement is true. Otherwise, select No. Codeunit "Discount Mgmt." compiles successfully. VariantLine in line 17 must be changed to Line and the DiscountAmount removed for the codeunit to compile. The DiscountIsValid method must be defined in the interface for the code to compile.

Denunciar Test