My First Week Working at Geoson

Jared Drueco | May 13, 2022

I just finished a whole week of work at Geoson Solutions Ltd. as a Software Developer. I’ve enjoyed learning about the company’s operations, and have done quite a bit of coding and research during my onboarding process. Here’s a look at my progress so far!

Introduction to Business Central UI

Up to this point in my new role, I have been collaborating with the company’s Functional Analyst and Solution Architect in modifying Business Central user interfaces for various clients. My main task thus far as a developer has been to familiarize myself with the ERP system and to add more functionality to the application’s UI.

During the first couple of days, I was introduced to the AL programming language which is the language used to control the implementation of the different objects in Business Central. Since this ERP is cloud-based, I had to first set up the proper development environment by connecting VSCode to my own cloud sandbox so that I could start implementing features of my own. To get started in learning the language, I was given various Microsoft Learn modules and helpful YouTube videos to learn the syntax and basics of AL programming in Business Central.

I was also introduced to Azure DevOps to manage different projects and tasks. This also gave me access to the company’s codebase. After cloning the different projects and deploying the solutions to my sandbox, I was able to see all of Geoson’s implementations for various client Business Central UIs. My very first exercise was to create a page extension onto existing code to add more fields to a specific table. I was lucky enough to get a live walkthrough of how to code this feature from my very welcoming team.

Postman

In addition to learning AL programming, I was also introduced to Postman as a tool to create APIs and make HTTP method requests that modify field information on Business Central. As an exercise, I created a simple API page as a Business Central web service that changed the status of a non-editable field on a table.

I was able to access the API using Postman by using the GET request to see what key I should change and the PATCH request to modify the existing data of the table. More specifically, I targeted the field by providing its ID information (from the GET request) as parameters to my PATCH request.

Changing UI based on client needs