Microsoft Dynamics 365 Business Central Developer (MB-820) Review

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

flashcard set

Earn XP

Description and Tags

A collection of vocabulary flashcards covering Business Central development concepts, properties, and deployment architectures based on the MB-820 lecture notes.

Last updated 1:51 PM on 8/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

Single-tenant Architecture (Business Central On-premises)

A deployment architecture where each customer has their own Business Central Server and the application and business data are stored in the same database.

2
New cards

DEV Extension

An extension type intended for development and testing; these do not automatically reappear in a tenant after a minor or major version upgrade.

3
New cards

AutoRollBack

A transaction model attribute in a test codeunit that ensures changes made during a test method are reverted after the test finishes.

4
New cards

Recreate

A property value for schemaUpdateModeschemaUpdateMode in the launch.jsonlaunch.json file that clears all data from the database environments each time an extension is published.

5
New cards

allowDebugging

A property specified in the app.jsonapp.json file that defines whether the source code of an extension can be viewed during debugging.

6
New cards

Locked = true

A parameter added to a Caption property to prevent that specific caption from being translated into other languages.

7
New cards

Get-BcArtifactUrl -select Closest

The specific PowerShell command used to ensure the most recent and relevant Business Central artifact URL is selected for a Docker container.

8
New cards

MultiLine = True

A page field property that enables a text input field to allow multiple lines of text instead of a single line.

9
New cards

RichDataType = RichContent

A property that allows a field to support rich text formatting, such as bolding, italics, and colors.

10
New cards

AppSource Object Range

A specific range of object IDs from 70000007000000 to 7499999974999999 that must be requested from Microsoft for apps published to AppSource.

11
New cards

TableRelation

A table field property used to establish a lookup relationship between a field in the current table and a field in another table.

12
New cards

ValidateTableRelation

A table field property that validates whether a referenced record actually exists in the destination table before data entry is accepted.

13
New cards

NavigatePage

A page type designed specifically for creating multistep dialogs or wizards to guide users through a sequence of steps.

14
New cards

area(embedding)

The specific layout area within a RoleCenter page used to define the navigation bar.

15
New cards

SaveValues

A report property that, when set to truetrue, saves the filters and options entered on the request page for subsequent runs of the same report.

16
New cards

OnUpgradePerCompany

A trigger within an Upgrade codeunit that executes data upgrade logic for each individual company in a database.

17
New cards

DataAccessIntent = ReadOnly

An API page property used to improve performance by directing GET operations to a read-only replica database rather than the primary production database.

18
New cards

InstructionalText

A page field property that provides a brief guide or summary of the field's purpose to help users understand what data to enter.

19
New cards

OnPreReport

A report trigger that runs before any data is processed, typically used to initialize variables or set global filters.

20
New cards

OnPostDataItem

A report trigger that executes after all records in a specific data item have been processed, often used for summarizing totals.

21
New cards

StrMenuHandler

A test handler used to simulate a user's selection from a menu during automated testing.

22
New cards

HttpClient

An AL data type used to create and send HTTP GET or POST requests to external REST services.

23
New cards

CodeCop

A standard AL code analyzer that enforces generic coding rules and identifies common mistakes in extension development.

24
New cards

AppSourceCop

A specific AL code analyzer that enforces technical requirements necessary for publishing an extension to Microsoft AppSource.

25
New cards

ObsoleteState

A property used on fields or procedures to signal they are no longer required, allowing them to be removed in future versions without breaking existing dependencies.