www.youtube.com/watchGreg is a shopper in the Generation Y demographic - he likes to be connected, but only when he decides to. This video shows how Microsoft solutions based on Microsoft Dynamics can help the retailer to engage their customer consistently, enjoyably, and profitably. Products facilitating this scenario are: Microsoft Dynamics AX, Dynamics CRM, Dynamics Marketing, Dynamics Partner Solutions, Dynamics AX Modern Point of Sale, and Microsoft Social Engagement.
To learn more about Microsoft Dynamics click here: https://www.microsoft.com/en-gb/dynamics/retail.aspx
↧
The Microsoft Dynamics Modern Store - Electronics Retail
↧
Smiles Co. brings additional joy to customers with the help of Dynamics 365 for Operations
www.youtube.com/watchSmiles Co. is a company with kindness behind everything they do. “We seek to find new value in things that, in our hectic day-to-day lives, are taken for granted and ultimately overlooked,†says the company’s website. Smiles Co. operates a wide range of enterprises and, in order to accelerate the decision-making and strategy planning process, the company built a business data platform using Microsoft Dynamics 365 and Azure. See how, by operating in the cloud, the platform increases user-friendliness and cost savings.
Click here to learn more: https://aka.ms/smiles
↧
↧
An Intern's Take on the Dynamics Services Business at Microsoft
I'm Megan Lenling, a student at North Dakota State University (GO BISON!), as well as a summer intern here at the Fargo campus working in the marketing/communications area of the Dynamics Services bus...(read more)
↧
Sales order import in Microsoft Dynamics 365 Finance and Operations one version D365FO
Sales order import in Microsoft Dynamics 365 Finance and Operations one version D365FO
To easiest option is to use data management and data entities
couple of data entities needed
Sales order header...(read more)
↧
Running an SSRS report from the selected record
SSRS reports are used to display data in an organized way. It helps the users to get the data as per their own business formats and scenarios. In Microsoft Dynamics 365 for Finance and Operations or in...(read more)
↧
↧
Budget planning for the One Version era in Microsoft Dynamics 365 Finance and Operations
Setup and configuration of budget planning has a lot of moving
parts. Any misalignment of setup may stop the planning process and
impact downstream execution in a range of ways.
A strong budget plan can boost collaboration and offer a single
source... Read the full text.
↧
Detailed review of Cost to complete methods in projects (3/3)
To complete this serie of posts about cost to complete methods in projects (you can find the part one here and the part two here ), I will now focus on the ones that need any forecast.
Total forecast...(read more)
↧
New pricing and licensing for Microsoft Dynamics 365 Unified Operations apps planned for October 2019
Diagram presented to partners at Inspire
2019
Microsoft revealed to partners at Inspire 2019 that the Dynamics
365 for Finance and Operations (D365FO) application will be
licensed as separate Finance and Supply Chain... Read the full text.
↧
PFE Dynamics 365 Service Offerings
Below is a list of services our Premier Field Engineering team offers for our Premier Support customers. For more information please contact your Technical Account Manager (TAM), Premier Field ...(read more)
↧
↧
Interviewing Lauren Hudgins, Sr. Consultant in the Dynamics 365 Services Public Sector
One of the greatest aspects of my internship is being able to have the opportunity to meet and speak with many employees in the Dynamics 365 Services world. From Premier Field Engineers (PFEs) to Tech...(read more)
↧
Dynamics 365 Talent Blog by Tom Elliott
To find out fantastic information about Dynamics 365 Talent, check out this blog from my colleague, Tom Elliott.
Blog: http://www.tomstalentblog.co.uk/
YouTube: https://www.youtube.com/channel/UCU0HjqVlr6BwGZzy7E-6wAg
Tom does blog posts, walkthroughs, videos, and tips for this product. He is absolutely crushing it on Talent content!
↧
The Microsoft Dynamics Modern Store - Fashion Retail
www.youtube.com/watchSarah is a shopper in the Generation Y/Z demographic. She likes to be connected at all time, and opts in to share her location and to receive notifications. This video shows how Microsoft solutions based on Microsoft Dynamics can help the retailer to engage their customer consistently, enjoyably, and profitably. Products facilitating this scenario are: Microsoft Dynamics AX, Dynamics CRM, Dynamics Marketing, Dynamics Partner Solutions, Dynamics AX Modern Point of Sale, and Microsoft Social Engagement.
To learn more about Microsoft Dynamics click here: https://www.microsoft.com/en-gb/dynamics/retail.aspx
↧
The Microsoft Dynamics Modern Store - Electronics Retail
www.youtube.com/watchGreg is a shopper in the Generation Y demographic - he likes to be connected, but only when he decides to. This video shows how Microsoft solutions based on Microsoft Dynamics can help the retailer to engage their customer consistently, enjoyably, and profitably. Products facilitating this scenario are: Microsoft Dynamics AX, Dynamics CRM, Dynamics Marketing, Dynamics Partner Solutions, Dynamics AX Modern Point of Sale, and Microsoft Social Engagement.
To learn more about Microsoft Dynamics click here: https://www.microsoft.com/en-gb/dynamics/retail.aspx
↧
↧
Smiles Co. brings additional joy to customers with the help of Dynamics 365 for Operations
www.youtube.com/watchSmiles Co. is a company with kindness behind everything they do. “We seek to find new value in things that, in our hectic day-to-day lives, are taken for granted and ultimately overlooked,†says the company’s website. Smiles Co. operates a wide range of enterprises and, in order to accelerate the decision-making and strategy planning process, the company built a business data platform using Microsoft Dynamics 365 and Azure. See how, by operating in the cloud, the platform increases user-friendliness and cost savings.
Click here to learn more: https://aka.ms/smiles
↧
Custom Authentication in ASP.Net MVC 5
By default ASP.Net claim based authentication support authorization based usernames and Roles names, but my requirement are tittle different I have three types of user SuperAdmin, Admin and normal user...(read more)
↧
Code to get Sales order Total Value in Axapta | calculate total for sales order
This is sample Code to get Sales order Total Value in Axapta. You can try this job in Your Ax environment to check all vales . It will work well with open and Invoiced status sales order I hope it will help you and save your lot of time.
static void SalesTotalAmountJOb(Args _args)
{
SalesTotals salesTotals;
SalesTable salesOrderTable;
SalesLine salesLine;
TaxAmountCur salesAmt,taxAmount,amt1,discountAmt,totcharges,totOfOrder,contributionRatio;
Tax tax;
;
salesOrderTable = SalesTable::find("TD_SO_00069218");
salesLine = SalesLine::find(salesOrderTable.SalesId);
salesTotals = SalesTotals::construct(salesOrderTable);
tax = Tax::construct(NoYes::No);
salesAmt = salesTotals.totalBalance();
taxAmount = salesTotals.totalTaxAmount();
discountAmt = salesTotals.totalEndDisc();
totcharges = salesTotals.totalMarkup();
totOfOrder = salesTotals.totalAmount();
contributionRatio = salesTotals.totalContributionRatio();
info(Strfmt("Sales Lines Amount %1",salesAmt ));
info(Strfmt("The VAT\tax amount is %1",taxAmount ));
info(Strfmt("The Discount Value is %1",discountAmt ));
info(Strfmt("Misc Markup %1",totcharges ));
info(Strfmt("Total Invoice Amount %1",totOfOrder ));
info(Strfmt("Total Contribution ratio %1",contributionRatio ));
}
↧
Download a file after saving in AX 365
I required quite simple code to download an XML file on client machine after saving it to a local directory. This is the small code snippet that might be useful for you as well. (read more)
↧
↧
Microsoft confirms pricing and licensing updates for Dynamics 365 coming in October 2019
Microsoft's "placemat" view of the new Attach pricing model for
Dynamics 365
Microsoft today confirmed the pricing and licensing updates
coming to both Dynamics 365 and Power Platform on October but
offered only limited new details on... Read the full text.
↧
The Microsoft Dynamics Modern Store - Fashion Retail
www.youtube.com/watchSarah is a shopper in the Generation Y/Z demographic. She likes to be connected at all time, and opts in to share her location and to receive notifications. This video shows how Microsoft solutions based on Microsoft Dynamics can help the retailer to engage their customer consistently, enjoyably, and profitably. Products facilitating this scenario are: Microsoft Dynamics AX, Dynamics CRM, Dynamics Marketing, Dynamics Partner Solutions, Dynamics AX Modern Point of Sale, and Microsoft Social Engagement.
To learn more about Microsoft Dynamics click here: https://www.microsoft.com/en-gb/dynamics/retail.aspx
↧
The Microsoft Dynamics Modern Store - Electronics Retail
www.youtube.com/watchGreg is a shopper in the Generation Y demographic - he likes to be connected, but only when he decides to. This video shows how Microsoft solutions based on Microsoft Dynamics can help the retailer to engage their customer consistently, enjoyably, and profitably. Products facilitating this scenario are: Microsoft Dynamics AX, Dynamics CRM, Dynamics Marketing, Dynamics Partner Solutions, Dynamics AX Modern Point of Sale, and Microsoft Social Engagement.
To learn more about Microsoft Dynamics click here: https://www.microsoft.com/en-gb/dynamics/retail.aspx
↧