You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depending on the layout selected when the app was created, errors in Studio Pro may arise due to the new module's default layouts. To correct this, open each page that has an error and update the layout to the desired layout within the app.
@@ -47,15 +47,15 @@ In this section, you will learn how to add the required pages in the app's **Nav
47
47
1. In the [App Explorer](/refguide/app-explorer/), go to **Navigation**.
48
48
2. Add a **New item** to the navigation to open the page **MxModelReflection.MxObjects_Overview**:
5. Configure the **Start retrieved data at row** to set the ordinal number in which the data should be exported.
154
154
@@ -180,15 +180,15 @@ To create the worksheet layout, follow these steps:
180
180
181
181
Below you can find an example of the definition of a template and the corresponding exported Excel file: the two worksheets are defined as **Topic** and **PubMessage** in the template, and the corresponding Excel file has two sheets that have the same names.
2. Specify the **Row** and **Column** that the static value should be placed.
211
211
3. Enter a name for the cell in the **Name** field.
@@ -218,7 +218,7 @@ To configure the custom formatting and styling for the cells, follow these steps
218
218
219
219
1. Back on the main page for your new template, click **New** in the **Styles** section to create a new style that can be applied to any of the data in the Excel export:
3. In your microflow, call the **XLSReport.GenerateExcelDoc** Java action (available from the module's **JavaActions** folder) to pass the required objects to the module.
If your template definition does not have **Input Object**, your microflow can directly retrieve the template object and **Row Object** from the database for the export.
250
250
@@ -272,7 +272,7 @@ To run the microflow you created above, you will need to create another microflo
If you create a **PolicyDoc** with *no* associations to **Policy** objects, you will export an empty spreadsheet with the structure defined in the template.
Copy file name to clipboardExpand all lines: content/en/docs/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file.md
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Before starting this how-to, make sure you have completed the following prerequi
24
24
25
25
The Excel sheet you receive in this scenario contains almost every country in the world, as well as some supporting data. This data has to be imported into your application.
26
26
27
-
You can find the Excel sheet here: [Countries](/attachments/refguide/modeling/integration/import-a-large-excel-file/Countries.xlsx).
27
+
You can find the Excel sheet here: [Countries](http://attachments/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file/Countries.xlsx).
28
28
29
29
You are going to make an XSD schema from the headers in the Excel sheet so you can import the data into the model.
30
30
@@ -33,9 +33,9 @@ To modify your Excel sheet, follow these steps:
33
33
1. Select the header row with all the country names.
34
34
2. Copy and paste them in a new sheet using the transpose function:
Your headers should be listed vertically and your sheet should look like this: [Countries Transposed](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesTransposed.xlsx).
38
+
Your headers should be listed vertically and your sheet should look like this: [Countries Transposed](http://attachments/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file/CountriesTransposed.xlsx).
39
39
40
40
You are now ready to add some tags around the column.
41
41
@@ -48,17 +48,17 @@ To modify your Excel sheet, follow these steps:
48
48
49
49
5. Drag the string all the way down to the last country.
7. Like you did with the previous string, drag it down to the last country. The Excel sheet should now look like this: [Countries with Tags](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesWithTags.xlsx).
59
+
7. Like you did with the previous string, drag it down to the last country. The Excel sheet should now look like this: [Countries with Tags](http://attachments/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file/CountriesWithTags.xlsx).
Now, group the three different columns into one column. This is necessary to copy the whole column into an XSD file.
64
64
@@ -68,7 +68,7 @@ To modify your Excel sheet, follow these steps:
68
68
=(A1&B1&C1)
69
69
```
70
70
71
-
9. Drag the cells down like you’ve done with column **A1** and **C1**. Now, column **D** should have columns **A**, **B**, and **C** combined into one, and your sheet should look like this: [Countries with Tags and Column D](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesWithTagsAndColumnD.xlsx).
71
+
9. Drag the cells down like you’ve done with column **A1** and **C1**. Now, column **D** should have columns **A**, **B**, and **C** combined into one, and your sheet should look like this: [Countries with Tags and Column D](http://attachments/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file/CountriesWithTagsAndColumnD.xlsx).
72
72
73
73
## Preparing Your XSD File
74
74
@@ -98,7 +98,7 @@ You have used some of Excel's basic functionalities to create the first part of
98
98
</xs:schema>
99
99
```
100
100
101
-
Your file should look like this: [Country Import](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountryImport.xsd).
101
+
Your file should look like this: [Country Import](http://attachments/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file/CountryImport.xsd).
102
102
103
103
5. Click **Save**.
104
104
@@ -108,29 +108,29 @@ The XSD file is ready to be imported into your app. To import it, follow these s
108
108
109
109
1. Open your app and create a new XSD schema. Do this by right-clicking the module and selecting **Add other** > **XML schema**.
0 commit comments