Audi speaks not count while already in a road of no return

2020-12-14 中國經濟網

  Volkswagen and Audi, making the 「re-joint venture」mentioned in public again and again, are bound to lose faith in their partners, in the competent authorities and in Chinese consumers……Since then, Audi is already in a wrong path, blindly forward, farther and farther. And will eventually lose the market, and its original intention to increase its shares through "re-joint venture" will end up with nothing.

  This year marks the 30th anniversary of Audi brand entering into China. It should be said that due to the forward-looking strategic vision of Volkswagen and Audi, and the positive feedback of the Chinese market, Audi has finally achieved the position of "Top-Three" in the global premium car market.

  Next, a series of big events related to the Audi brand will take place in China:

  This week, factory of FAW-Volkswagen Audi Q series will put into operation in Changchun;

  Early next month, the new generation of Audi A8L will be listed in Hainan;

The new generation of Audi A8L will be listed in Hainan

  At the end of next month, Audi and FAW-Volkswagen Audi will participate in together in the 15th Beijing international automotive exhibition;

  On May 17, it was the 30th anniversary of FAW-Volkswagen and Audi signing the 「Technology transfer license for Audi 100 in FAW」……

  But, at such an important moment, the old story of "re-joint ventures」, which has been put on hold for almost a year, has been retold again by VW and Audi, and became active in a sudden.

The new Audi A6 was officially released at the Geneva motor show in early March

  At the Geneva motor show earlier this month, Jochem Heizmann, director of the Volkswagen group and CEO of Volkswagen group China, revealed in a media interview that the SAIC-Audi project was being accelerated;

  "SAIC-Audi project is proceeding as planned, Audi needs to walk on two legs in China, thus increases our market share in the rising Chinese market."the Audi CEO Rupert Stadler said at the Audi global media conference ,which was held in the middle of March;

  Recently, as reported: Audi's official website announced that constructive talks with SAIC are under way, discussing on enhancing its participation in the Chinese market in the future……

  Audi’s 「re-joint venture」 revealed to the public, began in late October 2016, after more than half a year time, Dietmar Voggenreiter, global marketing and sales director of Audi, who championed the 「re-joint venture", has been "kicked out」, because of losing credibility among Audi dealers of China, as well as the first negative growth in the Chinese market.

  Despite the discounts on several models, in the Chinese market, which Audi struggled for 28 years, Audi is still being overtaken by rivals, and global markets have been slashed by competitors; its profitability has been surpassed by Skoda, a common brand of Volkswagen Group…… At the same time, Audi had to sign a deal with FAW, making a number of promises.

  But, this time the VW and Audi executives have "revived the old story" on different occasions, made Audi breaking promises again, and get it in a road of no return.

  First, Audi lost the trust of its partners.

  As we have talked about in the beginning, the completion of the factory of Audi Q series in changchun; the the new generation of Audi A8L in Hainan; the 15th Beijing international automotive exhibition, is expected to be big……For Audi in the Chinese market, these are the big events of the year, even in the next few years, and there is no room for error or distraction.But, when Audi's Chinese partners and dealers "fight" on the front line night and day, what Audi is doing is a "shoot" behind them! How will this make Chinese partners feel?

  It's a horrible thing to think about, now that it can "shoot" its current partner behind their back, what can Audi do to its potential partners? Audi's "two-legged walk" is essentially a conventional ploy by Volkswagen to work with FAW and SAIC, This allows it to control the two Chinese partners.

  Second, Audi will lose credibility with the competent authorities.

  Thanks to the support of FAW group, as well as the government and competent departments, Audi has been developing so well in China since 1988.Thirty years ago, perhaps Mercedes didn't expect it, perhaps BMW didn't have the energy to take care of it, Audi grabbed a first in the Chinese market.

  Nowadays, such a brand, which is not even an independent negotiating body, dare to 「make waves」 in the Chinese market, playing the two big auto groups in China around, making them jealous……How will this make the competent authorities in China feel?

  Finally, Audi lost the trust of Chinese consumers.

  After 30 years of joint venture cooperation, under the joint efforts of the Chinese and foreign sides, Audi has laid a solid foundation in China's premium car market, such as: approaching Mercedes and BMW brand awareness, premium car market share leading ahead of other high-grade car brand, and certain market appeal. However, in the past one and a half years of time, "rejoint venture" again, again and again, have put the image of Audi avaricious and changeable.Are Chinese consumers willing to accept more of such a brand image? How will this make the Chinese consumers feel?

  Losing the trust of the partners, losing the trust of the competent authorities, and losing the confidence of Chinese consumers, Audi has been in a road of no return, blindly forward. In the end, it will be more haste, less speed, and the loss will be the market. The original intention of the "re-joint venture" to increase the market share will also be an empty one.(文:經濟日報-中國經濟網記者 張宇星 譯:張羽)

  相關閱讀:

  失信、失信、再失信 奧迪在不歸路上蒙眼狂奔

相關焦點

  • C語言for,while,if-else,return語句的綜合使用
    #includevoid main(){int i,j,k;j=10;while(j--) //j控制換行{ i=10-j;while(i--) //i控制循環,而且控制的是緊隨其後的語句在此程序中用來結束while(i--)printf(""); }printf("");}
  • 一文看懂Python的控制結構:for、while、if…都有了
    while循環的常見用途是創建無限循環。在本示例中,while循環用於過濾函數,該函數返回兩種攻擊類型中的一種。    for attack in list_of_ attacks:        yield attackattack = attacks()count = 0while next(attack) == "lower_body":    count +=1    print(f"crossing legs to prevent attack
  • Down for the count? 敗得很慘
    The referee will order the other fighter to return to his corner, then administer the count. He counts out loud, one, two, three...
  • C++編程靈活使用while循環和for循環來求出100以內的所有素數
    解題思路:最直觀的方法,根據定義,因為質數除了1和本身之外沒有其他約數,所以判斷n是否為質數,根據定義直接判斷從2到n-1是否存在n的約數即可以下這個程序代碼是用while循環嵌套的方法來實現。= 0;//整形變量count作為記錄素數的個數while (n < 100)//外層循環每次n的值都增加1,直到99為止{//內層循環判斷n是否是素數int i=2 ;while (1)
  • Leetcode題解 CountOfRangeSum
    CPP代碼class Solution{public:    int mergeSort(vector<long long> &sum,int L,int R,int lower,int upper)    {        if(R-L<=1)    return
  • java流程控制實例代碼演示for、while、break、return、switch等
    Java處理流程控制的關鍵字和語句包含如下:for、return、break、 continue 、switch、 if-else、 while、 do-while。下面看一下實例代碼演示效果:
  • Kicking the can down the road?
    They’re likened by Obama to kids kicking the can down the road.What can? What road?Any can, any road.
  • Count and Say | 外觀數列
    題目LeetCode[1]LeetCode-cn[2]The count-and-say sequence is a sequence
  • Road kill?
    For example, if someone’s pet dog strays onto the road Beijing and gets run over by a car or truck, that poor dog is roadkill.
  • Count your blessings?
    have happy thoughts is to count his blessings and not his cash.As this person is a successful businessman, my friend told him to count his cash instead.「Change all the money you make into cash, and count them before going to bed.」
  • 詞語掌故|Don't Count Your Chickens Before They Hatch
    The friend may say to her, "Well, don't count your chicken before they hatch.Another way of saying this proverb is: "Don't count your chickens until they are hatched."
  • Already in train?
    for us and a number of significant events are already in train.Their breeding and talent matched our budget, but for a while we had fun toddling around Victorian country tracks, winning and losing small amounts, doing a lot of passive smoking, but never having to
  • Prince Philip: Sandringham crash led to car tumbling across road
    The driver, a 28-year-old woman, had cuts while a 45-year-old female passenger broke her wrist.Witness Roy Warne said the duke asked about their welfare after the crash.
  • 面試官:當return遇到try、catch、finally時會發生什麼?
    1.return的作用在Java中的return語句和方法有密切的關係,return語句用在方法中,有兩個作用,一個是返回方法指定類型的值(這個值總是確定的),一個是結束方法的執行(僅僅一個return語句)。
  • C語言while語句
    while循環while循環的一般形式為: while(表達式){ 語句塊 }其中表達式稱為循環條件,語句塊稱為循環體。);return 0;}運行結果:5050代碼分析:1) 程序運行到while語句時,因為 i=1,i<=100 的值為真,所以執行循環體;執行結束後 i 的值變為 2,sum 的值變為 1。
  • LeetCode-38.外觀數列(Count and Say)
    來源:力扣(LeetCode)連結:https://leetcode-cn.com/problems/count-and-say/Link:https://leetcode.com/problems/count-and-say/模擬法第N個數是對第N - 1個數的外觀描述。