How to export existing report layouts and code to customize them to your needs in Business Central

There was a need by my client to modify the existing base Cheque report used in business central’s cheque run process. I did not want to create a new layout from scratch due to time constraints and wanted to leverage existing layouts. First, I checked to see what the report object id was in Report […]
How to update custom column values in Business Central post data migration

I have a scenario where I have migrated base NAV data over to Business Central cloud. Some custom fields for tables were not ported over to the cloud tables. As such, I needed to find a way to create these new fields in the existing tables and back sync data over to these new fields. […]
Tamper Monkey Script: for Jira Ticket Latest Comment Tool Tip in List View

Created an internal plugin using tampermonkey to see the latest comment in a jira ticket within a list view.
Canadian Payroll & Finance Basics

Context: I am trying to learn more about Canadian payroll and finance so that I can properly understand the business logic when implementing new finance and payroll features in Business Central. I will be using the CRA’s website for my source of knowledge. Employers Guide: Payroll Deductions Remittances What is payroll deduction remittance? – The […]
Automated Jira Ticket Report Generation Per School Using Fabric & Power BI

It would be helpful for school admins or principals to see ticket activity per school per week. Seeing data like how many tickets in total, ticket number per user, tickets that were resolved vs opened would be helpful for admins to see. To do this, we should organize the data based on school first, so […]
Automating Custom Field Bulk Edits in Jira Post Migration with Fabric

We have automated around 100k tickets over to Jira and to clean the Jira production data, some fields need to be altered. By default, some tickets were assigned to Jin as a default user, but this is problematic for reporting and filtering purposes in the future. As such, we needed to change around 60k tickets […]
Bulk Editing Custom Fields in Jira

A very useful tool in Jira post migration or post API bulk updates, is the bulk edit feature for issues. You can access in the filters feature where you can first create a JQL query that will accurately list out all of the issues that need bulk editing in the same manner. In my case, […]
Real-time Most Recent Tickets (Solarwinds to Jira Service Management) Migration using Microsoft Fabric

I have two departments that I need to run this for: Facilities and IT. This initiative is being executed concurrently with UAT. Already over 150k tickets have been migrated over; however, to keep it testable for our users, we need to make sure old ticket system updates that are currently happening are somewhat replicated in […]
Confluence Knowledge Base Transition & Soft Approval Workflow

A collaborative effort in our IT department has been made to centralize documentation into confluence instead of using products like OneNote and SharePoint. This aligns with the decision to move our ticketing system to Jira Service Management due to the robust integration capabilities. A meeting was held to discuss a bare-bones document structure. This was […]
Automating Knowledge Base/ Documentation Transfer From Onenote to Confluence using Fabric

The general logic of executing the Onenote data ingest: Onenote data ingest PySpark code: import requests from pyspark.sql import SparkSession from pyspark.sql.types import StructType, StructField, StringType # Initialize Spark session spark = SparkSession.builder.appName(“OneNoteDataPipeline”).getOrCreate() # Authentication def get_access_token(): url = “https://login.microsoftonline.com/982d56ce-f6e7-4334-a1c4-5d6779c789a6/oauth2/v2.0/token” payload = { “grant_type”: “client_credentials”, […]