Skip to main content

Posts

Showing posts with the label AX for Retail

[AX 7 Retail] : The service is not provisioned for the same tenant. User is hitting a retail server that does not belong to the same tenant as the Activation account

If you have downloaded an AX7 VM for Development especially for Retail do have a look at this article https://lnkd.in/exvhGgW Unless you do the steps mentioned in your link you will get errors like the The service is not provisioned for the same tenant. User is hitting a retail server that does not belong to the same tenant as the Activation account

[AX 7 Retail]: Retail SDK Handbook

Just a short but nevertheless important post. I discovered this document AX7 Retail Handbook while browsing my LCS deployed AX 7 RTW VM Retail SDK folder. Overall the document is made up of two parts. The first covers the Retail Sdk, build, configurations that can be done to be more productive. Additionally, typical branching strategy is discussed in order to work effectively in teams. The second part contains details about the main extensibilities that are possible with the Retail Sdk. Anyone getting started with writing code against the Sdk can use it as a reference in order to get started. Some sample extensions are also provided in the same folder path. Kudos to the team at Microsoft for going the extra mile to provide this document and sample extensions. PS: If you have access to the LCS Deployed VM please access these materials there, I would not be in a position to share these as copyrights apply.   Update -   These documents have been discussed...

[AX 7 Retail] : Moving Till Screen Layouts from one environment to another

Recently i needed to move my configuration from one environment to another. I expected it to be easy thanks to the Data Entities available in AX 7. However being the first time to do this it was a bit of a pain. First off it took me a while to locate the Data Entity I wanted to use. As its a long list I tend to apply a filter "Retail" to my the list of Data Entities.However turns out that they have a I should have used the filter "POS".  In order to move the screen layouts few important entities are the POS Button Grid, POS button grid buttons, and the  POS screen layout button grid zones  . These hold the definitions of the grids displayed in your POS screen layout, buttons (which trigger functionality in the POS) within them and the  grid zones  assigned to those screen layouts.  Another issue is assigning the images associated with the buttons. If the images on your environments have different indexes , you need to again associa...

Inventory locations not appearing in MPOS

You need to configure store locator group as described in this link https://technet.microsoft.com/en-us/library/jj728715.aspx and then configure longitude and latitude for your retail channel http://dynamicserppros.com/retail-inventory-availability-proximity-retail-store-dynamics-ax-2012-r3/

A simple customization in MPOS (Blank Operation) with AX7

Hi All, I recently had to add a Blank Operation to Modern POS (MPOS) to open a url from MPOS. Blank Operation as you may already be aware enable you to extend Microsoft Dynamics Retail for POS by adding custom logic that can be triggered from the Retail POS Register buttons. The way to implement Blank Operations in MPOS  is different from Enterprise POS as MPOS is a modern app as compared to EPOS which is a windows forms based app. So lets explore a very simple customization i.e. we want to open a URL on triggering a button from MPOS. 1. We would need to start with AX to add a button to the layout of MPOS. If you do not want to disturb the standard layouts its better to copy one of the existing layouts and then modify it using the designer. Please note the designer only opens in Internet Explorer so it will save you time by not trying to open it in other browsers e.g Chrome 2. Next we need to add this layout to the Store where we intend to use it...