Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case

    August 14, 2026

    8 Years After Being Scrapped, Marvel’s Squirrel Girl in Live-Action Revealed in New Warriors Set Photos

    August 14, 2026

    Ghost of Yōtei Complete Edition Comes to PS5 October 1

    August 14, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram YouTube TikTok
    Comic Vibe
    Friday, August 14
    • Home
    • Comics
      • Comic Vibe News
    • Gaming
    • Movies
    • TV
    • Anime
    • Toys & Collectibles
    • Cosplay
    • Tech
    • Digital Culture
      • Creators & Fan Culture
      • Creator Economy & Fan-Driven Platforms
      • Digital Fandom & Online Communities
      • Metaverse & Virtual Worlds
      • NFTs & Digital Collectibles
      • Virtual Events & Online Conventions
      • Virtual Identity & Avatars
    • Shop
    Comic Vibe
    • Home
    • Contact Us
    • Terms & Conditions
    • Advertise With Us
    • DMCA Policy
    • Privacy Policy
    • About Us
    Home»Comic Vibe News»Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case
    Comic Vibe News

    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case

    JamesBy JamesAugust 14, 2026No Comments8 Mins Read
    Facebook Twitter
    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case
    Share
    Facebook Twitter

    Zee <a href="https://comicvibe.com/nintendos-indonesian-debut-amid-entertainment-revelations/” title=”Nintendo's Indonesian Debut Amid Entertainment Revelations”>Entertainment shares rise 7% as SAT gives interim relief in SEBI case

    Need Urgent Cash

    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case

    Zee and Punit Goenka can proceed with issuing fully convertible warrants to the promoter-group entity on a preferential basis
    J Jagannath
    August 14, 2026 / 12:05 IST
    Zee Entertainment shares rise 7% as SAT gives interim relief in SEBI case

    • Zee shares rose 7% after SAT relief.
    • SAT allowed Zee’s fundraising plan (warrants).
    • Relief is conditional on penalty deposit.

    Did our AI summary help?

    Webinar by Vishal Malkan

    in your portfolio by Vishal Malkan

    MC Logo

    `;
    let listLength = apiData.data.watchlist_data.length;
    if (apiData.data.predefinedcheck.allpredefined == true) {
    let msg = apiData.data.predefinedcheck.message;
    errorMessage(msg);
    } else if (listLength == 1) {
    submitWatchlistData(stockId, exChg, apiData.data.watchlist_data[0].watchlist_id, submitWatchlist, userVersion, ‘0’);
    } else {
    $(‘#watchlist_body’).html(watchlistHtml);
    $(‘#watchListPopup_2396’).css(‘display’, ‘flex’);
    $(‘.mc-modal’).addClass(‘success’);
    }
    }
    });
    }

    function submitWatchlistData(stockId, exChg, defWatch = ”, submitWatchlist, userVersion, modalvalue) {
    if (modalvalue == 1) {
    if ($(‘input[name=”UserWatchlist”]:checked’).length === 0) {
    $(‘.error-msg’).text(‘Please select the watchlist to add the Stock’);
    setTimeout(function () {
    $(‘.error-msg’).text(”);
    }, 3000);
    return false;
    }
    }
    $(“#watchListPopup_2396”).hide();
    let token = readCookie(“token-normal”);
    let selectedWatchlist = $(‘input[name=UserWatchlist]:checked’, ‘#userWatchlist’).val();
    if (defWatch != ”)
    selectedWatchlist = defWatch;
    let errorMsgText = (exChg == 1 || exChg == 2) ? “Contract” : “Stock”;
    if (selectedWatchlist == undefined) {
    $(“#errorMsg”).text(`Please select the watchlist to add the ${errorMsgText}`);
    setTimeout(function () {
    $(“#errorMsg”).text(”);
    }, 3000);
    } else {
    let postData = {};
    let reqType = ‘stock’;
    switch (exChg) {
    case ‘1’:
    reqType = ‘future’;
    let finalDate = $(“#finalDate”).attr(“data-val”);
    if (userVersion == 5) {
    finalDate = getV5dateFormat(finalDate);
    }
    postData = {
    “asset_id”: stockId,
    “exchange”: “N”,
    “instrument”: “FUTSTK”,
    “exp_date”: finalDate
    }
    break;
    case ‘2’:
    let finalPrice = $(“#optPrice”).text();
    let finalCall = $(“#callType”).text();
    let finalOptDate = $(“#optfinalDate”).attr(“data-val”);
    if (userVersion == 5) {
    finalOptDate = getV5dateFormat(finalOptDate);
    }
    reqType = ‘options’;
    postData = {
    “asset_id”: stockId,
    “exchange”: “N”,
    “instrument”: “OPTSTK”,
    “exp_date”: finalOptDate,
    “option_type”: finalCall,
    “strike_price”: finalPrice
    }
    break;
    case ‘3’:
    postData = {
    “asset_id”: stockId,
    “exchange”: “B”,
    }
    break;

    default:
    postData = {
    “asset_id”: stockId,
    “exchange”: “N”
    }
    break;
    }
    let postBody = {
    “section”: [
    {
    “type”: reqType,
    “assets”: [postData]
    }
    ],
    “watchlist_id”: selectedWatchlist,
    “other_page”: true,
    “transaction_source”: “web”,
    }
    $.ajax({
    url: submitWatchlist,
    method: “POST”,
    headers: {
    ‘auth-token’: token, ‘device-type’: ‘web’,
    ‘content-type’: ‘application/json’
    },
    data: JSON.stringify(postBody),
    beforeSend: function () {
    //$(“#watchlist_body”).html(“

    “);
    },
    success: function (apiData) {
    let apiRes = (typeof apiData == “string”) ? JSON.parse(apiData) : apiData;

    console.log(“apiRes”, apiRes);
    // $(“#watchListPopup_2396”).hide();
    if (apiRes.status_code == 1) {
    var stk_msg = apiRes.data.message;
    var modalContent = stk_msg;
    var modalStatus = ‘success’;
    $(‘.mc-modal-content’).text(modalContent);
    $(‘.mc-modal-wrap’).css(‘display’, ‘flex’);
    $(‘.mc-modal’).addClass(modalStatus);
    hidemodal();
    } else {
    var wtch_msg = apiRes.error_message;
    var modalContent = wtch_msg;
    var modalStatus = ‘success’;
    $(‘.mc-modal-content’).text(modalContent);
    $(‘.mc-modal-wrap’).css(‘display’, ‘flex’);
    $(‘.mc-modal’).addClass(modalStatus);
    hidemodal();
    }
    }
    });
    }
    }

    function hidemodal() {
    setTimeout(function () {
    $(‘.mc-modal-wrap’).hide();
    }, 5000);
    }

    function portfolio(articleId, stockId) {
    let label = stock_swot_analysis + “|” + stock_name_for[stockId] + “|Portfolio|” + device_type + “|” + pro_or_non_pro + “|” + window.location.href;
    commonGA4event(“News Article Stock Widget”, label);
    if (readCookie(‘nnmc’)) {
    document.getElementById(‘form_add_to_portfolio_’ + articleId + ‘_’ + stockId).submit();
    } else {
    let width = window.screen.width || window.innerWidth || document.documentElement.clientWidth;
    if (width > 980) {
    document.querySelector(‘.btn_signin.dropdown-toggle.linkSignIn’).click();
    } else {
    window.location.href = ‘https://m.moneycontrol.com/login.php?cpurl=https://www.moneycontrol.com/news/business/markets/zee-entertainment-shares-rise-7-as-sat-gives-interim-relief-in-sebi-case-14005475.html’;
    }
    }
    //pcSavePort(0, 1, stockId);
    }

    function pcSavePort(param, call_pg, dispId) {
    var adtxt = ”;

    if (readCookie(‘nnmc’)) {
    if (call_pg == “2”) {
    pass_sec = 2;
    } else {
    pass_sec = 1;
    }

    var postfolio_url = ‘https://www.moneycontrol.com/portfolio_new/add_stocks_multi.php?id=’ + dispId;
    window.open(postfolio_url, ‘_blank’);
    } else {
    AFTERLOGINCALLBACK = ‘pcSavePort(‘ + param + ‘, ‘ + call_pg + ‘, ‘ + dispId + ‘)’;
    console.log(‘Login…’);

    let width = window.screen.width || window.innerWidth || document.documentElement.clientWidth;

    if (width > 980) {
    document.querySelector(‘.btn_signin.dropdown-toggle.linkSignIn’).click();
    } else {
    window.location.href = ‘https://m.moneycontrol.com/login.php?cpurl=https://www.moneycontrol.com/news/business/markets/zee-entertainment-shares-rise-7-as-sat-gives-interim-relief-in-sebi-case-14005475.html’;
    }
    }
    }

    function getstockdata(charstr, article, stk) {
    let type_of_drop = (charstr == ‘N’) ? ‘NSE Live’ : ‘BSE Live’;
    let label = stock_swot_analysis + “|” + stock_name_for[stk] + “|” + type_of_drop + “|” + device_type + “|” + pro_or_non_pro + “|” + window.location.href;
    commonGA4event(“News Article Stock Widget”, label);
    stockWidget(charstr, stk, article, stk.trim());
    }

    function morebtn(articleId, stockId) {
    let label = stock_swot_analysis + “|” + stock_name_for[stockId] + “|More|” + device_type + “|” + pro_or_non_pro + “|” + window.location.href;
    commonGA4event(“News Article Stock Widget”, label);
    }

    function stock_red(articleId, stockId)
    {
    let label = stock_swot_analysis + “|Stock click|” + stock_name_for[stockId] + “|” + device_type + “|” + pro_or_non_pro + “|” + window.location.href;
    commonGA4event(“News Article Stock Widget”, label);
    }

    Shares of Zee Entertainment Enterprises Ltd rose up to 7% on August 14 after Securities Appellate Tribunal (SAT) gave conditional relief in SEBI case and allowed the company’s fundraising plan.

    Zee and Punit Goenka can proceed with issuing fully convertible warrants to the promoter-group entity on a preferential basis.

    Relief is subject to both appellants depositing the full penalty within one week.

    The deadline for issuing warrants (expiring on August 14) is extended by one week. The market-access ban remains active, barring this specific relief from SAT.

    Zee can deploy mutual fund investments for daily operational business needs—but cannot use them for other purposes, including the proposed dividend.

    ZEEL shareholders had approved a Rs 3,143.52 crore preferential issue of 24.95 crore fully convertible warrants to promoter group entity Sunbright Mauritius Investments Ltd. at Rs 126 per warrant.

    At 11:45 am on August 14, Zee Entertainment shares were trading 5% higher at Rs 101.6 apiece.

    SEBI, in its order of July 31st, had barred ZEEL from accessing the securities market for two months, while Chief executive officer Punit Goenka and promoter Subhash Chandra were restrained from accessing the market for 12 months each. The regulator also imposed monetary penalties of Rs 30 lakh on ZEEL, Rs 58 lakh on Goenka and Rs 60 lakh on Chandra. The penalties, totalling Rs 1.48 crore, were directed to be paid within 45 days.

    The regulatory action relates to the alleged unauthorised use and pledge of ZEEL’s property in Hyderabad’s Jubilee Hills as security for loans taken by four Essel Group entities from Indiabulls Housing Finance Ltd (IHFL).

    According to SEBI’s findings, the property was used to secure loans worth around Rs 726 crore. The regulator had noted that the title deeds of the property were deposited on December 27, 2018, and were released on June 1, 2020, after repayment of around Rs 225 crore.

    SEBI had also flagged the absence of necessary approvals from ZEEL’s Audit Committee, Board and shareholders for the transaction. The regulator alleged that the company failed to make adequate disclosures relating to the pledge, the related-party transaction, contingent liability and other developments linked to the property.

    Interestingly, SEBI order also came on the same day that ZEEL shareholders approved the company’s proposed plan at an extraordinary general meeting (EGM), making the timing significant. The shareholder approval had raised  opes around the company’s prospects and its ability to move ahead with its strategic plans. The regulatory action, however, came as a setback on the very day shareholders backed the proposal, with the market-access restrictions on the company and its promoters adding uncertainty to the road ahead.

    J Jagannath
    first published: Aug 14, 2026 11:43 am

    Discover the latest Business News, Sensex, and Nifty updates. Obtain Personal Finance insights, tax queries, and expert opinions on Moneycontrol or download the Moneycontrol App to stay updated!

    Watch

    Trending news

    Rs 44 lakh camera gear stolen from Indian photographers in Italy. Police refuse help as it was Sunday

    Rs 44 lakh camera gear stolen from Indian photographers in Italy. Police refuse help as it was Sunday

    • Rs 3 lakh salary, stress-free job, weekends out: Why a techie earning 8x more envies his ex-classmate
    • Paan shop owner builds Rs 1 crore wealth, buys a car: Jobless MBA grad questions value of his degree
    • Sam Altman says he was ‘peer pressured’ into accepting internship at Goldman Sachs
    • Instagram new logo sparks buzz as platform changes wordmark after 10 years
    • Vishwanath and Sons Twitter Review: Suriya, Mamitha Baiju earn praise; Netizens call it ‘decent family entertainer’
    • Yash to join Rajat Sharma’s Aap Ki Adalat, addresses KGF Vs Shah Rukh Khan’s Zero box office clash in promo: ‘I’m still his fan’
    • From Rs 8,000 loan to Rs 800 crore BIBA: How Meena Bindra turned a pocket-money idea into a fashion brand
    • Meet Jimmy Chilimigras, one of world’s youngest law graduates, who wants to take on social media giants
    • iPhone 18 Pro Max launch: ‘Made in India’ iPhone to sell globally since its first sale; here’s where it is being manufactured
    • Samsung Galaxy S25 Edge price in India drops by Rs 45,000 on Flipkart: Check deal price and offers
    • Independence Day weekend: 5 places to visit within 3 hours of Bengaluru for a refreshing break
    • This is the worst drink for your liver, according to a US-based nutritionist
    • Skyroot Aerospace signs 3-launch deal with HEX20 Space for Vikram-1 missions from 2027
    • Happy Independence Day 2026: Best 30+ Independence Day wishes, greetings, messages, images, quotes and status ideas for WhatsApp and Instagram

    `);
    }
    if(res.stay_updated){
    $(“.stay-updated-ajax”).html(res.stay_updated);
    }
    }catch(e){ console.log(e); }
    });
    },2000); // Reduced from 8s to 2s for better Core Web Vitals (LCP/UX)
    });

    J Jagannath

    conditional Entertainment grants Rise Shares
    Share. Facebook Twitter
    Previous Article8 Years After Being Scrapped, Marvel’s Squirrel Girl in Live-Action Revealed in New Warriors Set Photos
    James

    Related Posts

    Nintendo’s Indonesian Debut Amid Entertainment Revelations

    August 14, 2026

    Asianet launches 10-day ‘OG Onam’ celebration with original festive entertainment

    August 14, 2026

    Nine Entertainment (ASX:NEC): Inside Its Dividend Story, Media Business and Income Considerations

    August 14, 2026

    Batwara 1947: Preity Zinta shares a photo of her look test for the film

    August 14, 2026
    Leave A Reply Cancel Reply

    Our Picks

    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case

    August 14, 2026

    8 Years After Being Scrapped, Marvel’s Squirrel Girl in Live-Action Revealed in New Warriors Set Photos

    August 14, 2026

    Ghost of Yōtei Complete Edition Comes to PS5 October 1

    August 14, 2026

    Roblox Corporation (NYSE:RBLX) Given Average Recommendation of “Hold” by Analysts

    August 14, 2026
    • Facebook
    • Twitter
    • Instagram
    • YouTube
    • TikTok
    • Telegram
    Don't Miss
    Metaverse & Virtual Worlds

    The Lana’s Life x Claire’s partnership is a Roblox giveaway blended with real-world retail

    By JamesJuly 7, 20260

    After enduring multiple rounds of bankruptcy filings, Claire’s could use a win, and it’s hoping that the Roblox community can deliver a sales boost. A partnership between the retailer and the popular creator Lana’s Life will bring Roblox-inspired items to 866 Claire’s locations in the U.S. and Canada

    Xbox cutting 3,200 jobs and parting ways with four studios

    July 7, 2026

    Hollywood Stars, TV Deals, and Secret Weddings: A Week in Entertainment

    July 7, 2026

    My Adventures with Superman Just Revealed Its Superboy (& He’s Got a Surprising New Origin)

    July 7, 2026

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Comic Vibe is a pop-culture destination created for fans who live and breathe comics, movies, anime, TV shows, gaming, tech, cosplay, and collectibles.

    Our mission is to deliver engaging news, reviews, features, guides, and opinions that celebrate geek culture in all its forms. From the latest comic releases and blockbuster films to anime trends, gaming updates, cutting-edge tech, and collector culture, Comic Vibe brings everything together in one vibrant hub.

    Our Picks

    Zee Entertainment shares rise up to 7% as SAT grants conditional relief in SEBI case

    August 14, 2026

    8 Years After Being Scrapped, Marvel’s Squirrel Girl in Live-Action Revealed in New Warriors Set Photos

    August 14, 2026

    Ghost of Yōtei Complete Edition Comes to PS5 October 1

    August 14, 2026

    Subscribe to Updates

    Get the latest comics, anime, movies, TV, gaming, cosplay, and pop culture news delivered directly to your inbox. No spam—just the stories every fan should know.

    Facebook X (Twitter) Instagram YouTube TikTok
    • Home
    • Contact Us
    • Terms & Conditions
    • Advertise With Us
    • DMCA Policy
    • Privacy Policy
    • About Us
    © 2026 Comic Vibe. Designed by Comic Vibe.

    Type above and press Enter to search. Press Esc to cancel.