Skip to content

Commit 729ce3f

Browse files
committed
TW review
1 parent cdc1046 commit 729ce3f

3 files changed

Lines changed: 61 additions & 60 deletions

File tree

content/en/docs/marketplace/platform-supported-content/modules/siemens/teamcenter-connector/compatibility-matrix.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
2-
title: "Compatibility matrix"
2+
title: "Compatibility Matrix"
33
url: /appstore/modules/siemens-plm/compatibility-matrix/
44
weight: 1
5-
description: "Provides an overview of Teamcenter Connector versions and its compatibility with various versions of Teamcenter, Teamcenter X, and Mendix."
5+
description: "Provides an overview of Teamcenter Connector versions and their compatibility with various versions of Teamcenter, Teamcenter X, and Mendix."
66
---
77

8-
Below is an overview that showcases compatibility of Teamcenter Connector with various versions of Teamcenter, Teamcenter X, and Mendix.
8+
This table showcases the compatibility between the Teamcenter Connector and various versions of Teamcenter, Teamcenter X, and Mendix.
99

10-
|Teamcenter Connector | Studio Pro version | Supported Teamcenter Self Hosted version | Supported Teamcenter X versions | Known Teamcenter incompatibility
10+
|Teamcenter Connector | Studio Pro version | Supported Teamcenter Self-hosted version | Supported Teamcenter X versions | Known Teamcenter incompatibility
1111
| :--- | :--- | :--- | :--- | :--- |
12-
| 2512.0.0 | 10.24.8 or higher* | 2512, 2506, 2412, 2406 | 2512, 2506, 2412 | TC SSO does not work for TC (self hosted) 2406 and older |
13-
| 2506.0.0 | 10.20.0 or higher* | 2506 | 2506 | |
14-
| 2412.225.0 | 10.4.0 or higher* | 2412 | 2412 | |
15-
| 2406.3.0 | 10.0.0 or higher* | 2406 |N/A | |
16-
| 3.6.0 | 9.18.2 or higher** | 14, 13 | N/A | TC SSO does not work for TC (self hosted) 2506 and newer |
12+
| 2512.0.0 | 10.24.8 or above* | 2512, 2506, 2412, 2406 | 2512, 2506, 2412 | TC SSO does not work for self-hosted TC 2406 and below |
13+
| 2506.0.0 | 10.20.0 or above* | 2506 | 2506 | N/A |
14+
| 2412.225.0 | 10.4.0 or above* | 2412 | 2412 | N/A |
15+
| 2406.3.0 | 10.0.0 or above* | 2406 |N/A | N/A |
16+
| 3.6.0 | 9.18.2 or above** | 14, 13 | N/A | TC SSO does not work for self-hosted TC 2506 and above |
1717

1818
<sub>* Latest Mendix 10 LTS version recommended</sub>
1919

content/en/docs/marketplace/platform-supported-content/modules/siemens/teamcenter-connector/upgrade-from-2506-to-2512.md

Lines changed: 0 additions & 51 deletions
This file was deleted.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: "Upgrading Teamcenter Connector 2506.0.0 to 2512.0.0"
3+
url: /appstore/modules/siemens-plm/upgrade-teamcenter-connector-2506-to-2512/
4+
weight: 4
5+
description: "Describes the steps to upgrade Teamcenter Connector 2506.0.0 to 2512.0.0 and discusses how breaking changes can be resolved."
6+
---
7+
8+
## Introduction
9+
10+
This document guides you through the process of upgrading the Teamcenter Connector from version 2506.0.0 to version 2512.0.0.
11+
In version 2512.0.0 of the Teamcenter Connector, the Single Sign-On (SSO) option is implemented differently, so the OIDC module is no longer in use.
12+
To see all the changes in this release, refer to the [Teamcenter Connector](https://marketplace.mendix.com/link/component/111627) release notes.
13+
14+
## Upgrading the Teamcenter Connector
15+
16+
1. Download the latest versions of the Teamcenter Connector and of the Teamcenter Extension:
17+
18+
* Download the latest 2512.x version of the [Teamcenter Connector](https://marketplace.mendix.com/link/component/111627).
19+
* Download the latest 4.x version of the [Teamcenter Extension](https://marketplace.mendix.com/link/component/225544).
20+
21+
2. Resolve the breaking changes mentioned in the [release notes](https://marketplace.mendix.com/link/component/111627):
22+
23+
* Replace `UserLogin` with `NAV_UserLogin`.
24+
* Replace `ShowLoginPage` with `NAV_UserLogin`.
25+
* Replace `LoginToMultipleTeamcenters` with `NAV_UserLoginMultipleActive`.
26+
* Replace `AdminHomePage` with `NAV_AdminHomePage`.
27+
* Remove `SSO_RegisterRequestHandlers` after startup microflow.
28+
29+
The following fundamental changes have been made:
30+
31+
* The `Admin` user role used to have login options through the `AdminLogin` microflow. In version 2512.0.0, login functionalities have been removed for the `Admin` user role. If the `Admin` role of your app requires the option to log in to Teamcenter, assign it the TcConnector `User` module role.
32+
* The `TeamcenterConfiguration` event handlers have been removed. If you have custom logic for `TeamcenterConfiguration` objects, confirm it includes the correct validations.
33+
* Multiple microflows and pages have been moved from the `Public` to the `Private` folder. Make sure that these are no longer directly referenced.
34+
35+
3. Update entity access.
36+
To resolve the `Entity access is out of date` error, go to the domain model, and click the **Update security** button on the top bar.
37+
Once updated, there might be some entities that return the following error: `Non-persistable entity (entityName) contains access rules restricting members to have no access rights, which is not allowed.` This is happening because new attribute names and relations have been introduced. Open the entity in question and assign read-only access to all attributes with no rights.
38+
39+
4. Remove Marketplace modules.
40+
The following Marketplace modules are no longer used, and can be removed if they are not used by any other logic in your app:
41+
42+
* OIDC SSO module
43+
* UserCommons module
44+
* MxModelReflection module
45+
46+
5. Use React client (optional).
47+
Teamcenter Connector 2512 is compatible with React Client. To enable this, go to **Settings**, then to **Runtime**, then select **Yes** for **Use React client**.
48+
For details on React Client, refer to its [documentation page](/refguide/mendix-client/react/).
49+
50+
6. Set Up the Teamcenter Configuration.
51+
Due to the SSO setup, you need to set up the Teamcenter configuration again when you deploy a new app with Teamcenter Connector 2512.0.0. For details on how to do that, follow the steps in [Configuring the Connection to Teamcenter with Teamcenter Connector 2512.0.0 and Above](/appstore/modules/siemens-plm/configuring-connection-2512).
52+

0 commit comments

Comments
 (0)