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, […]

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”,     […]