Green and Sustainable Trade Financing (2024)

  • DBS Ideal,
  • Financial Institutions,
  • Solutions,
  • Cash,
  • Digital Exchange

');*//*$(themeRecentSearchId).append('

Recent SearchesClear History

');*/for(var i = recentSearchData.length - 1; i >= 0; i--){var recentSearchId="recent"+i;var recentSearchValue=recentSearchData[i];$(themeRecentSearchId).find('table tbody').append('

' + recentSearchValue + '

');if(i == recentSearchData.length - recentSuggestLength){break;}}for(var i = recentSearchData.length - 1; i >= 0; i--){var recentSearchId="#recent"+i;var recentSearchValue=recentSearchData[i];/*$(recentSearchId).on("click", { searchKey: recentSearchValue }, routeToResults);*/$(recentSearchId).on("click", { 'recentSearchValue': recentSearchValue }, function(e){$(searchInputId).val(e.data.recentSearchValue);console.log("DEBUG recentSearchLists recentSearchId::", recentSearchId, " recentSearchValue::", recentSearchValue);hideSearchHistory();setTimeout(function() { suggestSearchLists(); }, 300);});if(i == recentSearchData.length - recentSuggestLength){break;}}}else {console.log("DEBUG recentSearchLists no search results");/*$(themeRecentSearchId).append('

');*//*$(themeRecentSearchId).append('

Recent SearchesClear History

');*/$(".popular-searches").css("display","none");$(themeRecentSearchId).find('table tbody').append('

Your search history is empty.

');}}/*}*/}function suggestSearchLists(){if(enablePredictiveSearch === "true"){/*$(themeSuggestedSearchId).empty();$(themeSuggestedSearchId).hide();*/var inputValue=A.one(searchInputId).val();var searchKeywordLength= $(searchInputId).val().replace(/\s/g,'').length;if(searchKeywordLength > 0){var siteName = 'corporate-sg-en';console.log("SiteName" + siteName);recentSuggestAjaxURL = recentSuggestAjaxURL.replace("web/"+siteName+"/" , "");// addSearchHistory(inputValue);A.io.request(recentSuggestAjaxURL,{dataType: 'json',sync:true,method:'POST',data:{_corporateportalsearch_searchKey:inputValue,_corporateportalsearch_cmd:"suggest"},on: {success:function(){var data=this.get('responseData');autoCompleteData=data;console.log("suggestSearchValue::"+JSON.stringify(autoCompleteData)); $(themeSuggestedSearchId).empty();$(".popular-searches").show(); if(autoCompleteData){$(themeSuggestedSearchId).append('

');console.log("suggestions::"+autoCompleteData);for(var i = 0; i < autoCompleteData.length; i++){var suggestSearchValue=autoCompleteData[i].resultTitle;var suggestSearchId="suggest"+i;$(".popular-searches").css("display","none");if(autoCompleteData[i].resultDesc && autoCompleteData[i].resultDesc.length > 0) {$(themeSuggestedSearchListId).append('

\

'+ suggestSearchValue +'

\

'+[autoCompleteData[i].resultDesc]+'

\

    ' + categoryStringToAppend(autoCompleteData[i].resultCategory) +'

\

');} else {$(themeSuggestedSearchListId).append('

\

'+ suggestSearchValue +'

\

    ' + categoryStringToAppend(autoCompleteData[i].resultCategory) +'

\

');} if(i == searchSuggestLength){ break; }}if (autoCompleteData.length) {$(themeSuggestedSearchId).append('');A.one(themeSearchViewAll).on('click',function(){validateAndSubmitSearch();});}for(var i = 0; i < autoCompleteData.length; i++){ var suggestSearchId="#suggest"+i; var suggestSearchValue=autoCompleteData[i].resultTitle; $(suggestSearchId).on("click", { searchKey: suggestSearchValue, actionType: 'Suggested' }, routeToResults); if(i == searchSuggestLength){ break; }}$("#suggested-results").show();}}}});}}}function initialRecentSearchClick() {if ($(searchInputId).val().length > 0) {$(searchInputId).val('');$(searchInputId).focus();$(themeSuggestedSearchId).empty();$(themeSuggestedSearchId).hide();$(".popular-searches").show();$('.search-field.web-search ~ .btn-close-history i').attr("class", "icon ico-clock-3-line");$('.search-field.web-search ~ .btn-search i').attr("class", "icon ico-search");$(themeRecentSearchButton).css("color", "silver");} else {setTimeout(function() { recentSearchLists(); }, 300);}}$(themeDesktopSearchBtnCloseHistory).on('click',function(){initialRecentSearchClick();}); $(searchInputId).keypress(function(e) { var searchKeyword=$(searchInputId).val(); if(e.which == 13) { if(validateSearchKeyword(searchKeyword)){// addSearchHistory(searchKeyword); var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword); window.location.href = redirectUrl; } } });function routeToResults(event){var searchKeyword=event.data.searchKey;var actionType=event.data.actionType; matomoSearchList(actionType,searchKeyword);var searchKeywordLength=searchKeyword.length;var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword); window.location.href = redirectUrl;}function validateAndSubmitSearch() {var searchKeyword=$(searchInputId).val();if(validateSearchKeyword(searchKeyword)){// addSearchHistory(searchKeyword);var redirectUrl=resultsPageFullUrl+'&'+resultsPortletNameSpace+searchQueryParamUrl+'='+encodeURIComponent(searchKeyword);window.location.href = redirectUrl;}}if($(themeSearchIconSubmitId).length){A.one(themeSearchIconSubmitId).on('click',function(){validateAndSubmitSearch();});}function recentSearchLogic(){setTimeout(function() { recentSearchLists(); }, 300); $(themeSuggestedSearchId).empty(); $(themeSuggestedSearchId).hide();$(".popular-searches").show();$(themeRecentSearchId).show();}function suggestSearchLogic(){$(themeRecentSearchId).empty(); /*$(themeRecentSearchId).hide();*/hideSearchHistory(); /* $(themeSuggestedSearchId).show(); */setTimeout(function() { suggestSearchLists(); }, 300);}/* Adding the history item while the user stops typing */var typingTimer; //timer identifiervar doneTypingInterval = 500; //time in ms, 500 ms //on keyup, start the countdown$(searchInputId).on('keyup', function () { clearTimeout(typingTimer); typingTimer = setTimeout(doneTyping, doneTypingInterval);});//on keydown, clear the countdown $(searchInputId).on('keydown', function () { clearTimeout(typingTimer);});function doneTyping() {console.log("inside done typing in search",$(searchInputId).val());if($(searchInputId).val().length>=minQueryLenght){addSearchHistory($(searchInputId).val());}}/* END of the history item while the user stops typing */$('html').not(".search .dropdown-menu.show").click(function() { $(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeRecentSearchId).empty();$(themeSuggestedSearchId).empty();$(searchInputId).val('');$(".popular-searches").show(); }); $("#searchMenuButton").on("click",function() { $(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeSuggestedSearchId).empty();$(searchInputId).val('');$(".popular-searches").show(); });$(searchInputId).on('paste', function(e) { var copied = ""; if (isIE()) { copied = window.clipboardData.getData('text'); } else { copied = e.originalEvent.clipboardData.getData('text/plain'); } var searchCopyLength=copied.length; if(searchCopyLength >= minQueryLenght){ suggestSearchLogic(); }});function isIE() { var ua = window.navigator.userAgent; return ua.indexOf('MSIE ') > 0 || ua.indexOf('Trident/') > 0 || ua.indexOf('Edge/') > 0}/* A.one(themeSearchIconClose).on('click',function(){$(themeRecentSearchId).hide();$(themeSuggestedSearchId).hide();$(themeRecentSearchId).empty();$(themeSuggestedSearchId).empty();$(searchInputId).val('');}); */window.cutEventSearches = function(){ var searchKeyword=$(searchInputId).val(); var searchKeywordLength=searchKeyword.length; if(searchKeywordLength >= minQueryLenght){ suggestSearchLogic(); }}$(searchInputId).on('keyup', function(e) { var searchKeyword=$(searchInputId).val(); var searchKeywordLength=searchKeyword.length; if(searchKeywordLength >= minQueryLenght){ suggestSearchLogic(); } else {$(themeSuggestedSearchId).hide();$(".popular-searches").show(); }});var userRecentSearches = getSearchHistory();var userRecentSearchesKey = 'q';var themeRecentSearchButton = "#nav-bar .nav-bar-inner .header-navigation ul.header-menu li .search .dropdown-menu .search-group .btn-close-history .icon";var themeRecentSearchId = "#recent-results";var searchInputId="#search-input-field";function addSearchHistory(searchKeyword) {console.log("DEBUG addSearchHistory userRecentSearches before:: ", userRecentSearches);console.log("searchKeyword before adding to history",searchKeyword);var searchKeywordVar = searchKeyword;if(searchKeywordVar){console.log("inside if searchKeywordVar",searchKeywordVar);for( var i = userRecentSearches.length-1; i>=0; i--){if(userRecentSearches[i] ===searchKeywordVar){ console.log("userRecentSearches[i]:searchKeywordVar: ", userRecentSearches[i],searchKeywordVar);userRecentSearches.splice(i,1);}} userRecentSearches.push(searchKeyword); localStorage.setItem(userRecentSearchesKey, JSON.stringify(userRecentSearches)); console.log("DEBUG addSearchHistory userRecentSearches after:: ", searchKeyword,userRecentSearches);}}function hideSearchHistory() { $(themeRecentSearchId).hide(); $(themeRecentSearchButton).css('color', 'silver');if($(searchInputId).val().length <1){ console.log("hide history - popular show"); $(".popular-searches").show(); }}function getUnique(array){ var userRecentSearchestemp = []; // Loop through array values for(i=0; i < array.length; i++){ if(userRecentSearchestemp.indexOf(array[i]) === -1) { userRecentSearchestemp.push(array[i]); } else {}console.log("userRecentSearchestemp list values",userRecentSearchestemp); } return userRecentSearchestemp; }function getSearchHistory() { console.log("getting user search history"); try { // userRecentSearches = JSON.parse(localStorage.getItem(userRecentSearchesKey)); console.log(JSON.parse(localStorage.getItem(userRecentSearchesKey)));a = JSON.parse(localStorage.getItem(userRecentSearchesKey));console.log("a list values",a);console.log("a list values",a);userRecentSearches = getUnique(a);// adding the removing duplicate search history// userRecentSearches.filter((value,index)=> userRecentSearches.indexOf(value) != index);// end of adding itconsole.log("After removing duplicates",userRecentSearches); if (userRecentSearches == null) { userRecentSearches = []; } else if (userRecentSearches.length) { console.log("setting search history to existing local storage..."); for (var i = 0; i < userRecentSearches.length; i++) { userRecentSearches[i] = userRecentSearches[i].replace(/[^a-zA-Z0-9\u3000\u3400-\u4DBF\u4E00-\u9FFF\s]/g, "").replace(/\s{2,}/g, " ").trim(); } } } catch(e) { console.log("unable to set search history to existing local storage, reset"); userRecentSearches = []; } console.log("user recent searches:", userRecentSearches); // localStorage.setItem(userRecentSearchesKey, JSON.stringify(userRecentSearches)); return userRecentSearches;}function deleteSearchHistory() {$("#recent-results").hide(); console.log("Search history in search page removed"); localStorage.removeItem(userRecentSearchesKey); userRecentSearches = []; hideSearchHistory();}});function matomoSearchList(actionType,searchKeyword){var employee1bankId= $('#employeeScreenName').val();var employeeSelectedCountryCode= $('#empCountrySelected').val();var employeeLocationCountryCode= $('#empCountryLocation').val();var employeeDepartmentVal= $('#employeeDepartment').val();/*var employeeDetails = employeeDepartmentVal+'_'+employee1bankId+'_'+employeeLocationCountryCode;*/var employeeDetails = employeeDepartmentVal+'_'+employeeLocationCountryCode;var actionName = searchKeyword;console.log ('Recent Searches');var _paq = _paq || [];_paq.push(['trackEvent', 'Search', 'Search_'+actionType+'_'+employeeSelectedCountryCode+'_'+actionName+'_Clicked', 'Search_'+actionType+'_'+employeeSelectedCountryCode+'_'+actionName+'_'+employeeDetails, 'EventValue', {dimension3: 'SEARCH_ACTIONS',dimension7: 'SEARCH_VISITS'}]);}// ]]>

Green and Sustainable Trade Financing (2024)

FAQs

What is green and sustainable financing? ›

Sustainable finance includes environmental, social, governance and economic aspects. Green finance includes climate finance but excludes social and economic aspects. • Climate finance is a subset of environmental (green) finance.

What is green trade financing? ›

What is Green and Sustainable Trade Finance? It is the financing of trade transactions where the use of funds has a positive impact on the environment or meet other sustainability-linked goals.

What is the difference between ESG and green finance? ›

Green finance is primarily concerned with providing financial support to sustainable projects and technologies. ESG is more focused on evaluating companies based on their corporate sustainability practices and governance structures.

What is the framework for green trade finance? ›

The framework for green trade finance and working capital provides a principles-based approach for banks to assess eligible green trade finance transactions, and specific guidance on recommended industry certifications for trade finance activities to qualify as green.

What is an example of sustainable finance? ›

Examples of sustainable finance initiatives include: Social impact bonds / Pay for success (PFS) schemes. Sustainable investment funds. Social venture capital.

Is green financing profitable? ›

One of the reasons why green financing is becoming so popular is the fact that the benefits are twofold. Not only do these investments help reduce the impact of climate change and improve the environment, but they are also lucrative investment opportunities for individuals and businesses alike.

What is an example of a green trade? ›

Green trading encompasses all forms of environmental financial trading, including carbon dioxide, sulfur dioxide (acid rain), nitrogen oxide (ozone), renewable energy credits, and energy efficiency (negawatts).

What are the barriers to green financing? ›

Financial firms seeking to make more green finance available in emerging markets face an array of challenges including regulatory gaps, and poor incentives for local firms to adopt more ambitious climate goals.

What are the reasons for green financing? ›

Why Green Financing? Green finance delivers economic and environmental advantages to everybody. It broadens access to environmentally-friendly goods and services for individuals and enterprises, equalizing the transition to a low-carbon society, resulting in more socially inclusive growth.

What are the three components of ESG finance? ›

The three pillars of ESG are:
  • Environmental – this has to do with an organisation's impact on the planet.
  • Social – this has to do with the impact an organisation has on people, including staff and customers and the community.
  • Governance – this has to do with how an organisation is governed. Is it governed transparently?

How does ESG loan work? ›

These are general-purpose loans with ESG Key Performance Indicators – or KPIs – written into loan documentation. If borrowers fail to meet targets, beyond the dent to their credibility, lenders are paid a higher return in the form of step-ups in drawn loan margins.

Is ESG good or bad? ›

Companies with a low ESG score are thought to have the worst environmental, social, and governance impacts. Undesirable ESG scores have also been linked to rising poverty levels in the communities where the firm operates, as well as poor employee mental health.

What is sustainable trade financing? ›

ESG is the analysis of the ethical impact and sustainability of a venture, while sustainable financing refers to the implementation of this analysis into an investment strategy. Sustainable finance weights sustainability factors and risks just as heavily as traditional considerations when making investment decisions.

What are the four pillars of trade finance? ›

Master the basics of international trade finance by learning these four pillars. The value propositions related to the basics of international trade finance are perhaps well illustrated as four “pillars”: payment, risk mitigation, financing and information.

What is one of the main tools of green finance? ›

The predominant financial instruments in green finance are debt and equity.

What is the meaning of sustainable finance? ›

Sustainable finance is about including environmental, social and governance considerations in investment decisions. It leads, in the long-term, to more investment in sustainable projects and activities.

What does IT mean to be green and sustainable? ›

Going green means using environmentally friendly products and services. Sustainability means using products or services in a way that does not damage the future generations' resources.

What does green mean in finance? ›

Green finance is a sign of the world economy's accelerating transition away from the fossil fuel era. At its simplest, green finance means any structured financial activity that's been created to ensure a better environmental outcome and a more resilient future.

What are the advantages of green and sustainable lending? ›

The pros of green lending

By providing the necessary financial assistance, green lending acts as a catalyst for sustainable development. It contributes to a more sustainable future by fostering the development of environmentally friendly technologies and business practices.

Top Articles
Contacts
Examples of shift patterns and traditional approaches to shift working
3 Tick Granite Osrs
Knoxville Tennessee White Pages
Dte Outage Map Woodhaven
Week 2 Defense (DEF) Streamers, Starters & Rankings: 2024 Fantasy Tiers, Rankings
Dricxzyoki
Cooking Chutney | Ask Nigella.com
Pinellas County Jail Mugshots 2023
Breaded Mushrooms
Cinepacks.store
Palace Pizza Joplin
About Goodwill – Goodwill NY/NJ
When Is the Best Time To Buy an RV?
Cape Cod | P Town beach
Slag bij Plataeae tussen de Grieken en de Perzen
Craigslist Blackshear Ga
Pricelinerewardsvisa Com Activate
Pekin Soccer Tournament
Divina Rapsing
Inter-Tech IM-2 Expander/SAMA IM01 Pro
Homeaccess.stopandshop
Why Are Fuel Leaks A Problem Aceable
Local Collector Buying Old Motorcycles Z1 KZ900 KZ 900 KZ1000 Kawasaki - wanted - by dealer - sale - craigslist
Copper Pint Chaska
Weather October 15
Pixel Combat Unblocked
Helloid Worthington Login
Ff14 Laws Order
Emiri's Adventures
Desirulez.tv
Justin Mckenzie Phillip Bryant
Imperialism Flocabulary Quiz Answers
To Give A Guarantee Promise Figgerits
20+ Best Things To Do In Oceanside California
Unifi Vlan Only Network
Hometown Pizza Sheridan Menu
Top 25 E-Commerce Companies Using FedEx
SF bay area cars & trucks "chevrolet 50" - craigslist
Infinite Campus Farmingdale
Aurora Il Back Pages
2 Pm Cdt
Shane Gillis’s Fall and Rise
Foxxequeen
Leland Nc Craigslist
Eat Like A King Who's On A Budget Copypasta
26 Best & Fun Things to Do in Saginaw (MI)
Conan Exiles Colored Crystal
Gander Mountain Mastercard Login
Used Auto Parts in Houston 77013 | LKQ Pick Your Part
Factorio Green Circuit Setup
E. 81 St. Deli Menu
Latest Posts
Article information

Author: Rubie Ullrich

Last Updated:

Views: 6397

Rating: 4.1 / 5 (52 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Rubie Ullrich

Birthday: 1998-02-02

Address: 743 Stoltenberg Center, Genovevaville, NJ 59925-3119

Phone: +2202978377583

Job: Administration Engineer

Hobby: Surfing, Sailing, Listening to music, Web surfing, Kitesurfing, Geocaching, Backpacking

Introduction: My name is Rubie Ullrich, I am a enthusiastic, perfect, tender, vivacious, talented, famous, delightful person who loves writing and wants to share my knowledge and understanding with you.