Skip to content

Commit 27d1d66

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 10730b2 + 357af8f commit 27d1d66

34 files changed

Lines changed: 1705 additions & 244 deletions

File tree

.openpublishing.redirection.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12880,6 +12880,14 @@
1288012880
"source_path": "support/power-platform/dataverse/d365-app-outlook/error-when-installing-crm-2016-outlook.md",
1288112881
"redirect_url": "/previous-versions/troubleshoot/dynamics/crm/error-when-installing-crm-2016-outlook"
1288212882
},
12883+
{
12884+
"source_path": "support/power-platform/dataverse/d365-app-outlook/we-cannot-load-this-app.md",
12885+
"redirect_url": "/troubleshoot/power-platform/dataverse/d365-app-outlook/error-when-opening-365-app-outlook"
12886+
},
12887+
{
12888+
"source_path": "support/power-platform/dataverse/d365-app-outlook/error-incomingemailrejected-install-dynamics-365-app-outlook.md",
12889+
"redirect_url": "/troubleshoot/power-platform/dataverse/d365-app-outlook/error-install-dynamics-365-app-outlook"
12890+
},
1288312891
{
1288412892
"source_path": "support/power-platform/dataverse/d365-app-outlook/current-user-role-not-have-required-permissions.md",
1288512893
"redirect_url": "/troubleshoot/power-platform/dataverse/d365-app-outlook/privilege-error-occurs-when-using-dynamics-365-app-for-outlook"

support/azure/virtual-machines/linux/linux-vm-sshconnectionissue-perms.md

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: SSH connection to Azure Linux VM fails due to permission and ownership issues
33
description: Resolves an issue in which the SSH service fails because the /var/empty/sshd, /var/lib/empty, or /var/run/sshd directory doesn't exist, or it isn't owned by the root user, or it's group-writable or world-writable.
4-
ms.date: 04/15/2024
5-
author: saimsh-msft
6-
ms.reviewer: divargas, adelgadohell
4+
ms.date: 03/13/2025
5+
author: pagienge
6+
ms.reviewer: divargas, adelgadohell, saimsh
77
ms.service: azure-virtual-machines
88
ms.custom: sap:Cannot connect to my VM, linux-related-content
99
ms.collection: linux
@@ -13,15 +13,13 @@ ms.collection: linux
1313

1414
**Applies to:** :heavy_check_mark: Linux VMs
1515

16-
[!INCLUDE [CentOS End Of Life](../../../includes/centos-end-of-life-note.md)]
17-
1816
This article provides solutions to an issue in which connecting to a Linux virtual machine (VM) via Secure Shell (SSH) fails because the _/var/empty/sshd_ directory in RHEL, the _/var/lib/empty_ directory in SUSE, or the _/var/run/sshd_ directory in Ubuntu, doesn't exist, or it isn't owned by the root user, or it's group-writable or world-writable.
1917

2018
## Symptoms
2119

2220
When you connect to a Linux virtual machine (VM) via SSH, the connection fails. You may receive the following error message about the affected directory, depending on your Linux distribution.
2321

24-
### [RHEL/CentOS](#tab/rhelsymp)
22+
### [RHEL](#tab/rhelsymp)
2523

2624
```bash
2725
sudo tail /var/log/messages
@@ -75,7 +73,7 @@ Here are two methods to repair the VM offline:
7573
2. Sign in to the VM by using a local administrative account and its corresponding credential or password.
7674
3. Run the following commands to resolve the permission and ownership issue:
7775

78-
### [RHEL/CentOS](#tab/rhelts1)
76+
### [RHEL](#tab/rhelts1)
7977

8078
```bash
8179
sudo mkdir -p /var/empty/sshd
@@ -111,7 +109,7 @@ In the Azure portal, open the **Properties** window of the VM to check the agent
111109
1. Go to the Azure portal, locate your VM settings, and then select **Run Command** under **Operations**.
112110
2. Execute the following shell script by selecting **RunShellScript** > **Run**:
113111

114-
### [RHEL/CentOS](#tab/rhelts2)
112+
### [RHEL](#tab/rhelts2)
115113

116114
```bash
117115
#!/bin/bash
@@ -155,12 +153,12 @@ If you can connect to the VM via SSH, and you want to analyze the details of the
155153
156154
Here are two methods to repair the VM offline:
157155

158-
- [Use Azure Linux Auto Repair (ALAR).](#offlinetroubleshooting-repairvm)
156+
- [Use az vm repair](#offlinetroubleshooting-repairvm)
159157
- [Use the manual method.](#offlinetroubleshooting-manualvm)
160158

161-
### <a id="offlinetroubleshooting-repairvm"></a>Use Azure Linux Auto Repair (ALAR)
159+
### <a id="offlinetroubleshooting-repairvm"></a>Use az vm repair
162160

163-
Azure Linux Auto Repair (ALAR) scripts are a part of the VM repair extension described in [Repair a Linux VM by using the Azure Virtual Machine repair commands](repair-linux-vm-using-azure-virtual-machine-repair-commands.md).
161+
The `az vm repair`, part of the vm-repair extension for the Azure CLI, is described in [Repair a Linux VM by using the Azure Virtual Machine repair commands](repair-linux-vm-using-azure-virtual-machine-repair-commands.md).
164162

165163
Follow these steps to automate the manual offline process:
166164

@@ -177,7 +175,7 @@ Follow these steps to automate the manual offline process:
177175

178176
3. Run the following commands to resolve the permission and ownership issues:
179177

180-
### [RHEL/CentOS](#tab/rhelts3)
178+
### [RHEL](#tab/rhelts3)
181179

182180
```bash
183181
mkdir -p /var/empty/sshd
@@ -210,11 +208,11 @@ Follow these steps to automate the manual offline process:
210208

211209
### <a id="offlinetroubleshooting-manualvm"></a>Use the manual method
212210

213-
If both the serial console and ALAR approach don't apply to you or fail, the repair has to be performed manually. Follow the steps below to manually attach the OS disk to a recovery VM and swap the OS disk back to the original VM:
211+
If both the serial console and `az vm repair` approach don't apply to you or fail, the repair has to be performed manually. Follow the steps below to manually attach the OS disk to a recovery VM and swap the OS disk back to the original VM:
214212

215213
- [Attach the OS disk to a recovery VM using the Azure portal.](troubleshoot-recovery-disks-portal-linux.md)
216214
- [Attach the OS disk to a recovery VM using Azure CLI.](troubleshoot-recovery-disks-linux.md)
217215

218-
Once the OS disk is successfully attached to the recovery VM, follow the detailed [chroot instructions](chroot-environment-linux.md) to mount and chroot to the filesystems of the attached OS disk. Then, follow step 3 in the [Use Azure Linux Auto Repair (ALAR)](#offlinetroubleshooting-repairvm) section to resolve the permission and ownership issues.
216+
Once the OS disk is successfully attached to the recovery VM, follow the detailed [chroot instructions](chroot-environment-linux.md) to mount and chroot to the filesystems of the attached OS disk. Then, follow step 3 in the [Use az vm repair](#offlinetroubleshooting-repairvm) section to resolve the permission and ownership issues.
219217

220218
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

support/azure/virtual-machines/linux/serial-console-linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.collection: linux
1212
ms.topic: article
1313
ms.tgt_pltfrm: vm-linux
1414
ms.workload: infrastructure-services
15-
ms.date: 02/10/2025
15+
ms.date: 03/11/2025
1616
ms.author: mbifeld
1717
---
1818

@@ -131,7 +131,7 @@ Serial Console uses the storage account configured for boot diagnostics in its c
131131
| UAE | UAE Central, UAE North | 20.38.141.5, 20.45.95.64, 20.45.95.65, 20.45.95.66, 20.203.93.198, 20.233.132.205, 40.120.87.50, 40.120.87.51 |
132132
| United Kingdom | UK South, UK West | 20.58.68.62, 20.58.68.63, 20.90.32.180, 20.90.132.144, 20.90.132.145, 51.104.30.169, 172.187.0.26, 172.187.65.53 |
133133
| United States | US Central, US East, US East 2, US East 2 EUAP, US North, US South, US West, US West 2, US West 3 | 4.149.249.197, 4.150.239.210, 20.14.127.175, 20.40.200.175, 20.45.242.18, 20.45.242.19, 20.45.242.20, 20.47.232.186, 20.51.21.252, 20.69.5.160, 20.69.5.161, 20.69.5.162, 20.83.222.100, 20.83.222.101, 20.83.222.102, 20.98.146.84, 20.98.146.85, 20.98.194.64, 20.98.194.65, 20.98.194.66, 20.168.188.34, 20.241.116.153, 52.159.214.194, 57.152.124.244, 68.220.123.194, 74.249.127.175, 74.249.142.218, 157.55.93.0, 168.61.232.59, 172.183.234.204, 172.191.219.35 |
134-
| USGov | All US Government Cloud regions | 20.140.104.48, 20.140.105.3, 20.140.144.58, 20.140.144.59, 20.140.147.168, 20.140.53.121, 20.141.10.130, 20.141.10.131, 20.141.13.121, 20.141.15.104, 52.127.55.131, 52.235.252.252, 52.235.252.253, 52.243.247.124, 52.245.155.139, 52.245.156.185, 62.10.196.24, 62.10.196.25, 62.10.84.240, 62.11.6.64, 62.11.6.65 |
134+
| USGov | All US Government Cloud regions | 20.140.104.48, 20.140.105.3, 20.140.144.58, 20.140.144.59, 20.140.147.168, 20.140.53.121, 20.141.10.130, 20.141.10.131, 20.141.13.121, 20.141.15.104, 52.127.55.131, 52.235.252.252, 52.235.252.253, 52.243.247.124, 52.245.155.139, 52.245.156.185, 62.10.84.240 |
135135

136136
> [!IMPORTANT]
137137
> - The IPs that need to be permitted are specific to the region where the VM is located. For example, a virtual machine deployed in the North Europe region needs to add the following IP exclusions to the storage account firewall for the Europe geography: 52.146.139.220 and 20.105.209.72. View the table above to find the correct IPs for your region and geography.

support/azure/virtual-machines/windows/serial-console-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.collection: windows
1111
ms.topic: article
1212
ms.tgt_pltfrm: vm-windows
1313
ms.workload: infrastructure-services
14-
ms.date: 01/10/2025
14+
ms.date: 03/11/2025
1515
ms.author: mbifeld
1616
ms.custom: sap:VM Admin - Windows (Guest OS)
1717
---
@@ -185,7 +185,7 @@ Serial Console uses the storage account configured for boot diagnostics in its c
185185
| UAE | UAE Central, UAE North | 20.38.141.5, 20.45.95.64, 20.45.95.65, 20.45.95.66, 20.203.93.198, 20.233.132.205, 40.120.87.50, 40.120.87.51 |
186186
| United Kingdom | UK South, UK West | 20.58.68.62, 20.58.68.63, 20.90.32.180, 20.90.132.144, 20.90.132.145, 51.104.30.169, 172.187.0.26, 172.187.65.53 |
187187
| United States | US Central, US East, US East 2, US East 2 EUAP, US North, US South, US West, US West 2, US West 3 | 4.149.249.197, 4.150.239.210, 20.14.127.175, 20.40.200.175, 20.45.242.18, 20.45.242.19, 20.45.242.20, 20.47.232.186, 20.51.21.252, 20.69.5.160, 20.69.5.161, 20.69.5.162, 20.83.222.100, 20.83.222.101, 20.83.222.102, 20.98.146.84, 20.98.146.85, 20.98.194.64, 20.98.194.65, 20.98.194.66, 20.168.188.34, 20.241.116.153, 52.159.214.194, 57.152.124.244, 68.220.123.194, 74.249.127.175, 74.249.142.218, 157.55.93.0, 168.61.232.59, 172.183.234.204, 172.191.219.35 |
188-
| USGov | All US Government Cloud regions | 20.140.104.48, 20.140.105.3, 20.140.144.58, 20.140.144.59, 20.140.147.168, 20.140.53.121, 20.141.10.130, 20.141.10.131, 20.141.13.121, 20.141.15.104, 52.127.55.131, 52.235.252.252, 52.235.252.253, 52.243.247.124, 52.245.155.139, 52.245.156.185, 62.10.196.24, 62.10.196.25, 62.10.84.240, 62.11.6.64, 62.11.6.65 |
188+
| USGov | All US Government Cloud regions | 20.140.104.48, 20.140.105.3, 20.140.144.58, 20.140.144.59, 20.140.147.168, 20.140.53.121, 20.141.10.130, 20.141.10.131, 20.141.13.121, 20.141.15.104, 52.127.55.131, 52.235.252.252, 52.235.252.253, 52.243.247.124, 52.245.155.139, 52.245.156.185, 62.10.84.240 |
189189

190190
> [!IMPORTANT]
191191
> - The IPs that need to be permitted are specific to the region where the VM is located. For example, a virtual machine deployed in the North Europe region needs to add the following IP exclusions to the storage account firewall for the Europe geography: 52.146.139.220 and 20.105.209.72. View the table above to find the correct IPs for your region and geography.
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
title: Conversion of Maintenance Schedule to Work Orders Fails
3+
description: Solves the errors that prevent you from creating work orders based on maintenance schedule in Microsoft Dynamics 365 Supply Chain Management.
4+
author: sorenbacker2
5+
ms.author: sorenba
6+
ms.date: 03/14/2025
7+
ms.custom: sap:Asset management\Issues with asset management
8+
---
9+
# Can't create work orders based on your maintenance schedule
10+
11+
This article provides the setup steps to ensure the conversion of maintenance schedule lines to work orders doesn't fail due to errors related to number sequence setup in Microsoft Dynamics 365 Supply Chain Management.
12+
13+
## Symptoms
14+
15+
When you try to create work orders for the selected schedule items selected using the [Open maintenance schedule lines](/dynamics365/supply-chain/asset-management/preventive-and-reactive-maintenance/creating-work-orders#create-work-orders-based-on-your-maintenance-schedule) in **Asset Management**, you receive the following error message after selecting **OK** in the **Create work orders** dialog.
16+
17+
> Number sequence \<Number sequence> has been exceeded.
18+
> Number selection is canceled.
19+
20+
## Cause
21+
22+
This issue is caused by the setup of a number sequence. Specifically, the actual number sequence exceeds the configured range of the work order number sequence.
23+
24+
## Resolution
25+
26+
To resolve the issue and ensure the successful conversion of maintenance schedule lines to work orders, follow these steps to properly set up the number sequence:
27+
28+
1. Go to **Asset management module** > **Setup** > **Asset management parameters**.
29+
2. Select the **Number sequences** FastTab.
30+
3. Select **Work order** in the **Reference** column, and then select the corresponding link in the **Number sequence code** column.
31+
32+
4. Go to the **Segments** FastTab. Find the line where the **Segment** column equals *Alphanumeric*. Ensure the corresponding field in the **Value** column has enough hash tags to match the desired length of the variable numeric part of the work order number sequence.
33+
34+
5. Go to the **General** FastTab. In the **Number allocation** field group, ensure that the **Largest** number matches (but is included in) the length of the variable numeric part of the work order number sequence set earlier. In other words, if the alphanumeric value from step 4 equals *######*, the largest number can be set as *999999*. Also, ensure that the number in the **Next** field is included in the range of the number sequence mentioned in steps 4 and 5.
35+
36+
6. Select **Save** to save the changes to the number sequence.
37+
38+
By configuring the work order number sequence correctly, the conversion of maintenance schedule lines to work orders can proceed without being blocked by an error.
39+
40+
## More information
41+
42+
[Set up number sequences on an individual basis](/dynamics365/fin-ops-core/fin-ops/organization-administration/tasks/set-up-number-sequences-individual-basis)

support/dynamics-365/supply-chain/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
href: asset-management/asset-id-not-editable-when-number-sequence-is-manual.md
77
- name: Changing work order lifecycle state doesn't generate fault cause or fault remedy error
88
href: asset-management/change-lifecycle-state-doesnt-create-fault.md
9+
- name: Can't create work orders based on your maintenance schedule
10+
href: asset-management/conversion-of-maintenance-schedule-to-workorder-is-failing.md
911
- name: Inventory costing and closing
1012
items:
1113
- name: An update conflict occurs when the inventory valuation method is either standard cost or moving average
@@ -352,6 +354,8 @@
352354
href: warehousing/shipment-confirmed-no-posting.md
353355
- name: Slotting templates don't consider on-hand inventory for batch-above items
354356
href: warehousing/slotting-templates-inventory-batch-above.md
357+
- name: '"The size of the request xml exceeds the maximum allowed value" in the mobile app'
358+
href: warehousing/request-xml-size-exceeds-maximum-allowed-value.md
355359
- name: The last closed work line must be a put
356360
href: warehousing/the-last-closed-work-link-must-be-a-put-error.md
357361
- name: The weight fields on load lines don't match the weight fields on the load

support/dynamics-365/supply-chain/warehousing/request-xml-size-exceeds-maximum-allowed-value.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Size of Request XML Exceeds Maximum Allowed Value Error
3+
description: Resolves the size of the request xml exceeds the maximum allowed value error in the Warehouse Management mobile app.
4+
ms.date: 03/13/2025
5+
# ms.search.form:
6+
audience: Application User
7+
ms.reviewer: kamaybac, ivanma
8+
ms.search.region: Global
9+
ms.author: ivanma
10+
ms.search.validFrom: 2025-03-03
11+
ms.dyn365.ops.version: 10.0.39
12+
ms.custom: sap:Warehouse management
13+
---
14+
# "The size of the request xml exceeds the maximum allowed value" error in the Warehouse management mobile app
15+
16+
This article provides a resolution for "The size of the request xml exceeds the maximum allowed value" error that occurs in the [Warehouse Management mobile app](/dynamics365/supply-chain/warehousing/install-configure-warehouse-management-app).
17+
18+
## Symptoms
19+
20+
When you open a [Display open work list](/dynamics365/supply-chain/warehousing/configure-mobile-devices-warehouse#configure-menu-items-for-activities-and-inquiries) mobile device flow in the Warehouse Management mobile app, you might receive the following error message:
21+
22+
> The size of the request xml exceeds the maximum allowed value.
23+
24+
## Cause
25+
26+
The Warehouse Management mobile app communicates with the Dynamics 365 Supply Chain Management service through an XML file. The system has a built-in limit on the size of this XML file. If there are many warehouse work items to be displayed in the Warehouse Management mobile app, the XML file size might exceed this limit.
27+
28+
## Resolution
29+
30+
To resolve this issue, follow these steps to reduce the number of warehouse work items shown in the Warehouse Management mobile app:
31+
32+
1. Open the **Mobile device menu items** form by navigating to **Warehouse management** > **Setup** > **Mobile device** > **Mobile device menu items**.
33+
1. Find the impacted menu item.
34+
1. Select the **Edit query** button in the Action Pane.
35+
1. Edit the query to reduce the number of displayed warehouse work items.
36+
37+
For more information about editing the queries, see [User-configurable queries in Warehouse management](/dynamics365/supply-chain/warehousing/user-configurable-queries-in-warehouse-management).

0 commit comments

Comments
 (0)