Skip to content

Commit fbbc28f

Browse files
committed
Review File menu doc
1 parent 903e98d commit fbbc28f

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

content/en/docs/refguide/modeling/menus/file-menu/solving-load-and-import-errors.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Solve Load and Import Errors"
33
url: /refguide/solving-load-and-import-errors/
44
weight: 11
5-
description: "Describes how to solve problems that may occur when opening an app."
5+
description: "Describes how to solve load and import errors that occur when opening an app in Studio Pro."
66
aliases:
77
- /howto/solving-load-and-import-errors.html/
88
- /howto/solving-load-and-import-errors/
@@ -12,49 +12,49 @@ aliases:
1212

1313
## Introduction
1414

15-
This how-to will help you to solve problems that may occur when opening an app in Mendix Studio Pro.
15+
This document describes how to solve problems that can occur when opening an app in Studio Pro.
1616

17-
One possible cause of errors that prevent loading is the usage of the [Mendix Model SDK](/apidocs-mxsdk/mxsdk/) for creating or editing the app. With the Mendix Model SDK it's possible to edit your app in such a way that its format becomes invalid, and in the process preventing Studio Pro from opening it. When this happens the following message is shown:
17+
One possible cause of errors that prevent loading is using the [Mendix Model SDK](/apidocs-mxsdk/mxsdk/) to create or edit the app. The Mendix Model SDK can edit your app so its format becomes invalid, which prevents Studio Pro from opening it. When this happens, the following message appears:
1818

19-
{{< figure src="/attachments/refguide/modeling/menus/file-menu/solving-load-and-import-errors/18580055.png" class="no-border" >}}
19+
{{< figure src="/attachments/refguide/modeling/menus/file-menu/solving-load-and-import-errors/18580055.png" alt="" class="no-border" >}}
2020

21-
Read on to find out how to determine the origin of these errors, and possible ways to solve them.
21+
This document explains how to determine the origin of these errors and possible ways to solve them.
2222

2323
## Determining the Actual Problems
2424

25-
Click the **Details >>** button to show the actual errors that occurred while loading your app:
25+
Click **Details** to show the actual errors that occurred while loading your app:
2626

27-
{{< figure src="/attachments/refguide/modeling/menus/file-menu/solving-load-and-import-errors/18580052.png" class="no-border" >}}
27+
{{< figure src="/attachments/refguide/modeling/menus/file-menu/solving-load-and-import-errors/18580052.png" alt="" class="no-border" >}}
2828

2929
These detailed messages tell you the following:
3030

31-
* The module and document in which the error occurred (for example, the domain model of the module 'Transportation').
32-
* The model element that caused the error (for example, the entity 'Vehicle').
33-
* What the actual problem is (for example, there's an index that doesn't contain any attributes, which is not permitted).
31+
* The module and document where the error occurred (for example, the domain model of the module *Transportation*)
32+
* The model element that caused the error (for example, the entity *Vehicle*)
33+
* What the actual problem is (for example, an index that does not contain any attributes, which is not permitted)
3434

3535
## Determining the Origin of Your App
3636

37-
Before trying to solve the problems, it is useful to discover the origin of the app, because the errors may be introduced by someone else. Go through the following possibilities:
37+
Before trying to solve the problems, discover the origin of the app because someone else may have introduced the errors. Go through the following possibilities:
3838

3939
### Is This a Team Server App?
4040

41-
If your app is a [Team Server](/developerportal/repository/team-server/) app, and you just did a [download or update](/refguide/using-version-control-in-studio-pro/) from the server, the problem may have been added in a revision that was recently committed to the Team Server. You can check who made the most recent commit on the [Team Server](/developerportal/repository/team-server/) page of your app in [Apps](https://sprintr.home.mendix.com).
41+
If your app is a [Team Server](/developerportal/repository/team-server/) app and you just did a [download or update](/refguide/using-version-control-in-studio-pro/) from the server, the problem may have been added in a revision that was recently committed to the Team Server. You can check who made the most recent commit on the [Team Server](/developerportal/repository/team-server/) page of your app in [Apps](https://sprintr.home.mendix.com).
4242

4343
If the latest change on your branch line was committed by someone other than yourself, please inform the person about the problem.
4444

4545
### Did You Obtain the Model from Someone Else?
4646

47-
If you received the model from someone else, for example as an app package (.mpk) file, then it is possible they created the model with the Mendix Model SDK. Please inform the person about the problem and ask them for a solution.
47+
If you received the model from someone else (for example, as an app package (*.mpk*) file), they may have created the model with the Mendix Model SDK. Inform them about the problem and ask them for a solution.
4848

4949
### Did You Create the App Yourself?
5050

51-
If you created or edited the app yourself, you will want to read the next section of this how-to to find out what you can do to solve the problem.
51+
If you created or edited the app yourself, read the next section to find out how to solve the problem.
5252

5353
## Solving the Problems
5454

55-
The problems described in this how-to can't be solved by editing the app in Mendix Studio Pro, because the app's file format is invalid in a way that prevents Studio Pro from reading it. This also means the problems are probably not caused by working on the app with Studio Pro.
55+
The problems described in this document cannot be solved by editing the app in Studio Pro, because the app file format is invalid in a way that prevents Studio Pro from reading it. This also means the problems were probably not caused by working on the app with Studio Pro.
5656

57-
The most likely cause for these kinds of errors is a faulty script that was run on the Mendix Model SDK and, if this is the case, means you will also need to use the SDK to fix the problems. If you created or edited the model yourself using the Mendix Model SDK, you will probably know what to do to solve the problems by carefully reading the messages in the error dialog, and locating the relevant part of you SDK code, after which you can change your SDK script to make the app valid again. Be sure to check the [Mendix Model SDK documentation](/apidocs-mxsdk/mxsdk/) if you need information about constructing or altering models with SDK scripts.
57+
The most likely cause for these kinds of errors is a faulty script that was run on the Mendix Model SDK. If this is the case, you need to use the SDK to fix the problems. If you created or edited the model yourself using the Mendix Model SDK, carefully read the messages in the error dialog and locate the relevant part of your SDK code. Then change your SDK script to make the app valid again. For information about constructing or altering models with SDK scripts, see the [Mendix Model SDK documentation](/apidocs-mxsdk/mxsdk/).
5858

5959
## Read More
6060

0 commit comments

Comments
 (0)