Regional workshop held on role of technology in combating corruption

Chairman of the Jordan Integrity and Anti-Corruption Commission Muhannad Hijazi and UNDP Resident Representative Randa Abul-Hassan during a workshop on Wednesday (Petra photo)

AMMAN — Chairman of the Jordan Integrity and Anti-Corruption Commission (JIACC) Muhannad Hijazi on Wednesday said that modern technology plays a "distinguished" role in preventing and combating corruption.

Speaking during the opening ceremony of a regional workshop on the role of technology in preventing and combating corruption, Hijazi said that corruption crime detection requires "advanced" technology to prove their occurrence, which expedites procedures and contributes to the accurate completion of tasks within an acceptable timetable away from bureaucratic procedures that are often "a fertile environment for committing corrupt violations".

He noted that the JIACC, in implementation of the Royal vision, has been integrating the available technology to detect corruption crimes, the Jordan News Agency, Petra, reported. 

The chairman noted that the JIACC has launched a digital support directorate, which provides technical assistance and digital intelligence and helps law enforcement teams to retrieve data.

On the government's role in supporting JIACC’s efforts in this field, he said that the necessary funds have been allocated to its several e-transformation enterprises, primarily the Digital Intelligence Project aimed to follow up on the compliance of public institutions with national integrity standards and following up on wealth growth.

He also referred to JIACC's "deep-rooted" cooperation and expertise transfer with the United Nations Development Programme (UNDP). He lauded the project that the Jordan Customs Department intends to implement, titled "The Single Window" to unify procedures, connected by smart programmes that speed up transactions and facilitate procedures for service recipients.

UNDP Resident Representative Randa Abul-Hassan said that combating corruption and strengthening the rule of law are UNDP's priorities in Jordan and the region.

Abul-Hassan noted that this workshop focuses on exchanging modern expertise on technology integration to combat corruption, which comes at "a very appropriate time for Jordan and the participating countries".

She said that technology plays an important role in combating corruption, and contributes to the transparency, availability and accessibility of official data, which helps governments and the public monitor efficiency and integrity of services and enhance confidence in the country's political life.

Corruption is a “cross-border phenomenon”, as its local practices often leave impacts at regional and global levels, which makes it necessary to seriously seek to integrate technology to counter this challenge in a proactive manner, while benefiting from regional cross-border cooperation, coordination and knowledge exchange at the regional level, she added.

UNDP lauds the “huge potential” of modern technology in achieving sustainable development, she said, adding that its support for comprehensive digital transformation pushes digital technologies integration to solve "thorny" development challenges discussed by the workshop on the course of two days.

Eight Arab countries participated in the workshop with 60 representatives, including 40 who attended in person and 20 through videoconference.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });