Dynamics 365 Shared Variables – Share data between Plugins

Shared variables in Dynamics 365 plugins are essentially global variables that are accessible across all plugin steps and instances. These variables can be used to store data that needs to be shared across different steps of the plugin or across different instances of the same plugin. Using shared variables in Dynamics 365 plugins provides several … Continue reading Dynamics 365 Shared Variables – Share data between Plugins

Advertisement

Dynamics 365 Language Codes

List of supported languages and their LCIDs for Dynamics 365. Language CodeDescription (informative)BCP 47 Code1025Arabic - Saudi Arabiaar-SA1026Bulgarianbg-BG1027Catalanca-ES1028Chinese - Taiwanzh-TW1029Czechcs-CZ1030Danishda-DK1031German - Germanyde-DE1032Greekel-GR1033English - United Statesen-US1034Spanish - Spain (Traditional Sort)es-ES1035Finnishfi-FI1036French - Francefr-FR1037Hebrewhe-IL1038Hungarianhu-HU1039Icelandicis-IS1040Italian - Italyit-IT1041Japaneseja-JP1042Koreanko-KR1043Dutch - Netherlandsnl-NL1044Norwegian (Bokmål)nb-NO1045Polishpl-PL1046Portuguese - Brazilpt-BR1047Rhaeto-Romanicrm-CH1048Romanianro-RO1049Russianru-RU1050Croatianhr-HR1051Slovaksk-SK1052Albanian - Albaniasq-AL1053Swedishsv-SE1054Thaith-TH1055Turkishtr-TR1056Urdu - Pakistanur-PK1057Indonesianid-ID1058Ukrainianuk-UA1059Belarusianbe-BY1060Sloveniansl-SI1061Estonianet-EE1062Latvianlv-LV1063Lithuanianlt-LT1064Tajiktg-Cyrl-TJ1065Persianfa-IR1066Vietnamesevi-VN1067Armenian - Armeniahy-AM1068Azeri (Latin)az-Latn-AZ1069Basqueeu-ES1070Sorbianwen-DE1071F.Y.R.O. Macedonianmk-MK1072Sutust-ZA1073Tsongats-ZA1074Tswanatn-ZA1075Vendaven-ZA1076Xhosaxh-ZA1077Zuluzu-ZA1078Afrikaans - South Africaaf-ZA1079Georgianka-GE1080Faroesefo-FO1081Hindihi-IN1082Maltesemt-MT1083Samise-NO1084Gaelic (Scotland)gd-GB1085Yiddishyi1086Malay - Malaysiams-MY1087Kazakhkk-KZ1088Kyrgyz (Cyrillic)ky-KG1089Swahilisw-KE1090Turkmentk-TM1091Uzbek (Latin)uz-Latn-UZ1092Tatartt-RU1093Bengali (India)bn-IN1094Punjabipa-IN1095Gujaratigu-IN1096Oriyaor-IN1097Tamilta-IN1098Telugute-IN1099Kannadakn-IN1100Malayalamml-IN1101Assameseas-IN1102Marathimr-IN1103Sanskritsa-IN1104Mongolian … Continue reading Dynamics 365 Language Codes

Dynamics 365 | Plugin vs Workflow Execution Order – Which runs first?

When extending the backend of Dynamics 365, it is important to understand the execution order of Plugins and Workflows, especially when you have specific backend steps that need to run in a specific order. Once you understand the concept of stages and ranks of plugins and workflows, it becomes easy to understand which one runs … Continue reading Dynamics 365 | Plugin vs Workflow Execution Order – Which runs first?

Dynamics 365 – Retrieve More than 5000 records with FetchXML

When you're working with Dynamics 365, you may have encountered a limitation when it comes to retrieving records. The maximum number of records that can be retrieved in a single query is 5.000. This can be a problem if you need to retrieve a large number of records, such as for a data migration or … Continue reading Dynamics 365 – Retrieve More than 5000 records with FetchXML

Dynamics 365 – Share-Unshare Records with Plugin or Custom Workflow Activity by using C#

In Dynamics 365, you can dynamically change access privileges of users or teams to records by using Plugins or Workflows. There could multiple scenarios you can implement such functions. For instance, when creating a new Record you can share that record with a specific team or user by using GrantAccessRequest message. Again, on changing of … Continue reading Dynamics 365 – Share-Unshare Records with Plugin or Custom Workflow Activity by using C#

Dynamics 365 – Input and Output Parameters of Custom Actions

Actions in Dynamics 365 are a type of process that used to extend the functionality of Dynamics 365. You can invoke actions through a workflow, plugin, Javascript or API. We can pass the Input parameters to the custom Action and the results can be set as Output parameters. C# Code of Reading Input Parameters and … Continue reading Dynamics 365 – Input and Output Parameters of Custom Actions

Dynamics 365 Workflow Activity- Add Selected Users To a Team as a Bulk(AddMembersTeamRequest)

Whether you are Developer, Analyst or Consultant, there may be requirements for to add multiple users to a team. For instance, the company has created a couple of new teams in its organization chart and want you to implement this new teams to Dynamics 365. Do you prefer navigating through 20 User records by hand … Continue reading Dynamics 365 Workflow Activity- Add Selected Users To a Team as a Bulk(AddMembersTeamRequest)

Dynamics 365 Workflow Activity – Calculate Rollup Field(CalculateRollupFieldRequest)

If you need to update/re-calculate a rollup field by manually or by a condition you can use the below code to create a custom Workflow Activity for yourself. Then use this WF Activity in a workflow based on your business requests.🥳 The best part of this code is, you can use any entity and rollup … Continue reading Dynamics 365 Workflow Activity – Calculate Rollup Field(CalculateRollupFieldRequest)