Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Assuming your connection to your AL development server is setup set up and working (Publishing the Hello World demo project (.al)) and the Mobile WMS app is installed (How-to - Create new Mobile WMS Docker container for extension developmentBefore extending), you are ready to start developing your custom Mobile WMS Extension.In

Step 1: Add dependency to app.json

...

 

  "dependencies": [

    { 

...

Open "app.json"

Copy the block below and insert it in the "Dependencies"-section

Code Block
languagexml
titleApp.json
..
"dependencies": [{
    "id""a5727ce6-368c-49e2-84cb-1a6052f0551c"

...


    "name""Mobile WMS"

...


    "publisher""Tasklet Factory"

...


    "version""5.

...

46.

...

000.

...

00" 

...

    }

  ],

 

Download symbols to verify your Mobile WMS reference is working.

The symbol download request must now include a line for the Mobile WMS app

 Image Removed

 

You are now ready to start developing your custom code for Mobile WMS.

 

Info
titleTroubleshooting

Use Extension Management from the web client to determine the exact Mobile WMS version installed.

Next:

Sample app.json for bc13/bc14

...

 <<< UPDATE THIS
  }],


See also Sample app.json with dependency

Step 2: Update version

  • Change the "version": to the Mobile WMS extension, you are using.
  • You can find the current version in Extensions Management > Mobile WMS 


Image Added


Step 3: Download symbols

Press Ctrl+Shift+P : AL: Download Symbols


The download request now includes Mobile WMS

 Image Added


Next: Begin extending