ADVERTISEMENT
970x220

PH rejects 'major power rivalry' narratives on WPS in UNGA

Published Sep 29, 2024 04:38 am

The Philippines rebuffed assertions that “major power rivalry” is at play in the South China Sea disputes because these diminish the rights of claimant-countries “to secure their own future.”

 

Manalo_UNGA1.jpg
Foreign Affairs Secretary Enrique Manalo delivers the Philippine statement at the 79th Session of the United Nations General Assembly (UNGA) in New York City on Saturday, Sept. 28, 2024. (UNIO, New York PM photo)

 

Department of Foreign Affairs (DFA) Secretary Enrique Manalo made the remarks when he delivered the Philippine National Statement at the General Debate of the 79th Session of the United Nations (UN) General Assembly in New York City.
 

“We do not accept narratives depicting the South China Sea as a theater of major power rivalry because they all ignore what is an essential truth: all states in this region have a right to determine their own destiny and secure their own future,” he said.
 

He cited the “irresponsible and dangerous actions” in the West Philippine Sea as he underscored the importance of all member-states’ adherence to the rule of law for the UN to be able to do its role of resolving and managing disputes.
 

Without naming China, the DFA chief recounted the Philippines’ experiences in seeking to resolve regional disputes through the use of multilateral approaches provided for by the UN.
 

“The International Court of Justice (ICJ), as a principal organ of the United Nations, together with other international judicial and legal bodies, advances the rule of law. They uphold the primacy of resolving international disputes by peaceful means, not by the threat or use of force,” he said.
 

The Philippines, he added, coursed through the 1982 UN Convention on the Law of the Sea its present maritime and territorial issues.
 

He stressed that “the binding 2016 Arbitral Award on the South China Sea constitute the foundation of our policy on the South China Sea.”
 

“The Award declares that claims exceeding entitlements beyond the limits of UNCLOS have no legal basis,” the DFA chief furthered.
 

“Despite irresponsible and dangerous actions against our legitimate activities within our own waters and Exclusive Economic Zone, the Philippines remains committed to diplomacy and other peaceful means to settle disputes.”
 

Manalo expressed the Philippines’ commitment to abide by the UN Charter and the Manila Declaration on the Peaceful Resolution of Disputes “in asserting our sovereignty, sovereign rights and jurisdiction in the South China Sea.”
 

But for multilateralism to thrive against a backdrop of crises and challenges the world is facing, Manalo maintained that “all states must adhere to the rule of law” and that such times “offer opportunities for reinforcing a rules-based international order.”
 

UN member-states, he added, “must invest fully” in the UN institutions of ICJ, the Permanent Court of Arbitration (PCA), and other international judicial and legal bodies.
 

“The growing volume and variety of cases brought before the IC] and the Permanent Court of Arbitration signify the global trust and confidence in their role in peaceful dispute resolution,” the DFA secretary said.
 

“The use of force and threat of use of force to resolve disputes has no place in our world.”
 

China, which claims almost the entire South China Sea up to the exclusive economic zones (EEZs) of neighboring countries, has harassed and bullied Philippine vessels in its own EEZs.
 

In 2016, the Philippines was awarded with the Arbitral Tribunal victory that invalidated the basis of China’s sweeping claims, but Beijing continues to reject this and frowned upon Manila’s step to strengthen its defense ties with old and new allies.

Related Tags

New York City United Nations General Assembly Enrique Manalo South China Sea
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.