PwC France & Maghreb - Challenge Étudiants
PwC France & Maghreb - Challenge Étudiants
L'innovation pour transformer les Opérations
L'innovation pour transformer les Opérations
Pourquoi ce Challenge Étudiants?

Pour cette deuxième édition, PwC invite les étudiants d'écoles de commerce, technologiques, d'ingénieurs et d'universités à participer à ce challenge. Le challenge vise à identifier des solutions de type startup ou pouvant être de stade early, portées par des étudiants, capables d'accélérer la réinvention des Opérations dans leurs différentes dimensions :
• Développement produit
• Industrialisation et manufacturing
• Achats et supply chain
• Efficacité opérationnelle
• Digitalisation et exploitation de la donnée
• Amélioration/mesure de la satisfaction et de l'expérience client …

Le Challenge Étudiants
Challenge Étudiants PwC - Réinventer les Opérations

Le contexte du challenge étudiant ?
Les organisations peinent à transformer leurs Opérations face à l'accélération technologique, aux exigences de durabilité et à la complexité croissante des chaînes de valeur. Les solutions existantes sont souvent fragmentées, peu interopérables ou difficiles à déployer à l'échelle, ce qui limite leur impact. Ce Challenge Étudiants vise à faire émerger des solutions innovantes et prometteuses générant des résultats mesurables de performance, d'agilité, de résilience et de création de valeur pour les entreprises, tout en visant à renforcer la durabilité via des Opérations prêtes pour le futur.

Ce que nous cherchons :
Les solutions candidates doivent impérativement être portées par des étudiants et peuvent notamment s'appuyer sur l'IA, l'automatisation, les jumeaux numériques, les usines intelligentes, la décarbonation, la circularité, des matériaux nouveaux, des supply chains résilientes et connectées, l'amélioration et la mesure de l'expérience client.

L'objectif :
Résoudre les irritants opérationnels concrets en réduisant les coûts et la variabilité, en fluidifiant l’ensemble des processus - de la première ligne jusqu’à la supply chain - et en améliorant la qualité, l’utilisation des ressources et l’engagement des équipes.

Critères de sélection
Innovation & Différenciation

Surprenez-nous : une solution fraîche, créative et clairement unique.

Répondre à un besoin

En quoi votre solution apporte un vrai plus (cibles, pain points adressés, bénéfices...)

Structuration & Faisabilité

Un projet solide, crédible et réalisable : on veut voir que ça peut vraiment prendre vie.

Récompenses
Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Calendrier

00:00:00:00

left to apply

left to apply

Your personal data is collected by Crédit Agricole S.A., 12 Place des Etats-Unis, 92120 Montrouge, as the data controller, so that you can participate in the Challenge organized from 18/03/2026 during the Vivatech event, called: “Digital Sustainability Training Modules”. In accordance with the General Data Protection Regulation (GDPR), you have the right, under the conditions provided by law, to access your personal data at any time, to exercise your right to data portability, to have it rectified, to request its erasure in compliance with legal obligations, to object to its processing, to define general or specific instructions regarding the fate of your personal data after your death, or to restrict its processing for legitimate reasons. You can access more detailed information on the protection of your personal data by consulting, in particular, Article 13: “Personal data protection” of the challenge rules.

Your personal data is collected by Crédit Agricole S.A., 12 Place des Etats-Unis, 92120 Montrouge, as the data controller, so that you can participate in the Challenge organized from 18/03/2026 during the Vivatech event, called: “Digital Sustainability Training Modules”. In accordance with the General Data Protection Regulation (GDPR), you have the right, under the conditions provided by law, to access your personal data at any time, to exercise your right to data portability, to have it rectified, to request its erasure in compliance with legal obligations, to object to its processing, to define general or specific instructions regarding the fate of your personal data after your death, or to restrict its processing for legitimate reasons. You can access more detailed information on the protection of your personal data by consulting, in particular, Article 13: “Personal data protection” of the challenge rules.

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/