Free MB-820 Exam Braindumps (page: 1)

Page 1 of 15
View Related Case Study

HOTSPOT (Drag and Drop is not supported)
You need to download a stored picture from the Room Incident page. How should you complete the code segment? To answer, select the appropriate options in the answer area.
Note: Each correct selection is worth one point.



  1. See Explanation section for answer.

Answer(s): A

Explanation:



var
TempBlob: Codeunit "Temp Blob";

IncidentOutStream: OutStream;
IncidentInStream: InStream;
ImageFilter, FileName: Text;
begin
// Initialize the TempBlob and streams
TempBlob.CreateOutStream(IncidentOutStream);
Rec.Image.ExportStream(IncidentOutStream); // 'Rec' refers to the current Room Incident record TempBlob.CreateInStream(IncidentInStream);

// Set the filters and filename for the image
ImageFilter := 'Image Files (*.bmp,*.jpg,*.jpeg,*.gif)|*.bmp;*.jpg;*.jpeg;*.gif'; FileName := 'Customer Picture';

// Prompt the user to download the image if not DownloadFromStream(IncidentInStream, '', 'Download Incident Picture', '', ImageFilter, FileName) then
Error('Unable to download the image.');
end;



View Related Case Study

HOTSPOT (Drag and Drop is not supported)
You need to create the codeunit to read the POS terminal APIs. How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE; Each correct selection is worth one point.

  1. See Explanation section for answer.

Answer(s): A

Explanation:



codeunit 52102 "POS API Management"
{
Access = Public;
Permissions = TableData "POS Information" = rwdx;

trigger OnRun()
begin readAPI();
end;

procedure readAPI()

begin
// Your code here to read from the POS API
end;
}



View Related Case Study

HOTSPOT (Drag and Drop is not supported)
You need to define the properties of the comments field of the Non-conformity page. How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE; Each correct selection is worth one point.

  1. See Explanation section for answer.

Answer(s): A

Explanation:





View Related Case Study

You need to define the data types for the fields of the N on-conformity table.

Which two data types should you use? Each correct answer presents part of the solution.
Note: Each correct selection is worth one point.

  1. Integer for the N on-conformity Number field
  2. Date Time for the Non-Conformity Date field
  3. Char for the Non-Conformity Number field
  4. Date for the Non-Conformity Date field
  5. Code for the Non-Conformity Number field

Answer(s): D,E

Explanation:

In Business Central, fields in tables are assigned specific data types that determine the kind of data they can store. For the Non-conformity table mentioned in the case study, the following data types should be used:
Date for the Non-Conformity Date field: This is because the Non-conformity Date field is required to store only the date when the non-conformity was recorded. The Date data type is appropriate for storing dates without times.
Code for the Non-Conformity Number field: The Non-conformity Number field is described to use alphanumeric values with a format that includes "NC" and the year, like "NC24-001". In Business Central, the Code data type is used for fields that store alphanumeric keys. It is a text field with a limited length, which makes it suitable for number series that contain letters and numbers.
Other options are not suitable:
A) Integer for the Non-conformity Number field: This would not be appropriate because the Non- conformity Number includes alphanumeric characters and not just integers.
B) DateTime for the Non-Conformity Date field: This is not correct because there is no requirement to store the time alongside the date.
C) Char for the Non-Conformity Number field: Char data type is not typically used in Business Central for number series or identifiers. The Code data type is preferred for this purpose.



Page 1 of 15



Post your Comments and Discuss Microsoft MB-820 exam with other Community members:

TwZ commented on June 18, 2024
Question 25: correct answer: Permissions = tabledata "Boxes" = rm; https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/properties/devenv-permissions-property
PORTUGAL
upvote

lporro commented on June 05, 2024
Question 10: if you look there it says 90 days https://learn.microsoft.com/en-us/training/modules/easy-application-upgrade/consider-update-lifecycle
Anonymous
upvote