ADVERTISEMENT

The spirit of giving

Published Dec 5, 2024 10:31 pm

My Filipino-American friend AR, who has spent most of his adult life on the West Coast and adopted the American way, raised an eyebrow as I explained the reasoning behind the Philippines' early observance of the Yuletide season.

While the holiday season starts shortly after Thanksgiving Day in the US, here in the Philippines, we start hearing Christmas songs on the radio on the first day of September, heralding the beginning of what we call the "Ber months." Honestly, I can't recall when this four-month celebration that ends on the First Sunday of January, the Feast of the Three Kings, actually started.

Well, to each his own. And yes Virginia, it's only 18 sleeps to go before Christmas Eve, the most awaited time when we share love, hope, and gifts with our families, relatives, and friends.

While we're on the topic, allow me to share this story about Christmas. Based on historical records, Christmas was brought to the Philippines almost two centuries before the Spaniards introduced Catholicism.

It's said that in 1324, a Franciscan missionary, Father Odorico from Pordenone, Italy, survived a shipwreck and brought the joy of celebrating the birth of the Savior to St. James Parish Church in Bolinao, Pangasinan. The church has a marker stating it's the site of the first Christian mass and the first Christmas celebration in the country.

As the song goes, this most wonderful time of the year is the season of giving. Truly, the charm of the holiday season is contagious. It is within this context of sharing and giving that I mention a buzzword I heard in banking circles: "amortization moratorium" for teachers.

I'm referring to the proposal of Education Secretary Juan Edgardo "Sonny" Angara for the Chamber of Thrift Banks (CTB) to share holiday cheer with teachers by giving them a one-month moratorium on their loan amortization.

CTB loan exposure to teachers is estimated to be between P800 billion and P850 billion, with an average term of four to five years. Based on the outstanding amount, the monthly amortization could reach roughly P15 billion.

The former senator is also proposing that the Rural Banks Association of the Philippines (RBAP) grant a three-month moratorium on the monthly amortization of teachers in regions affected by the recent typhoons.

However, the moratorium could mean an opportunity lost for these banks. It will also affect their compliance with financial regulations mandated by the Bangko Sentral ng Pilipinas (BSP).

Foregoing amortization creates a cash flow situation that may impact their ability to meet the BSP's prudential minimum liquidity ratio (MLR) of 20 percent, which is expressed as a percentage of a bank's eligible stock of liquid assets to its total qualifying liabilities.

This comes after the monetary authorities, nearly three months ago, took a hard stance on the request of CTB to lower the MLR to 16 percent, on par with RBAP, to further boost lending to micro, small, and medium enterprises.

After consultations and necessary calculations, the latest I heard is that the CTB, which includes savings banks, private development banks, and stock savings and loan associations, has conditionally agreed to a one-month moratorium.

Firstly, it will not be across the board, but only in areas affected by the typhoons. Secondly, they propose a financial literacy program for teachers, knowledge they can pass on to their children and students.

 “The recommendation of the Chamber is a one month moratorium. It’s not across the board but only in areas affected by the recent typhoons and to be implemented in January,” shared an A1 but muted source

As long as the CTB member-banks can withstand this temporary dent in their cash flow, I support the financial flexibility given to our educators this season to soften the impact of the devastation caused by the recent typhoons.

Talkback to me at [email protected]

Related Tags

FIL C. SIONIL
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.