Merge pull request #115 from jasongroce/patch-1

Update Readme.md
This commit is contained in:
harshabacharaju 2022-11-11 21:53:34 -08:00 коммит произвёл GitHub
Родитель f8d9d8d4e3 6ede53c531
Коммит 1c90bb3d87
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
7 изменённых файлов: 91 добавлений и 60 удалений

Просмотреть файл

@ -13,27 +13,27 @@ products:
## Table of Contents
1. [Introduction](#Introduction)
2. [Experience Summary](#Experience-Summary)
3. [Software Pre-requisites](#Software-Pre-Requisites)
5. [Step-by-step flow for migrating a batch](#Step-by-step-flow-of-migrating-a-batch)
4. [Begin running the Tool and Authenticate Your Account](#Begin-running-the-Tool-and-Authenticate-your-Account)
6. [Load .NET console app ](#Load-.NET-console-app)
7. [Export customers](#Export-customers)
8. [Export subscriptions for customers with migration eligibility](#Export-subscriptions-for-customers-with-migration-eligibility)
9. [Determine which subscriptions will be migrated and how](#Determine-which-subscriptions-will-be-migrated-and-how)
10. [Submitting a batch of subscriptions for migration](#Submitting-a-batch-of-subscriptions-for-migration)
11. [Checking migration status](#Checking-migration-status)
12. [Exporting a list of New Commerce Experience subscriptions](#Exporting-a-list-of-New-Commerce-Experience-subscriptions)
13. [Additional notes and resources](#Additional-notes-and-resources)
1. [Introduction](#introduction)
2. [Experience Summary](#experience-summary)
3. [Software Pre-requisites](#software-prerequisites)
5. [Step-by-step flow for migrating a batch](#step-by-step-flow-of-migrating-a-batch)
4. [Begin running the Tool and Authenticate Your Account](#begin-running-the-tool-and-authenticate-your-account)
6. [Load .NET console app ](#load--net-console-app)
7. [Export customers](#export-customers)
8. [Export subscriptions for customers with migration eligibility](#export-subscriptions-for-customers-with-migration-eligibility)
9. [Determine which subscriptions will be migrated and how](#determine-which-subscriptions-will-be-migrated-and-how)
10. [Submitting a batch of subscriptions for migration](#submitting-a-batch-of-subscriptions-for-migration)
11. [Checking migration status](#checking-migration-status)
12. [Exporting a list of New Commerce Experience subscriptions](#exporting-a-list-of-new-commerce-experience-subscriptions)
13. [Additional notes and resources](#additional-notes-and-resources)
## Introduction
To facilitate partner needs of efficiently migrating large quantities of subscriptions before upcoming New Commerce Experience milestones, Microsoft has enabled a Batch Migration (BAM) tool. The BAM tool allows partners to migrate subscriptions into NCE with the following approach:
To facilitate partner needs of efficiently migrating large quantities of subscriptions before upcoming New Commerce Experience milestones, Microsoft has enabled a Batch Migration (BAM) tool. The BAM tool allows partners to schedule a migration to a future date or can migrate immediately. The BAM tool allows partners to migrate subscriptions into NCE with the following approach:
* Streamlined open source .NET SDK sample app experience
* Streamlined open source .NET SDK sample app experience
* Leverages Excel to manage migration edits
* Leverages Excel to manage migration edits
* Simple tool supporting high quality, repeatable, and customizable migration scenarios in batches
@ -41,62 +41,65 @@ To facilitate partner needs of efficiently migrating large quantities of subscri
## Experience Summary
Below is a high-level workflow of the console app experience and batch migration flow.
Below are the steps of the console app for migrating immediately or scheduling a migration for the future.
![Batch Migration Workflow](assets/images/BatchMigrationWorkflow.png "Batch Migration Workflow")
1. Export customers
2. Export subscriptions with migration eligibility
3. Upload migrations
4. Export migration status
5. Export NCE subscriptions
6. Export subscriptions with migration eligibility to schedule migrations
7. Upload migration schedulers
8. Export scheduled migrations
9. Cancel scheduled migrations
10. Exit
## Pre-Requisites
Note that steps six through nine are only for scheduled migrations.
## Prerequisites
* In order to build and run the BAM tool, .NET 6.0 SDK is required.
* AAD AppId that is onboarded to access Partner Center Apis. The batch migration (BAM) tool is not configured for multitenant apps. When registering the App please use single tenant app.
## Step-by-step flow of migrating a batch
### Begin Running the Tool and Authenticate your Account
Steps for tool setup:
* Open command prompt and navigate to the folder where NCEBulkMigrationTool.sln is located.
* Run command:
```
dotnet build -c Release
```
* Once the application is done building navigate to the folder (NCEBulkMigrationTool\bin\Release\net6.0)
* Find the file NCEBulkMigrationTool.exe this is the executable which runs the tool.
* You can either run the tool where you found the original .exe file or you can copy all of the contents of the folder (NCEBulkMigrationTool\bin\Release\net6.0) into a new folder to begin executing the tool.
**Steps for tool setup**
1. Download the solution from [GitHub](https://github.com/microsoft/Partner-Center-DotNet-Samples/tree/master/nce-bulk-migration-tool)
2. Open command prompt and navigate to the folder where NCEBulkMigrationTool.sln is located.
3. Run command `dotnet build -c Release`
4. Once the application is done building navigate to the folder (NCEBulkMigrationTool\\bin\\Release\\net6.0)
5. Find the file NCEBulkMigrationTool.exe this is the executable which runs the tool.
6. You can either run the tool where you found the original .exe file or you can copy all of the contents of the folder (NCEBulkMigrationTool\\bin\\Release\\net6.0) into a new folder to begin executing the tool.
Steps to run the tool:
* Using Command Prompt navigate to the folder where is CEBulkMigrationTool.exe located (Use above steps to locate file after building)
* In command prompt run the following command:
1. Using Command Prompt navigate to the folder where is CEBulkMigrationTool.exe located (Use above steps to locate file after building)
2. In command prompt run the following command.
```
.\NCEBulkMigrationTool.exe <AppId> <Upn>
.\\NCEBulkMigrationTool.exe *AppId* *Upn*
```
* NOTE: If multiple users are running at the same time from the same folder then files can be overwritten or access can be denied. It is better to copy the tool to multiple folders and each user can operate on a separate instance of the tool
**NOTE** If multiple users are running at the same time from the same folder then files can be overwritten or access can be denied. It is better to copy the tool to multiple folders and each user can operate on a separate instance of the tool
### Load .NET console app
Follow the above section to get the tool running:
Follow the above section to get the tool running.
![NCE Batch Migration Tool Running](assets/images/NceBulkMigrationToolLoaded.png "NCE Batch Migration Tool Running")
Once the tool is running and the account is authenticated a Partner can:
1. Export customers
2. Export subscriptions with migration eligibility
3. Upload subscriptions to be migrated
4. export the migration status of batches that have already been uploaded for migration.
Once the tool is running and the account is authenticated a partner can perform the above actions using the BAM tool.
## Export customers
To export a list of customers, enter command “1”. This will produce a CSV similar to the below example:
To export a list of customers, enter command “1”. This will produce a CSV similar to the below example.
![Exported customers CSV](assets/images/ExportedCustomersExample.png "Exported customers CSV")
The exported list of customers will be available in the “output” file of the tools folders.
The exported list of customers will be available in the “output” file of the tools folders.
![Input output folder example](assets/images/InputOutputFolderExample.png "Input output folder example")
View exported customers in the file “customers.csv”. For each customer under a partner tenant ID, users can view customer tenant ID, customer domain, and customer company name.
![Exported customer CSV example](assets/images/ExportedCustomersExample.png "Exported customer CSV example")
View exported customers in the file “customers.csv”. For each customer under a partner tenant ID, users can view customer tenant ID, customer domain, and customer company name.
## Export subscriptions for customers with migration eligibility
@ -104,11 +107,11 @@ In the downloaded “customers.csv” file, the user can remove rows for the cus
Please save the updated “customers.csv” in the “input” folder in order to successfully execute the next step of receiving subscriptions for the specified customers. The “input” folder contains 2 other nested folders labelled “migrations” and “subscriptions”. Do not place the “customers.csv” file in the nested folders; simply keep it in the “input” folder.
Run the BAM tool and enter command “2” to export subscriptions with migration eligibility.
Run the BAM tool and enter command “2” to export subscriptions with migration eligibility.
![Export customer subscriptions](assets/images/ExportSubscriptionsExample.png "Export customer subscriptions")
The console app will indicate subscriptions are being validated for eligibility, as seen in the screenshot above.
The console app will indicate subscriptions are being validated for eligibility, as seen in the screenshot above.
![Export customer subscriptions in progress](assets/images/ExportSubscriptionsToolOutput.png "Export customer subscriptions in progress")
@ -116,11 +119,11 @@ Once export is complete, the list of subscriptions for the specified customers w
![Export customer subscriptions result file](assets/images/SubscriptionsOutput.png "Export customer subscriptions result file")
The “subscriptions.csv” file will provide a list of all legacy subscriptions (both active and suspended) under the customers previously specified.
The “subscriptions.csv” file will provide a list of all legacy subscriptions (both active and suspended) under the customers previously specified.
![Export customer subscriptions result CSV content](assets/images/OutputSubscriptionsResult.png "Export customer subscriptions result CSV content")
The following fields can be viewed for each subscription:
The following fields can be viewed for each subscription.
* Partner tenant ID
* Indirect Reseller MPN ID
* Customer Name
@ -139,7 +142,8 @@ The following fields can be viewed for each subscription:
* Seat Count (post migration in NCE)
* Add On (True or False)
* Base Subscription (if an add-on)
* Migration Ineligibility Reason (if subscription is not eligible for migration)
* Migration Ineligibility Reason (if subscription is not eligible for migration)
* Custom Term End Date
## Determine which subscriptions will be migrated and how
@ -147,15 +151,16 @@ With the fields above, users can filter through the exported list of subscriptio
Once subscriptions have been filtered and selected, please delete subscriptions that are not selected for the batch from the CSV file. This will prevent any unintended migrations.
**Our recommendation is a limit of 100 subscriptions per batch.**
**Our recommendation is a limit of 200 subscriptions per batch.**
The next step is determining how they would like the subscriptions to be migrated (e.g. like-to-like or with updated start new term, billing frequency, term duration or seat count attributes).
Users may overwrite the following fields in rows for subscriptions they would like to migrate:
Users may overwrite the following fields in rows for subscriptions they would like to migrate.
* Start New Term
* Term
* Billing Plan
* Seat Count
* Customer Term End Date
These fields represent the instructions or attributes that the NCE subscription will adhere to post-migration. The default values for these fields are the values held by the Legacy subscription being migrated. If no changes are made to a field, the corresponding NCE subscription will have the same value held by the Legacy subscription it migrated from. For example, if a Legacy subscription being migrated has a Current Seat Count of 2 and no changes are made to the Seat Count field, the NCE subscription will have a seat count of 2 post-migration.
@ -171,7 +176,7 @@ Once all batch files have been added to the folder run the console app and selec
![Upload migrations selection in console](assets/images/UploadMigrationsExample.png "Upload migrations selection in console")
The console will indicate that the migration requests are being processed:
The console will indicate that the migration requests are being processed.
![Upload migrations tool output](assets/images/UploadMigrationsToolOutput.png "Upload migrations tool output")
@ -183,13 +188,13 @@ A file for each batch containing the migration IDs will be exported (available i
![Uploaded migrations CSV output file example](assets/images/UploadedMigrationsCsvOutput.png "Uploaded migrations CSV output file example")
This file will possess the same fields as the input “subscriptions.csv” file with 2 additional columns labeled Batch ID and Migration ID. The Batch ID will be the same for all subscriptions in the file, indicating these subscriptions belong to the same batch or set of migration requests that were processed together. The Batch ID is also reflected in the name of this csv file.
This file will possess the same fields as the input “subscriptions.csv” file with 2 additional columns labeled Batch ID and Migration ID. The Batch ID will be the same for all subscriptions in the file, indicating these subscriptions belong to the same batch or set of migration requests that were processed together. The Batch ID is also reflected in the name of this csv file.
## Checking migration status
The Migration ID is unique to each subscription being migrated. Migration ID can be used to track the migration status. The screenshot above indicates that for all subscriptions, the migration status is still processing (column I).
The Migration ID is unique to each subscription being migrated. Migration ID can be used to track the migration status. The screenshot above indicates that for all subscriptions, the migration status is still processing (column I).
Once a migration has finished being executed, the status of the migration will be deemed Completed if migration was successful. The NCE Subscription Id will also be populated upon successful migration. If migration was unsuccessful, migration status will be denoted as Failed and the user will be able to view the error reason.
Once a migration has finished being executed, the status of the migration will be deemed Completed if migration was successful. The NCE Subscription Id will also be populated upon successful migration. If migration was unsuccessful, migration status will be denoted as Failed and the user will be able to view the error reason.
To be able to retrieve a refreshed status file for a batch, the exported “[batchId].csv” file (exported to the “migrations” folder nested in “output”) must be copied or saved into the “migrations” folder nested in the “input” folder. This will allow the tool to read in which batches status has been requested for and prepare reports to export.
@ -219,10 +224,36 @@ To export NCE subscriptions, enter command 5. The exported list will show up in
![Export NCE subscriptions CSV file output](assets/images/ExportNceSubscriptionsCsvOutput.png "Export NCE subscriptions CSV file output")
## Key Scenarios
In the case a user wants to migrate more than 100 subscriptions (the maximum batch size recommendation), multiple batches can be uploaded into the BAM tool. Users can organize folders by a variety of fields to reduce the size of the files they would like to upload to be migrated; users may organize subscriptions to be migrated by indirect reseller, product name, subscription name, and more. If a batch file, which the user has organized, exceeds the maximum recommendation of 100 subscriptions, users may separate one CSV into multiple by effectively copying over subscriptions to new files to maintain the 100 subscription maximum of each batch. For example, if a user would like to migrate 325 subscriptions, this can be split into four separate files (three files can each contain 100 subscriptions and the last one can contain 25).
## Schedule Migration
Multiple files can be uploaded into the batch tool at once; the tool will read migration requests one batch file and a time and will automatically begin reading in other batch files saved to the input directory (in the case multiple batches have been added). The tool will read in batches one-by-one and call the [Create Migration API](https://docs.microsoft.com/en-us/partner-center/develop/create-migration) on each subscription individually. Users would not need to wait for one batch file to be finished executing to add additional batch files to the input directory.
Partner can select command `6` to export all the legacy subscriptions with migration eligibility. Once you export the file, you can select the required subscriptions for schedule and modify the configuration as per the schedule.
Partners can update the following fields.
* Start New Term
*Term
* Billing Plan
* Seat Count
*Customer Term End Date
* Target Date or Migrate on Renewal flag
Once the partners prepare the file they can place it in the “subscriptionsforschedule” input folder and ensure not more than 200 subscriptions are in a single batch file.
Partners can select command `7` to schedule the migration. The output file is generated and placed in “schedulemigrations” output folder. This will file will contain the `ScheduleMigrationID`. If the subscription is not eligible it will have the error code and error reason populated.
Partners can select command `8` to download all the migrations that are scheduled. The output will be copied to the `schedulemigrations.csv` file within the output folder.
Partners can select command `9` to cancel the scheduled run. Take the output file from the previous command and copy it into the `cancelschedulemigrations` input folder. Update the status to **Cancel** in order to cancel the schedule of a particular subscription that has been scheduled for the future.
## Schedule migrations APIs
* Cancel a new commerce migration
*Update a new commerce migration
* Get a new commerce migration
* Schedule a new commerce migration ## Key Scenarios
In the case a user wants to migrate more than 200 subscriptions (the maximum batch size recommendation), multiple batches can be uploaded into the BAM tool. Users can organize folders by a variety of fields to reduce the size of the files they would like to upload to be migrated; users may organize subscriptions to be migrated by indirect reseller, product name, subscription name, and more. If a batch file, which the user has organized, exceeds the maximum recommendation of 200 subscriptions, users may separate one CSV into multiple by effectively copying over subscriptions to new files to maintain the 100 subscription maximum of each batch. For example, if a user would like to migrate 325 subscriptions, this can be split into two files (one with 200 subscriptions and the other with 125 subscriptions).
Multiple files can be uploaded into the batch tool at once; the tool will read migration requests one batch file and a time and will automatically begin reading in other batch files saved to the input directory (in the case multiple batches have been added). The tool will read in batches one-by-one and call the [Create Migration API](https://docs.microsoft.com/en-us/partner-center/develop/create-migration) on each subscription individually. Users would not need to wait for one batch file to be finished executing to add additional batch files to the input directory.
The anticipated timelines for each batch to complete is zero to six hours; exceptions will be seen in cases where Partner Center is receiving a high volume of migration requests from multiple users in a short timeframe. More details regarding expected migration timelines are available [here](https://docs.microsoft.com/en-us/partner-center/migrate-subscriptions-to-new-commerce#expected-migration-timelines).
@ -233,4 +264,4 @@ The anticipated timelines for each batch to complete is zero to six hours; excep
Please migrate only one batch of subscriptions at a time to avoid API throttling and rate limits.
Documentation for migrating subscriptions and additional guidelines is available here: [Migrate subscriptions to new commerce - Partner Center | Microsoft Docs](https://docs.microsoft.com/en-us/partner-center/migrate-subscriptions-to-new-commerce)
Documentation for migrating subscriptions and additional guidelines is available at [Migrate subscriptions to new commerce](/partner-center/migrate-subscriptions-to-new-commerce)

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 187 KiB

Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 187 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 89 KiB

После

Ширина:  |  Высота:  |  Размер: 169 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 226 KiB

После

Ширина:  |  Высота:  |  Размер: 257 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 20 KiB

После

Ширина:  |  Высота:  |  Размер: 9.2 KiB

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 14 KiB

После

Ширина:  |  Высота:  |  Размер: 28 KiB