Greece

Introduction

Transfer Pricing regulations are stated in Articles 39 and 39A of L. 2238/1994.

Transfer Pricing provisions were initially introduced in Greece, in a simplified form, in 1980. Conversely, Transfer Pricing regulations were not commonly considered by the tax authorities until 2008.

On September 23, 2022, Greece published Law No. 4972/2022 in the Official Gazette containing several tax measures, including Transfer Pricing. The law amends an existing provision concerning the upward Transfer Pricing adjustments to provide for corresponding downward adjustments.

Related Parties

A related party is defined as:

  • The equity stake of a person in the capital stock of another person through direct or indirect ownership of shares or any other equity stake of at least 33% in terms of value, number, profit-sharing rights, or voting rights of these shares;
  • The relationship with any other person who directly or indirectly owns shares, equity stakes, voting rights, or any other ownership interest rights of at least 33% in terms of value, number, profit sharing rights, or voting rights of the shares of any other related entity;

The relationship with any other party with which there is a substantial direct or indirect administrative relationship, in which there is dependence or control, or any other party that exercises or may exercise decisive influence with respect to the decision-making of an entity, as well as common control, dependence, or influence of a third party.

Read More
<script>

  /*
 Author:       Wolfgang Hartl
 Author URI:   https://my-webcraftdesign.at/
 DOCS:         https://my-webcraftdesign.at/tutorial/read-more-read-less-toggle-in-bricksbuilder/
*/
function WCD_rmrl(options) {
  const readLessText = options.readLessText;
  const readMoreText = options.readMoreText;

  const rmrlContent = document.querySelectorAll("[wcd_rmrl_percentage]");

  rmrlContent.forEach((element) => {
    // INITIAL SETUP (define height, overflow and attributes)
    element.style.overflow = "hidden";
    element.setAttribute("wcd_rmrl_max", element.clientHeight + "px");

    var percentage = element.getAttribute("wcd_rmrl_percentage");
    var height = element.clientHeight;
    height = Math.round((height / 100) * percentage) + "px";

    element.setAttribute("wcd_rmrl_min", height);
    element.style.height = height;

    //ASSIGN CLICK EVENT TO TRIGGER
    trigger = element.nextSibling;
    trigger.addEventListener("click", function () {
      if (element.style.height == element.getAttribute("wcd_rmrl_min")) {
        element.style.height = element.getAttribute("wcd_rmrl_max");
        this.childNodes.forEach((node) => {
          if (node.nodeValue !== null) {
            node.nodeValue = readLessText;
          }
        });
      } else {
        element.style.height = element.getAttribute("wcd_rmrl_min");
        this.childNodes.forEach((node) => {
          if (node.nodeValue !== null) {
            node.nodeValue = readMoreText;
          }
        });
      }
    });
  });
}
  
  
  const rmrl = new WCD_rmrl({
    readLessText : 'Read Less',
    readMoreText : 'Read More',

  });
  
</script>

Contact us

To communicate with us you need to fill out the following form

Google reCaptcha: Invalid site key.