- Board of Trustees
- Academics
- Academic Support Services
- Administration Department
- Center for Continuing Learning
- Computing Department
- Corporate Affairs Office
- Engagement & Impact Department
- Finance Department
- Future Digital Centre
- IRQA Department
- Library Department
- Marketing, Public Relations and Admissions Department
- Media and Communications Department
- Office of the President
- Office of Vice President - Academic Operations
- Office of Vice President - IRQA
- Office of the Dean (School of Business)
- Office of the Dean (School of Computing)
- Office of the Head - General Education
- Research Department
- Sports, Health & Safety
- Student Services Department
- Talent Empowerment Department
- Maintenance Department
- External Security
Featured
Dr. Kakul Agha
Associate Professor, Discipline Leader-Human Resource Management

dl.hrm@hu.ac.ae,
kakul.agha@hu.ac.ae
Ext: 7201
Office: FB-01
{source}<?php
defined('_JEXEC') or die;
?>
<!-- Include Chart.js Library -->
<script src="/media/scopus/chart.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Fetch the author_id dynamically from the article or page
var authorId = document.getElementById('authorId')?.textContent || '';
// Global variable to hold the chart instance
let researchActivityChartInstance;
// Fetch data from fetch_scopus_metrics.php
fetch(`/media/scopus/fetch_scopus_metrics.php?author_id=` + encodeURIComponent(authorId))
.then(response => response.json())
.then(data => {
if (data && data.labels && data.outputs) {
// Update the metrics container dynamically
var scopusDataContainer = document.getElementById('scopusData');
scopusDataContainer.innerHTML = `
<div class="metrics-container">
<div class="metric-card"><strong>h-index:</strong> <span class="metric-value">${data.hIndex}</span></div>
<div class="metric-card"><strong>Citations:</strong> <span class="metric-value">${data.citations}</span></div>
<div class="metric-card"><strong>Publications:</strong> <span class="metric-value">${data.publications}</span></div>
</div>
`;
// Render the chart
var canvasElement = document.getElementById('researchActivityChart');
if (canvasElement) {
// Clear the existing chart instance if it exists
if (researchActivityChartInstance) {
researchActivityChartInstance.destroy();
researchActivityChartInstance = null; // Ensure no dangling reference
}
// Reset the canvas element to clear previous drawings
canvasElement.parentNode.replaceChild(canvasElement.cloneNode(true), canvasElement);
// Re-select the newly cloned canvas element
canvasElement = document.getElementById('researchActivityChart');
// Create a new chart instance
researchActivityChartInstance = new Chart(canvasElement, {
type: 'bar',
data: {
labels: data.labels, // Years
datasets: [{
label: 'Research Outputs',
data: data.outputs, // Outputs
backgroundColor: '#555', // Gray color for bars
borderWidth: 0,
barThickness: 20,
maxBarThickness: 20,
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
tooltip: {
callbacks: {
label: function (context) {
return `${context.label}: ${context.raw} research outputs`;
}
}
},
legend: {
display: false // No legend
}
},
scales: {
x: {
grid: { display: false }, // No gridlines
ticks: {
display: true, // Show all x-axis labels
font: { size: 12 }, // Adjust font size
color: '#555' // Gray color for labels
}
},
y: {
grid: { display: true }, // Show gridlines
ticks: {
display: true, // Show y-axis labels
font: { size: 12 }, // Adjust font size
color: '#555' // Gray color for labels
}
}
}
}
});
} else {
console.error('Canvas element not found: #researchActivityChart');
}
} else {
document.getElementById('scopusData').innerHTML = 'Unable to load data.';
}
})
.catch(error => {
console.error('Error fetching data:', error);
document.getElementById('scopusData').innerHTML = 'Error fetching data.';
});
});
</script>{/source}
defined('_JEXEC') or die;
?>
<!-- Include Chart.js Library -->
<script src="/media/scopus/chart.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
// Fetch the author_id dynamically from the article or page
var authorId = document.getElementById('authorId')?.textContent || '';
// Global variable to hold the chart instance
let researchActivityChartInstance;
// Fetch data from fetch_scopus_metrics.php
fetch(`/media/scopus/fetch_scopus_metrics.php?author_id=` + encodeURIComponent(authorId))
.then(response => response.json())
.then(data => {
if (data && data.labels && data.outputs) {
// Update the metrics container dynamically
var scopusDataContainer = document.getElementById('scopusData');
scopusDataContainer.innerHTML = `
<div class="metrics-container">
<div class="metric-card"><strong>h-index:</strong> <span class="metric-value">${data.hIndex}</span></div>
<div class="metric-card"><strong>Citations:</strong> <span class="metric-value">${data.citations}</span></div>
<div class="metric-card"><strong>Publications:</strong> <span class="metric-value">${data.publications}</span></div>
</div>
`;
// Render the chart
var canvasElement = document.getElementById('researchActivityChart');
if (canvasElement) {
// Clear the existing chart instance if it exists
if (researchActivityChartInstance) {
researchActivityChartInstance.destroy();
researchActivityChartInstance = null; // Ensure no dangling reference
}
// Reset the canvas element to clear previous drawings
canvasElement.parentNode.replaceChild(canvasElement.cloneNode(true), canvasElement);
// Re-select the newly cloned canvas element
canvasElement = document.getElementById('researchActivityChart');
// Create a new chart instance
researchActivityChartInstance = new Chart(canvasElement, {
type: 'bar',
data: {
labels: data.labels, // Years
datasets: [{
label: 'Research Outputs',
data: data.outputs, // Outputs
backgroundColor: '#555', // Gray color for bars
borderWidth: 0,
barThickness: 20,
maxBarThickness: 20,
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
tooltip: {
callbacks: {
label: function (context) {
return `${context.label}: ${context.raw} research outputs`;
}
}
},
legend: {
display: false // No legend
}
},
scales: {
x: {
grid: { display: false }, // No gridlines
ticks: {
display: true, // Show all x-axis labels
font: { size: 12 }, // Adjust font size
color: '#555' // Gray color for labels
}
},
y: {
grid: { display: true }, // Show gridlines
ticks: {
display: true, // Show y-axis labels
font: { size: 12 }, // Adjust font size
color: '#555' // Gray color for labels
}
}
}
}
});
} else {
console.error('Canvas element not found: #researchActivityChart');
}
} else {
document.getElementById('scopusData').innerHTML = 'Unable to load data.';
}
})
.catch(error => {
console.error('Error fetching data:', error);
document.getElementById('scopusData').innerHTML = 'Error fetching data.';
});
});
</script>{/source}
Research activity per year
Dr. Kakul Agha, holds a Doctor of Philosophy in Business Administration (PhD) from Aligarh Muslim University India, Master's degree in Business Administration (MBA-HR), Master's degree in Public and Personnel Management from Osmania University India, and PG Diploma in Higher Education Professional Practice from Coventry University, UK. She is a Fellow at Higher Education Academy (HEA), UK. Dr Agha is a Certified Trainer on Happiness and Work-life balance having 3 certifications from University of Berkeley, US. She runs a podcast Channel “The Business Bubbles” on Spotify which has brief tracks on management and business concepts.
Dr. Agha has more than two decades of work experience in business schools across India, the Sultanate of Oman, and the UAE. She has experience in teaching and administrative positions along with research guidance, student club management, organizing academic events, and academic advising.
Dr. Agha has published research papers in refereed international journals, book chapters, and case studies. Her areas of interest include work-life balance, leisure, and happiness, leadership, and management science.
Publications
-
- Agha, K., Alzoubi, H. M., & Alshurideh, M. T. (2021, June). Measuring Reliability and Validity Instruments of Technologically Driven Cognitive Intrusion Towards Work-Life Balance. In The International Conference on Artificial Intelligence and Computer Vision (pp. 601-614). Springer, Cham.
- Agha K. (2019). Anti-Money Laundering Policies and Practices at Al Ghurair International Exchange. Pearl Initiative Gulf Region-Wide Student Case Study Competition. ISBN - 978-9948-35-107-8. Pp. 30-36.
- Agha, K. and Khan, S. (2018). Work Life Balance among Teachers Employed in Higher Education in Oman: Emerging Issues & Challenges. The 7th International Research Symposium of the SGBED Proceedings, 321-328. ISBN: 13 978-0-9797659-4-0.
- Haider, M. and Agha, K. (2018). Factors affecting work life balance and Job Satisfaction of Female employees-A comparative study of teachers in India and UAE. The 7th International Research Symposium of the SGBED Proceedings, 314-320. ISBN: 13 978-0-9797659-4-0.
- Kolachi, N and Agha, K (2018). Flying between Two Giants: A Case of Air Arabia. Reference no. 318-0286-1 (The Case Centre)
- Agha, K. (2017). Successful Practices of an Innovation Culture: A Theoretical Perspective. Hamdan bin Mohammed Smart University – Quality and Business Management Conference Proceedings, 357-364. ISSN: 2414-6110.
- Agha, K., Azmi, FT., and Irfan, A. (2017). Work-Life Balance and Job Satisfaction: An Empirical study Focusing on Higher Education Teachers in Oman. International Journal of Social Science and Humanity, 7(3), 164-171. Doi: 10.18178/ijssh.2017.V7.813. ISSN: 2010-3646.
- Agha, K., Gopakumar, K., & Poojary, N. (2014). Strategies of providing feedback on student work: Enhancing students experience at Middle East College, Sultanate of Oman. International Journal of Education and Research, 2(6), 229-242.
- Agha, K. (2014). The coping-up strategies used by staff to integrate family and work lives: A case of Middle East College, Oman. International Conference on Applied Information and Communications Technology (pp. 785-790). Muscat: Elsevier. ISBN:978-93-510-72850.
- Khan, S., & Agha, K. (2013). Dynamics of Work life Balance at the Firm Level: Issues and Challenges. International Journal of Management Policy and Practice, 14(4), 103-114.
- Amitha, K. N., Akthar, A., Brindha, N., Agha, K., & Poojary, N. (2013). Automotive Brand in Sultanate of Oman: Customers Perspective.Journal of Supply Chain and Customer Relationship Management,2013, 1-8.
- Agha, K. (2011). ICT Interventions and Workforce Flexitime: An exploratory study at MECIT, Oman. International Conference on Applied Information Communications Technology (pp. 57-62). Muscat: Allied Publishers. ISBN:978-81-8424-738-1.
- Agha, K. (2010). Professional Development of Teachers in Higher Education Institutions in Oman: Formal Qualification vs Professional Training. International Conference on Higher Education and Quality Assurance. Muscat: Mazoon College and Missouri University of Science and Technology, USA.
- Agha, K. (2007). Key Performance Indicators: A successful tool for Performance Management in the Education Industry in Sultanate of Oman. Journal of Management and Research, 1(3/4), 135-143. Retrieved from http://aima-ind.org/ejournal/ArticleDetails.asp?curr=135
- Agha, K. (2007). Do organisational/departmental Key Performance Indicators (KPIs) really assess the performance of Academic staff in Higher Education Industry? Challenges and difficulties faced by the HR department. International Colloquium on Business and Management. Bangkok: ICBM. doi:http://www.icbmbangkok.com
- Agha, K. (2004). BPO: The precursor of digital firms. UN World Forum of Information Society. Tunisia: World Summit on IS. Retrieved from http://www.irfd.org/events/wf2005/papers/agha_kakul.pdf
- Agha, K., Azmi, FT., and Khan, S.A. (2017). Work-life Balance: Scale Development and Validation. In The Work Family Balance in Light of Globalization and Technology, Cambridge Scholars Publishing, United Kingdom, Chapter 5, pp. 109-130. ISBN: 1-4438-7337-3.
- Agha, K. (2015). Adopting the Blue Ocean Strategy for New Market Creation. In Strategies for Modern Management Era, 9-14. Bengaluru: Archers and Elevators Publishing House. ISBN:978-93-85640-03-2
- Naqvi, S., Jesudasan , F. T., Agha, K., & Mahrooqi, R. (2015). Second Language Acquisition and the Impact of First Language Writing Orientation. In Methodologies for Effective Writing Instruction in EFL and ESL Classrooms, pp. 28-43. Hershey, PA: IGI Global. doi:10.4018/978-1-4666-66191.ch003
- Agha, K. (2013). Supporting Work life Balance for Enhanced Job Satisfaction: Strategies for Organisations. In Connoisseur Strategies for Global Business Management Trends and Techniques, pp. 61-64. Bengaluru: Archers and Elevators Publishing House. ISBN:978-93-83241-04-0.
- Agha, K. (2011). Branding in Gloablised Era: Innovative Strategies for Omani Brand Owners. In The 21st Century Consumers: A Behavioural Perspective, 157-167. Bengaluru: Global Vision Publishing House. Retrieved from http://globalvisionpub.com/globaljournalmanager/pdf/1390559848.pdf