ADVERTISEMENT

DTI aims to match record FDIs of $10.5 billion in 2021 this year

Published Apr 24, 2023 09:46 am
The Department of Trade and Industry (DTI) said it will try to match this year the record $10.5 billion foreign direct investments (FDI) registered by the Philippines in 2021. “That’s what we are aspiring for,” said DTI Secretary Alfredo E. Pascual during a television interview when asked if the 2021 FDI, the country’s highest recorded FDI inflow, can be matched this year.  From  a record high in 2021, the country’s FDI slowed down to $9.2 billion in 2022. The DTI chief’s aspiration for a repeat of the 2021 all-time high FDI is largely anchored on the agency’s bullish investment growth target for the year. The Board of Investments (BOI), DTI’s investment arm, was originally projecting for P1 trillion FDI target this year, but raised the goal to P1.5 trillion after hitting a quarter of its target. According to Pascual, FDIs this year would be driven largely by investments in renewable energy projects boosted by the revised Implementing Rules and Regulations of the RE Act.  The amendment removes the nationality restrictions on the exploration, development, and utilization of renewable energy resources such as solar, wind, biomass, ocean or tidal energy. Other laws that are expected to help encourage foreign investments to the Philippines include the Revised Trade Liberalization Act, Foreign Investments Act, and Public Service Act. In addition, Pascual cited the issuance of Executive 18 providing a green lane in the processing of documents for investments in strategic industries from the national level down to the local government units. Pascual said this is part of the government’s efforts at further easing doing business in the country. The BOI is not just the main source of new FDI but project registration from other investment promotion agencies as well, such as the Philippine Economic Zone Authority, Bases Conversion and Development Authority, Clark Special Economic Zone and Freeport, other special ecozones and freeports of the government. In  terms of nationality, the Pascual expects electronics and electric vehicle projects from the US. He also expressed strong optimism about Chinese projects to finally materialize in the third quarter if not second quarter this year. With the entry of US firm Cerberus for the bankrupt Hanjin shipyard in Subic Freeport, the DTI chief expects the US firm to pursue further developments in the country. He noted of US telecommunications firms relocating out of China, including subsea cable projects to the Philippines, benefitting hyperscalers and data centers. He expressed hope for global logistics firm FedEx, which operates one of its hubs in Clark, to further expand its operations. The most likely to expand in the country are those existing foreign investors in the country, the likes of Procter & Gamble that expanded its diaper manufacturing line for exports. Procter & Gamble (P&G), the world’s leading consumer goods company, completed its a new diaper manufacturing line worth P864 million to expand production capacity at its current facility in Cabuyao, Laguna for export to South Korea and Vietnam. The Pampers Pull-up Pants line is P&G Philippines’ biggest of three expansion projects in the country for 2022-2023. It is also one of the most advanced manufacturing lines for P&G in Asia. “We have our selling points,” he said reiterating the country’s strategic location in the region, a huge consumer population, and a very young and dynamic workforce. Thus, he called for the need to upskill and reskill students to attune to the skills needed by industries and the digital economy. The Regional Comprehensive Economic Partnership (RCEP), which will take effect on June 2 this year, is also expected to help boost the country’s attractiveness as an investment destination. Earlier Pascual highlighted some concessions the Philippines got from partner countries such as China, South Korea and Japan.

Related Tags

FDIs renewable energy DTI Secretary Alfredo E. Pascual
ADVERTISEMENT
.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; } .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; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); 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); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); 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]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.