Assuming your connection to your AL development server is setup and working (Publishing the Hello World demo project (.al)) and the Mobile WMS app is installed (Before extending), you are ready to start developing your custom Mobile WMS Extension.
...
Note |
---|
This example is for Runtime 2.0 and 3.0 (BC13/14) For Runtime 4.0 (BC15), thedependency should be added to the list of other existing dependencies. See full file examples in the following pages. |
Step 1
- Open "app.json"
Step 2
- Add the dependency to Mobile WMS by copying the block below.
"dependencies": [
{
"appId": "a5727ce6-368c-49e2-84cb-1a6052f0551c",
"name": "Mobile WMS",
"publisher": "Tasklet Factory",
"version": "5.xx.xxx.xx" CHANGE ME<<< UPDATE THIS
}
],
Step 3
- Change the "version": to the Mobile WMS extension you are using.
- You can always find this in on the Extensions page.
...
Sample app.json for BC13 / BC14
Sample app.json for BC15with dependency
Tutorial: Create a Positive Adjustment function
...