Asem Alkamel

Hi, I am

Asem Alkamel

IT Manager

IT Manager with over 7 years of hands-on experience in digital transformation and ERP systems. Proven leader in implementing SAP Business One, HR software, and fleet management solutions. Expertise includes building IT infrastructure and applying Industry 4.0 principles based on SIRI standards. Currently pursuing a Master's in Artificial Intelligence and Machine Learning at Walsh College.

  • 7+ Years Experience
  • 99.9% Server Uptime
  • 20% Manual Tasks Reduced
  • 15% Production Boost
  • 15% IT Cost Reduction
  • 5 Team Size Led

About نبذة عني

IT Manager with over 7 years of hands-on experience in digital transformation and ERP systems. Proven leader in implementing SAP Business One, HR software, and fleet management solutions. Expertise includes building IT infrastructure and applying Industry 4.0 principles based on SIRI standards. Currently pursuing a Master's in Artificial Intelligence and Machine Learning at Walsh College. مدير تقنية معلومات أكثر من 7 سنوات من الخبرة العملية في التحول الرقمي وأنظمة تخطيط موارد المؤسسات (ERP). قائد مثبت الكفاءة في تنفيذ SAP Business One وأنظمة الموارد البشرية وحلول إدارة الأساطيل. تشمل خبرتي بناء البنية التحتية لتقنية المعلومات وتطبيق مبادئ الصناعة 4.0 وفق معايير SIRI. ادرس حالياً ماجستير الذكاء الاصطناعي وتعلم الآلة في كلية والش.

Professional Experience

7+ years in digital transformation, ERP, and Industry 4.0

  1. IT Manager

    NAF Company · Al-Qassim, KSA

    Current

    • Implemented Industry 4.0 technologies, streamlining core business processes, reducing manual tasks by an estimated 20%, and boosting daily production by 15%.
    • Directed end-to-end implementation of SAP Business One (B1), MES, HR, and feed formulation systems, ensuring 100% accurate production data synchronization with administration.
    • Established company's IT infrastructure from inception, migrating critical services to the cloud and fortifying server security to achieve 99.9% uptime.
    • Developed and deployed custom SQL and Crystal Reports within SAP B1, providing leadership with real-time operational insights and supporting data-driven decisions.
    • Authored and enforced IT governance policies, ensuring full compliance with financial market regulations and modern cybersecurity standards.
    • Reduced IT operational costs by 15% through proactive renegotiation of vendor contracts and service level agreements (SLAs).
    • Managed a multi-functional team of 5 professionals across infrastructure, applications, and helpdesk, prioritizing rapid response times and fostering a security-first culture.
    • 20% Manual tasks reduced
    • 15% Production boost
    • 99.9% Uptime
    • 15% IT cost reduction
  2. IT Project Manager (Strategic Group Assignment)

    Sabk Aljusore · KSA

    • Directed full lifecycle implementation of SAP Business One, customizing the system to meet specific operational needs across multiple business units.
    • Served as the primary liaison between vendors, the project team, and stakeholders, maintaining project phases to ensure on-time delivery.
    • Developed a new data governance framework, emphasizing data integrity during the migration from legacy systems to SAP.
    • Created IT planning strategies, defined initial project scope, and identified future digital needs to support the company's long-term growth.
    • Managed a fleet management project, from physical equipment installation to system implementation and integration with the ERP system.
    • Multi-unit Business units onboarded
    • On-time Delivery
  3. Independent IT Consultant

    Independent IT Consultant & Project Specialist · Remote / KSA

    • Guided small and medium-sized businesses (SMEs) through digital transformation, converting traditional workflows into automated digital processes.
    • Designed and launched professional websites and web applications, ensuring high performance and alignment with client branding.
    • Executed comprehensive digital marketing strategies, including SEO optimization and managing ad campaigns to improve online visibility and ROI.
    • Set up enterprise communication and deployment solutions, configuring Outlook/Exchange environments and deploying applications to production servers.
    • Advised on technology stack selection, helping business owners identify and adopt cost-effective and scalable IT tools.
    • Provided end-to-end project management for various technical initiatives, from initial requirements gathering to final delivery and support.

Skills & Capabilities

A full-stack capability set from leadership to AI

Core Competencies

  • IT Project Management (PMP) 95%
  • IT Governance & Compliance 90%
  • Strategic Planning & Digital Transformation 92%
  • Budgeting & Cost Optimization 88%
  • Vendor & Stakeholder Management 90%
  • Team Leadership & Mentoring 90%

Technical Stack

  • SAP Business One (B1) 92%
  • MES & Industry 4.0 88%
  • Power BI 90%
  • SQL & Crystal Reports 88%
  • Python (Pandas, NumPy) 80%
  • Scikit-learn / TensorFlow / Keras 75%
  • HRMS & Fleet Management 85%
  • Web (PHP/HTML/CSS) & SEO 82%

Infrastructure & Security

  • Cloud Infrastructure & Migration 88%
  • Server Administration & Hardening 88%
  • Network Setup & Configuration 85%
  • Cybersecurity Standards 86%
  • Disaster Recovery & Business Continuity 85%

Where IT management meets AI

AI & Data Capabilities

Data-driven transformation — from the production line to the boardroom dashboard.

ML Pipeline

Build, train, and evaluate models with Scikit-learn / TensorFlow / Keras in Python.

import pandas as pd
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
from sklearn.metrics import f1_score

df = pd.read_csv('production_lines.csv')
X = df.drop(columns=['failure'])
y = df['failure']

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)
model = RandomForestClassifier(n_estimators=400, max_depth=12)
model.fit(X_train, y_train)

preds = model.predict(X_test)
print(f'F1: {f1_score(y_test, preds):.3f}')

Data Analytics & Power BI

SQL + Crystal Reports plumbed into Power BI dashboards for live operational insight.

-- SAP B1: daily output by line vs target
SELECT
  T0.U_LineCode      AS Line,
  CONVERT(date, T0.U_PostDate) AS Day,
  SUM(T0.U_Qty)      AS Produced,
  SUM(T0.U_Target)   AS Target,
  CAST(100.0 * SUM(T0.U_Qty) / NULLIF(SUM(T0.U_Target), 0) AS DECIMAL(5,2)) AS PctOfTarget
FROM [@MES_OUTPUT] T0
WHERE T0.U_PostDate >= DATEADD(day, -30, GETDATE())
GROUP BY T0.U_LineCode, CONVERT(date, T0.U_PostDate)
ORDER BY Day DESC, Line;

SAP B1 Integration

Real-time MES ↔ SAP B1 sync — production data flowing to admin with 100% accuracy.

// Service Layer push: post production receipt
const payload = {
  ProductionOrderId: order.id,
  CompletedQuantity: line.produced,
  PostingDate: new Date().toISOString(),
  WarehouseCode: 'FG',
};

const res = await fetch(`${SL}/InventoryGenEntries`, {
  method: 'POST',
  headers: { 'Content-Type': 'application/json', Cookie: session },
  body: JSON.stringify(payload),
});
if (!res.ok) await reconcile(order, await res.json());

Industry 4.0

SIRI-aligned rollout — manual tasks down 20%, production up 15%, governance enforced.

# IoT telemetry — anomaly detection on conveyor vibration
from river import anomaly

detector = anomaly.HalfSpaceTrees(n_trees=25, height=8, window_size=250)
for reading in stream:
    score = detector.score_one(reading)
    detector.learn_one(reading)
    if score > 0.8:
        emit_alert(line=reading['line'], severity='high', score=score)

Projects & Case Studies

Real digital-transformation work with measurable outcomes

2024 ·NAF Company

Industry 4.0 Transformation at NAF Company

IT Manager / Project Lead

Streamlined core business processes — manual tasks down ~20%, daily production up 15%, real-time admin/production sync at 100% accuracy.

  • -20%Manual tasks
  • +15%Daily production
  • 100%Data sync accuracy
  • 99.9%Uptime
  • SAP Business One
  • MES
  • Industry 4.0
  • SIRI
  • Cloud
  • SQL
  • Crystal Reports

2024 ·Sabk Aljusore

SAP B1 Group-Wide Rollout — Sabk Aljusore

IT Project Manager

Customized SAP B1 across multiple business units with a new data governance framework safeguarding integrity during legacy migration.

  • MultiBusiness units
  • On-timeDelivery
  • SAP Business One
  • Data Governance
  • Legacy Migration

2024 ·Sabk Aljusore

Fleet Management End-to-End Implementation

Project Manager

From physical equipment installation through system implementation and full ERP integration.

  • ERP-linkedIntegration
  • Fleet Management Systems
  • ERP Integration
  • IoT

2023 ·NAF Company

Cloud Migration & Server Hardening

IT Manager

Migrated critical services to the cloud, hardened server security, achieved 99.9% uptime.

  • 99.9%Uptime
  • Cloud
  • Server Hardening
  • Cybersecurity
  • Disaster Recovery

2018-2023 ·Various SMEs

SME Digital Transformation Portfolio

Independent IT Consultant

Converted traditional workflows into automated digital processes for multiple SMEs — websites, SEO, comms, deployment.

  • Web Development
  • SEO
  • Outlook/Exchange
  • Digital Marketing

Professional Certifications

Verified by accredited issuers

Project Management Professional (PMP)

Issued by Project Management Institute (PMI)

Power BI

Issued by 365 Financial Analytics

SAP Business One (B1)

Issued by Ejada



Education

Master of Science in Artificial Intelligence and Machine Learning (In Progress)

Walsh College

Bachelor of Information Technology

University of Modern Sciences

Book a 30-min consultation احجز استشارة 30 دقيقة

Pick a slot that works for you. Free first call to discuss your project — IT strategy, ERP rollout, AI/ML evaluation, or digital transformation. اختر الموعد الذي يناسبك. الاستشارة الأولى مجانية لمناقشة مشروعك — استراتيجية تقنية المعلومات، تطبيق ERP، تقييم الذكاء الاصطناعي، أو التحوّل الرقمي.

Reserve a slot → احجز موعداً ←

No charge · No obligation · Confirms instantly بدون رسوم · بدون التزام · تأكيد فوري

From the Blog

  • Top 5 Data Analysis Tools in 2025

    Top 5 Data Analysis Tools in 2025

    Data analysis tools are software applications and utilities that professionals use to identify patterns in data to provide valuable insights, predictions, and informed decision-making. Essentially, they are a collection of charts, graphs, and custom maps designed to gather, analyze, and present data for various purposes. Selecting the right data analysis tool can significantly contribute to…

Let’s Connect

Open to IT leadership, digital transformation consulting, ERP, AI/ML opportunities