ADVERTISEMENT
970x220

Ayala Land unit secures P2.4-billion loan for data center

Published Jul 16, 2024 12:34 am

By JAMES A. LOYOLA

A-FLOW Properties I Corp. (A-FLOW), a joint venture between AyalaLand Logistics Holdings Corp. (ALLHC) and FLOW Digital Infrastructure, has secured a P2.4-billion loan from the Land Bank of the Philippines (Landbank).

A-FLOW said it had signed the loan agreement representing Tranche 1 of a P10.8 billion 10-year loan intended to develop the initial phase of the first A-FLOW data center campus in Biñan, Laguna. 

 

2024.07.15 PR PHOTO_A-FLOW signs P2.4-billion Tranche 1 Loan of aP10.8-billion 10-Year Facility with LANDBANK.png
In the photo from left are Ayala Land, Inc. (ALI) Vice President and Treasurer Jose Eduardo A. Quimpo II, ALI Senior Vice President, Chief Finance Officer and Chief Compliance Officer Augusto D. Bengzon, ALI President and Chief Executive Officer (CEO) and AyalaLand Logistics Holdings Corp. (ALLHC) Chairman Anna Ma. Margarita B. Dy, FLOW Digital Infrastructure CEO and A-FLOW Properties I Corp. (A-FLOW) President Amandine Wang, ALI Senior Vice President, ALLHC President and CEO and A-FLOW Chairman Robert S. Lao, Land Bank of the Philippines (LANDBANK) President and CEO Ma. Lynette V. Ortiz, LANDBANK Executive Vice President and National Development Lending Sector Head Ma. Celeste A. Burgos, LANDBANK Vice President Lucila E. Tesorero and LANDBANK Vice President and Corporate Banking Department 1 Head Ann Marijell B. Ong.

 

“The signing of the loan facility agreement underscores the mutual commitment to advancing the nation’s digital infrastructure and supporting the Philippines’ transition towards a more digitally integrated economy,” the company said.

Currently under construction, the 6MW-IT capacity Phase 1A of the three-building data center campus project in Laguna is targeted to be ready for service by the end of the year.

“This agreement marks a significant step forward in our shared commitment to develop the largest carrier-neutral data center campus in the Philippines,” A-FLOW President Amandine Wang said. 

She added, “we are excited to build an ecosystem to attract a combination of international hyperscale customers and local enterprise customers.”

LANDBANK President and CEO Ma. Lynette V. Ortiz said that "beyond our work with various government agencies, we recognize that partnering with key players like A-FLOW is essential for advancing national development. 

“In this era of rapid digitalization, we are likewise ready to drive investments into the local data center market, alongside other sectors contributing to our nation’s technological progress,” she said.

Ortiz also noted that “this is the first data center project financed by LANDBANK, and with this new partnership, we are confident that this project will yield significant economic benefits.”

ALI President and CEO and ALLHC Chairman Anna Ma. Margarita B. Dy said digital transformation, cloud computing, and the rise of artificial intelligence are technologies that require robust and scalable data center solutions. 

“Ayala Land is proud to be participating in this new opportunity leveraging our land and our lucrative abilities to contribute to the country’s move towards a digital economy,” Dy said.

She added that “like any other infrastructure project, capital is key. So, we thank LANDBANK for the P10.8 billion loan facility to A-FLOW, a critical enabler for this project.”

A-FLOW’s partnership with LANDBANK enables both companies to capitalize on each other’s strengths, marking a shared vision of fostering innovation and sustainable growth. 

This milestone collaboration underscores the importance of public-private partnerships in serving the country and achieving the nation’s development goals.

Related Tags

Anna Ma. Margarita B. Dy Ayala Land Inc. LandBank of the Philippines (LANDBANK) AyalaLand Logistics Holdings Corp. (ALLHC) Ma. Lynette V. Ortiz
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.