Close Menu

    Subscribe to Updates

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

    What's Hot

    TWICE’s Jeongyeon Personally Confirms Departure From JYP + Signs With VARO Entertainment

    August 10, 2026

    Minecraft for Nintendo Switch 2 arrives 27th October!

    August 10, 2026

    Our dream TV workplaces : Pop Culture Happy Hour

    August 10, 2026
    Facebook X (Twitter) Instagram
    Facebook X (Twitter) Instagram YouTube TikTok
    Comic Vibe
    Monday, August 10
    • 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, Punit Goenka move SAT against SEBI market-access bar; seek interim relief
    Comic Vibe News

    Zee Entertainment, Punit Goenka move SAT against SEBI market-access bar; seek interim relief

    JamesBy JamesAugust 10, 2026No Comments8 Mins Read
    Facebook Twitter
    Zee Entertainment, Punit Goenka move SAT against SEBI market-access bar; seek interim relief
    Share
    Facebook Twitter

    Zee <a href="https://comicvibe.com/koreas-market-volatility-becomes-tv-entertainment/” title=”Korea’s market volatility becomes TV entertainment”>Entertainment, Punit Goenka move SAT against SEBI market-access bar; seek urgent interim relief

    Need Urgent Cash

    Zee Entertainment, Punit Goenka move SAT against SEBI market-access bar; seek interim relief

    SEBI, in its order of July 31, had barred ZEEL from accessing the securities market for two months, while CEO Punit Goenka and promoter Subhash Chandra were restrained from accessing the market for 12 months each
    Brajesh Kumar
    August 10, 2026 / 11:30 IST
    Zee Entertainment, Punit Goenka move SAT against SEBI market-access bar; seek urgent interim relief

    • ZEEL & Punit Goenka appeal SEBI ban to SAT.
    • SEBI barred them from markets for 2 months.
    • Ban due to alleged unauthorised property use.

    Did our AI summary help?

    Liked this AI Summary?


    `;
    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-punit-goenka-move-sat-against-sebi-market-access-bar-seek-urgent-interim-relief-13999677.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-punit-goenka-move-sat-against-sebi-market-access-bar-seek-urgent-interim-relief-13999677.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);
    }

    Zee Entertainment Enterprises Ltd (ZEEL) and Punit Goenka have moved the Securities Appellate Tribunal (SAT) against a Securities and Exchange Board of India (SEBI) order barring them from accessing the securities market.

    SAT, on Monday, posted the matter for hearing on Wednesday after counsel appearing for Zee Entertainment sought an urgent hearing and interim relief.

    “I have been barred from accessing the securities market for two months,” counsel appearing for Zee Entertainment told the tribunal, requesting that the matter be taken up urgently.

    SEBI, in its order of July 31, had barred ZEEL from accessing the securities market for two months, while CEO 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.

    The proceedings also covered disclosures relating to litigation before the Delhi High Court, a non-disposal undertaking concerning the property and the subsequent release of the title deeds.

    The latest appeal before SAT is the next legal step by ZEEL and its promoters against SEBI’s order. The tribunal is scheduled to hear the matter on Wednesday, when the company is expected to press for interim relief from the market-access restrictions.

    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 hopes 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.

    Brajesh Kumar is Associate Editor at Moneycontrol with over two decades of experience in financial journalism. He primarily covers capital markets, with a strong focus on SEBI and regulatory developments. Interest in tax, healthcare, and pharmaceutical-related issues. Previously, he has worked with Zee Business, CNBC Awaaz, and News18 India.
    X( (Twitter): @BrajeshKMji
    first published: Aug 10, 2026 11:29 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

    'Totally different world': Former UNICEF executive moves back to Bengaluru, shares lessons from New York

    ‘Totally different world’: Former UNICEF executive moves back to Bengaluru, shares lessons from New York

    • ‘Feeling that you’ve lost a lot’: Delhi woman opens up about WFH’s impact on social life
    • ‘Extremely disappointing’: VietJet passenger says crew refused water for mother’s medicine, accused them of ‘lying’
    • Billionaire has $35 billion hedge fund for 48 staff. His janitors, receptionists own millions in stocks
    • ‘He chose integrity’: Auto driver returns Rs 5 tip despite struggling financially, internet reacts
    • Salman Khan says ‘countdown to the biggest mission begins’ as 7 Dogs India release date announced
    • How Liam Payne died at 31? New pics show singer met two sex workers, had large quantity alcohol, cocaine before his shocking fall from balcony
    • No IIT, no IIM — now WhatsApp CEO: How BA pass Kunal Shah went from Mumbai delivery boy to leading $138 billion company
    • ‘My internship CTC Is ₹40 lakh a month’: Student’s alleged high-paying HFT internship claim on Reddit goes viral, sparks online debate
    • Samsung Galaxy S26 Ultra price drops to Rs 85,149 with iPhone 15 exchange offer on Amazon: Deal details
    • Apple iPhone 17 Pro price in India drops to Rs 83,900 on Flipkart with exchange and bank offers
    • Independence Day weekend: 5 best getaways near Delhi for a refreshing break
    • IRCTC launches 10-day Japan tour package starting at Rs 3.45 lakh; 7 destinations that it will cover
    • World Lion Day 2026: How Gir’s Asiatic lion duo, “Jai-Veeru’s” friendship revealed the science of lion survival?
    • Quote of the Day by Cristiano Ronaldo: “Talent without working hard is…” – A powerful life lesson on discipline, dedication, hard work and achieving lasting success

    `);
    }
    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

    against Entertainment Goenka move Punit
    Share. Facebook Twitter
    Previous Article5 Forgotten Xbox Franchises That Need a Reboot on Project Helix
    Next Article Jared Padalecki apologizes for wishing Perez Hilton well after ‘awful’ mental health crisis: ‘I didn’t know’
    James

    Related Posts

    TWICE’s Jeongyeon Personally Confirms Departure From JYP + Signs With VARO Entertainment

    August 10, 2026

    Tallulah Willis marries musician Justin Acee

    August 10, 2026

    Korea’s market volatility becomes TV entertainment

    August 10, 2026

    TWICE Jeongyeon announces departure from JYP Entertainment 11 years after debut

    August 10, 2026
    Leave A Reply Cancel Reply

    Our Picks

    TWICE’s Jeongyeon Personally Confirms Departure From JYP + Signs With VARO Entertainment

    August 10, 2026

    Minecraft for Nintendo Switch 2 arrives 27th October!

    August 10, 2026

    Our dream TV workplaces : Pop Culture Happy Hour

    August 10, 2026

    Evo 2026 cosplay video with side-by-side depictions of characters feat. R. Mika, Mai, Juri and more

    August 10, 2026
    • Facebook
    • Twitter
    • Instagram
    • YouTube
    • TikTok
    • Telegram
    Don't Miss
    Gaming

    EA Sports College Football 27 Review, Gameplay Impressions, Videos, Top Modes and Features

    By JamesJuly 6, 20260

    College Football 27 from EA Sports is that lovable annual contending program that onlookers haven’t soured on yet because the stay at the top is so prolonged. 

    New photos show touching moment Kate Middleton hugged her children after grueling 24

    July 6, 2026

    Red, white, blue and yellow: ‘Minions & Monsters’ #1 at July Fourth box office

    July 6, 2026

    What To Watch Monday: FIFA World Cup Continues, Inspector Ellis Returns, And More

    July 6, 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

    TWICE’s Jeongyeon Personally Confirms Departure From JYP + Signs With VARO Entertainment

    August 10, 2026

    Minecraft for Nintendo Switch 2 arrives 27th October!

    August 10, 2026

    Our dream TV workplaces : Pop Culture Happy Hour

    August 10, 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.