https://raw.githubusercontent.com/ajmaradiaga/feeds/main/scmt/topics/Cloud-blog-posts.xml SAP Community - Cloud 2024-05-10T17:00:13.355346+00:00 python-feedgen Cloud blog posts in SAP Community https://community.sap.com/t5/technology-blogs-by-sap/a-shared-language-to-talk-about-technical-debt/ba-p/13571697 A Shared Language to talk about Technical Debt 2023-11-17T13:40:59+01:00 haeuptle https://community.sap.com/t5/user/viewprofilepage/user-id/40145 Everyone has heard of financial crisis where the economy is in trouble and where people and companies are overwhelmed with financial debts.&nbsp;The consequences can be disastrous.&nbsp;Did you know that such crisis happen often in software development?&nbsp;Technical debt is a sneaky plague that can hurt projects,&nbsp;deliveries,&nbsp;people,&nbsp;and sometimes an entire company.&nbsp;This blog is the first in a series of blogs on technical debt on what it is,&nbsp;where it comes from,&nbsp;and how to deal with it.&nbsp;It will shed light on something we too often ignore,&nbsp;but can take control over by being proactive!<BR /> <BR /> The intention of this blog is to define the term and to provide a shared language to talk about technical debt.<BR /> <H2 id="what-is-technical-debt" id="toc-hId-963868711">What is Technical Debt?</H2><BR /> Ward Cunningham: "Although immature code may work fine and be completely acceptable to the&nbsp;customer,&nbsp;excess quantities will make a program unmasterable,&nbsp;leading to extreme&nbsp;specialization of programmers and finally an inflexible product.&nbsp;Shipping first-time&nbsp;code is like going into debt.&nbsp;A little debt speeds development so long as it is paid&nbsp;back promptly with a rewrite...&nbsp;The danger occurs when the debt is not repaid.&nbsp;Every minute spent on not-quite-right code counts as interest on that debt.&nbsp;Entire&nbsp;engineering organizations can be brought to a standstill under the debt load of an&nbsp;unconsolidated implementation."<BR /> <BR /> Technical debt,&nbsp;a term coined by Ward Cunningham,&nbsp;is a concept in software development that reflects the implied cost of additional rework caused by choosing a quick and easy solution now instead of using a better approach that would take longer.&nbsp;It's a metaphor that equates software development to financial debt,&nbsp;illustrating the trade-off between short-term and long-term benefits.&nbsp;When a development team takes shortcuts,&nbsp;such as skipping parts of the coding process to meet deadlines or opting for a less optimal solution to save time,&nbsp;they incur technical debt.&nbsp;While these shortcuts might speed up the development process in the short term,&nbsp;they often lead to more work in the future as the team has to go back and fix the issues that arise from these shortcuts.&nbsp;This is similar to how taking on financial debt can provide immediate funds but requires repayment with interest over time.&nbsp;Technical debt can be categorized into two types:&nbsp;intentional and unintentional.&nbsp;Intentional technical debt is a strategic decision made with the understanding of the future cost.&nbsp;Unintentional technical debt,&nbsp;on the other hand,&nbsp;is accrued due to lack of knowledge or oversight,&nbsp;and is often discovered later when issues arise.&nbsp;It's important to manage technical debt effectively.&nbsp;If left unchecked,&nbsp;it can accumulate&nbsp;'interest'&nbsp;in the form of decreased productivity,&nbsp;increased complexity,&nbsp;and reduced code quality.&nbsp;This can lead to a slower pace of development,&nbsp;making it harder to implement new features or fix bugs.&nbsp;However,&nbsp;not all technical debt is bad.&nbsp;Sometimes,&nbsp;incurring technical debt can be a strategic decision.&nbsp;For instance,&nbsp;a startup might choose to incur some technical debt to speed up development and get their product to market faster.&nbsp;The key is to manage it effectively and pay it off regularly by refactoring code,&nbsp;improving documentation,&nbsp;and investing in automated testing.&nbsp;Technical debt is an inherent part of software development that needs to be managed strategically.&nbsp;By understanding its implications and making informed decisions,&nbsp;development teams can balance the need for speed with the importance of code quality and long-term maintainability.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/DilbertTechnicalDebt.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Technical Debt - <SPAN class="css-901oao css-16my406 r-poiln3 r-bcqeeo r-qvutc0"> Dilbert by Scott Adams&nbsp;</SPAN></P><BR /> <BR /> <H2 id="types-of-technical-debt" id="toc-hId-767355206">Types of Technical Debt</H2><BR /> There are various forms of technical debt.&nbsp;The following list is not exhaustive,&nbsp;but it covers the most common types of technical debt.<BR /> <OL><BR /> <LI><STRONG>Code Debt</STRONG>: A prevalent form of technical debt, code debt stems from shortcuts or subpar coding practices, resulting in inefficient or disorganized code, which is hard to read, maintain and test. This make all development and maintenance tasks slower and will degrade the "enjoyment" of writing code while demotivating engineers. More details on how to deal with code debt can be found in the blog post&nbsp;<A href="https://blogs.sap.com/2022/12/21/clean-code-writing-maintainable-readable-and-testable-code/" target="_blank" rel="noopener noreferrer">Clean Code: Writing maintainable, readable and testable code</A></LI><BR /> <LI><STRONG>Design Debt</STRONG>: Design debt emerges when the system design is compromised, often due to time pressures or inadequate foresight during the design phase, resulting in a system that's challenging to maintain and expand. Due to this kind of debt developers can’t get confidence quickly that their code will not break existing functionality and dependencies.</LI><BR /> <LI><STRONG>Testing Debt</STRONG>: Testing debt arises from insufficient testing, including a lack of unit, integration, or system tests. This can lead to unnoticed bugs and software issues. Another important type of testing are flaky tests. More details on how to deal with testing debt tests can be found in the blog posts:<BR /> <UL><BR /> <LI><A href="https://ecosystem4engineering.substack.com/p/shared-language-for-talking-about" target="_blank" rel="nofollow noopener noreferrer">Shared Language for talking about Test Strategy with a focus on the Test Pyramid</A></LI><BR /> <LI><A href="https://ecosystem4engineering.substack.com/p/the-hidden-costs-of-flaky-tests" target="_blank" rel="nofollow noopener noreferrer">The Hidden Costs of Flaky Tests: Why You Need to Fix Them Now</A>,</LI><BR /> <LI><A href="https://ecosystem4engineering.substack.com/p/how-to-improve-testability" target="_blank" rel="nofollow noopener noreferrer">How to improve Testability</A></LI><BR /> <LI><A href="https://ecosystem4engineering.substack.com/p/get-higher-quality-and-productivity" target="_blank" rel="nofollow noopener noreferrer">Get Higher Quality and Productivity by tackling the Broken Window Effect</A></LI><BR /> </UL><BR /> </LI><BR /> <LI><STRONG>Documentation Debt</STRONG>: Documentation debt occurs when system documentation is incomplete or outdated, hindering new team members' understanding and slowing down system maintenance and expansion.</LI><BR /> <LI><STRONG>Infrastructure Debt</STRONG>: Infrastructure debt arises when the supporting infrastructure, such as the operating system, database, development environment, build systems, and CI/CD pipelines, are outdated or inefficient.</LI><BR /> <LI><STRONG>Architectural Debt</STRONG>: Architectural debt occurs when the system's architecture fails to meet current or future functional and non-functional requirements, making the system difficult to maintain, adapt, or scale.</LI><BR /> <LI><STRONG>Knowledge Debt</STRONG>: Team lacks necessary expertise or the knowledge is not spread among the team, leading to "knowledge silos" and bottlenecks that can slow development and increase risk. This may be due to staffing gaps and turnover or inherited orphaned code/projects.</LI><BR /> <LI><STRONG>Dependency Debt</STRONG>: Dependency debt occurs when a system depends on outdated or unsupported third-party libraries or services. The Dependencies are unstable or rapidly changing. Teams are unable to take advantage of new improvements and remain vulnerable to security problems. This also can slow down the onboarding of new hires and cause frustration for current developers who are forced to work with older versions. More details on how to deal with dependency debt can be found in the blog post&nbsp;<A href="https://ecosystem4engineering.substack.com/p/security-fixing-vulnerabilities-keeping" target="_blank" rel="nofollow noopener noreferrer">Keeping Dependencies Up To Date</A></LI><BR /> <LI><STRONG>Migration Debt:</STRONG>&nbsp;Migration is needed or in progress: This may be motivated by the need to scale, license issues, costs, to reduce dependencies, or to avoid deprecated technology. It can also occur when a migration was poorly executed or abandoned: This may have resulted in maintaining two versions.</LI><BR /> <LI><STRONG>Unused features / Dead Code Debt</STRONG>&nbsp;Dead and/or abandoned code: Code/features/projects were replaced or superseded but not removed. More features creates more conditions and more edge cases that developers have to design around, which erodes the delivery speed.</LI><BR /> <LI><STRONG>Reliability or Performance Debt:</STRONG>&nbsp;These can affect the customer experience as well as the ability to scale the business.</LI><BR /> <LI><STRONG>Tool Debt</STRONG>&nbsp;Inefficient tools (both proprietary and third-party) can introduce friction or overhead for developers, slowing delivery speed.</LI><BR /> <LI><STRONG>Manual Process Debt</STRONG>&nbsp;When a part of the product delivery isn't automated, it requires more manual time and effort.</LI><BR /> <LI><STRONG>Automated deployments Debt</STRONG>&nbsp;Automated deployment workflows enable the ability to deliver features to customers continuously and at will.</LI><BR /> <LI><STRONG>Coupling Debt</STRONG>&nbsp;Coupling between modules or services leads to teams potentially blocking each other, slowing down delivery speed.&nbsp;<A href="https://ecosystem4engineering.substack.com/p/domain-driven-design-curated-resources" target="_blank" rel="nofollow noopener noreferrer">Domain Driven Design</A>&nbsp;is a great methodology to deal with this kind of debt.</LI><BR /> <LI><STRONG>Duplication Debt</STRONG>&nbsp;Duplication of code, services, or functionality can lead to wasted effort and increased maintenance costs. On the other hand should duplication be balanced with the need for autonomy and independence of teams. Reduction of duplication can cause dependencies between teams, which can slow down delivery speed. So it is important to consider the trade-offs.</LI><BR /> </OL><BR /> <H2 id="conclusion" id="toc-hId-570841701">Conclusion</H2><BR /> In conclusion,&nbsp;the legacy codebase,&nbsp;while being a significant asset,&nbsp;also presents a formidable challenge due to the inherent technical debt.&nbsp;This debt,&nbsp;if not addressed promptly,&nbsp;can become a substantial obstacle in delivering high-quality solutions and adapting to the ever-evolving market needs.&nbsp;Therefore,&nbsp;it is important to implement measures to manage and reduce this technical debt effectively.&nbsp;In the forthcoming year,&nbsp;I will publish a series of blog posts,&nbsp;each focusing on different aspects of technical debt.&nbsp;These posts will not only shed light on the complexities of the issue but also propose potential strategies,&nbsp;tools,&nbsp;practices,&nbsp;behaviorus,&nbsp;constraints and other approaches to deal with it.<BR /> <H2 id="resources" id="toc-hId-374328196">Resources</H2><BR /> <UL><BR /> <LI><A href="https://ieeexplore.ieee.org/document/10109339" target="_blank" rel="nofollow noopener noreferrer">Defining, Measuring, and Managing Technical Debt</A></LI><BR /> <LI><A href="https://martinfowler.com/articles/bottlenecks-of-scaleups/01-tech-debt.html#TypicalTypesOfDebt" target="_blank" rel="nofollow noopener noreferrer">Bottleneck Tech Debt</A></LI><BR /> </UL> 2023-11-17T13:40:59+01:00 https://community.sap.com/t5/enterprise-resource-planning-blogs-by-sap/inside-the-world-of-plm-exclusive-insights-from-industry-experts/ba-p/13572039 Inside the World of PLM - Exclusive Insights from Industry Experts 2023-11-20T05:54:22+01:00 agrawal https://community.sap.com/t5/user/viewprofilepage/user-id/11575 <STRONG>Product Lifecycle Management</STRONG> (PLM) software has become an essential tool for businesses across various industries. Everyone is seeking ways to streamline their product development processes to stay ahead in the contemporary business world. <STRONG>PLM software is a proven game-changer</STRONG>, enabling companies to accelerate time to market, enhance communication, collaboration and visibility, and ultimately drive innovation.<BR /> <P style="text-align: center;overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Experts.png" /></P><BR /> In this blog post I will be outlining few key points that I learned during the panel discussion video segment – “<STRONG>PLM Uncovered</STRONG>”. Where we had the following experts from SAP Partner organizations joining in:<BR /> <UL><BR /> <LI><STRONG><A href="https://www.linkedin.com/in/jameskeefe/" target="_blank" rel="nofollow noopener noreferrer">James Keefe</A></STRONG>, Director of SAP PLM from LeverX</LI><BR /> <LI><STRONG><A href="https://www.linkedin.com/in/horst-heckhorn-5416231/" target="_blank" rel="nofollow noopener noreferrer">Horst Heckhorn</A></STRONG>, SVP SAP Solutions &amp; Business Development Executive from CENIT AG</LI><BR /> <LI><STRONG><A href="https://www.linkedin.com/in/dr-matthias-gr%C3%A4uler-605a008b/" target="_blank" rel="nofollow noopener noreferrer">Matthias Gräuler</A></STRONG>, Project Manager &amp; Team Lead from Gramont</LI><BR /> <LI><STRONG><A href="https://www.linkedin.com/in/thomas-n%C3%B8rgaard-jensen-073a87b/" target="_blank" rel="nofollow noopener noreferrer">Thomas Nørgaard Jensen</A></STRONG>, Director, Digital Supply Chain, PLM from NTT DATA Business Solutions</LI><BR /> </UL><BR /> You can watch the full video segment linked at the end of the blog.<BR /> <H2 id="toc-hId-963892552">PLM software accelerating time-to-market for both discrete and process industries.</H2><BR /> Time-to-market is a critical factor that can make or break a company's success. The ability to bring products and services to market quickly and efficiently can provide a significant competitive advantage. By providing a single source of truth, PLM software ensures that all stakeholders have access to accurate and up-to-date information, fostering collaboration and reducing errors.<BR /> <BR /> PLM software provides enhanced communication, collaboration, and visibility into the product creation and change process, resulting in a drastic reduction in time to market. Historically, organizations had silos of information and serial process flows, where data was passed from one function to another. However, <STRONG>PLM acts as an integration layer that connects all functional areas</STRONG>, allowing for parallel processing and real-time visibility across the entire supply chain. This optimization is beneficial for both discrete and process industries, although there are some differences in how PLM is implemented in each sector.<BR /> <P style="text-align: center;overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/James-Keefe-Director-of-SAP-PLM-from-LeverX-PLM-Uncovered-Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Experts.png" /></P><BR /> While the benefits of PLM software are applicable across industries, there are specific intricacies when it comes to the discrete and process industries.<BR /> <BR /> <STRONG>Discrete Industries</STRONG>: In discrete industries, such as automotive, aerospace, and consumer electronics, PLM software plays a crucial role in managing complex product configurations and variant management. With features like product configurators, bill of materials (BOM) management, and change management, <STRONG>PLM software enables organizations to handle the intricacies of configuring and managing multiple product variations efficiently</STRONG>. This capability is essential for meeting customer demands, reducing time spent on customization, and accelerating time to market.<BR /> <BR /> <STRONG>Process Industries</STRONG>: In process industries, such as chemicals, pharmaceuticals, and food and beverage, <STRONG>PLM software focuses on managing recipes, formulations, and compliance requirements.</STRONG> By providing tools for recipe management, formula optimization, and regulatory compliance, PLM software helps organizations streamline their product development processes. This streamlining ensures adherence to safety and quality standards, reduces the risk of non-compliance, and expedites the time it takes to bring new products to market.<BR /> <BR /> Discrete manufacturing involves managing complex multi-level Bill of Materials (BOMs) with intricate structures. Variant configuration is often used for similar products with minor differences. CAD integration is crucial in this sector to manage product models and integrate information with downstream processes. On the other hand, process industries focus on formulation and recipes, with strict regulatory requirements. Manufacturing plant variables and coordination with operations based on defined thresholds are essential. <STRONG>Despite these differences, both industries benefit from improved communication and efficiency enabled by PLM software.</STRONG><BR /> <P style="overflow: hidden;margin-bottom: 0px;text-align: left"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Thomas-Norgaard-Jensen-Director-Digital-Supply-Chain-PLM-from-NTT-DATA-Business-Solutions-PLM-Uncovered-Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Exper.png" /></P><BR /> <BR /> <H2 style="overflow: hidden;margin-bottom: 0px;text-align: left" id="toc-hId-767379047">PLM software bringing value to customers.</H2><BR /> <UL><BR /> <LI><STRONG>Streamlined Collaboration</STRONG>: PLM software facilitates seamless collaboration among cross-functional teams, including design, engineering, manufacturing, and supply chain. By breaking down silos and enabling real-time communication, <STRONG>PLM software ensures that all stakeholders are aligned and working towards a common goal</STRONG>. This collaborative environment significantly reduces time-consuming bottlenecks and accelerates decision-making processes.</LI><BR /> <LI><STRONG>Efficient Design and Development</STRONG>: PLM software offers robust design and development capabilities, allowing organizations to create, simulate, and validate product designs quickly and accurately. With integrated tools for computer-aided design (CAD) and computer-aided engineering (CAE), designers and engineers can iterate on designs rapidly,<STRONG> identify and rectify issues early in the development stage, and optimize product performance</STRONG>. This efficiency in design and development translates into reduced time spent on rework and faster time to market.</LI><BR /> <LI><STRONG>Enhanced Supply Chain Management</STRONG>: PLM software integrates with enterprise resource planning (ERP) systems, enabling seamless coordination between product development and supply chain operations. By providing visibility into inventory levels, demand forecasts, and supplier performance, <STRONG>PLM software helps organizations optimize their supply chain processes.</STRONG> This optimization minimizes delays caused by material shortages, improves production planning, and ensures timely delivery of products to market.</LI><BR /> </UL><BR /> <B><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Matthias-Grauler-Project-Manager-Team-Lead-from-Gramont-PLM-Uncovered-Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Experts.png" /></B><BR /> <BR /> PLM software plays a crucial role in customer success by providing a trusted database, ensuring consistent and reliable data throughout the product lifecycle. It enables the sharing and reuse of data, facilitating collaboration with external business partners, suppliers, and internal stakeholders. The transparency and workflow capabilities offered by PLM software allow for effective collaboration, leading to faster and more efficient processes. Success stories shared by the panelists highlight how <STRONG>PLM software has brought value to customers by streamlining processes, improving transparency, and enabling concurrent engineering</STRONG>.<BR /> <BR /> The world of PLM is constantly evolving to meet changing business needs and regulatory requirements. There is a growing emphasis on sustainability and the adoption of digital supply chains. PLM systems are moving towards cloud-based offerings, enabling remote work and collaboration. Emerging technologies like artificial intelligence (AI) are expected to play a significant role in PLM, although specific use cases are still developing. The panelists emphasize the <STRONG>importance of executive support, people, and process change in successful PLM implementations</STRONG>.<BR /> <P style="text-align: center;overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Horst-Heckhorn-SVP-SAP-Solutions-Business-Development-Executive-from-CENIT-AG-PLM-Uncovered-Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Experts.png" /></P><BR /> Listening to the valuable insights from the experts, it was clear that <STRONG>embracing PLM software is no longer an option but a necessity for organizations striving to thrive in product development space</STRONG>. PLM software has emerged as a transformative technology that empowers organizations to optimize their product development processes. By accelerating time to market, improving communication and collaboration, and enhancing visibility, PLM software enables companies to stay ahead in today's competitive market. Whether in discrete or process industries, the benefits of PLM software are undeniable. Embracing this technology can unlock new opportunities for innovation, efficiency, and customer satisfaction, ultimately driving business success.<BR /> <BR /> PLM software is a critical tool for accelerating time to market, improving communication, and driving customer success in both discrete and process industries. It enables organizations to streamline processes, enhance collaboration, and ensure data integrity throughout the product lifecycle. As the PLM landscape evolves, organizations need to embrace change, leverage emerging technologies, and focus on sustainability to stay competitive in the market. <STRONG>PLM is not just a technology but also a mindset that can transform businesses and drive innovation.</STRONG><BR /> <BR /> <IFRAME width="560" height="315" src="https://www.youtube.com/embed/dLJ1Xwo68ls?feature=shared" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen=""></IFRAME><BR /> <BR /> If you want to build a <STRONG>risk resilient</STRONG> and <STRONG>sustainable supply chain</STRONG> that provides actionable information, supports product innovation and empowers people, check out <STRONG>SAP PLM software</STRONG>. Take your design processes to a new level and <STRONG>connect extended enterprise to contextualize decisions and collaborate easier with the suppliers</STRONG>. Learn how close feedback loop can accelerate innovation and explore the key role of product design in sustainability.<BR /> <P style="text-align: center;overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Explore-PLM-software-from-SAP-PLM-Uncovered-Inside-the-World-of-PLM-Exclusive-Insights-from-Industry-Experts.png" /></P><BR /> Learn about solutions from SAP’s PLM Portfolio:<BR /> <UL><BR /> <LI><A href="https://www.sap.com/products/scm/plm-r-d-engineering.html" target="_blank" rel="noopener noreferrer">SAP Product Lifecycle Management Software</A></LI><BR /> <LI><A href="https://www.sap.com/products/erp/s4hana/features/r-and-d.html" target="_blank" rel="noopener noreferrer">SAP S/4HANA</A></LI><BR /> <LI><A href="https://www.sap.com/products/scm/enterprise-product-development.html" target="_blank" rel="noopener noreferrer">SAP Enterprise Product Development</A></LI><BR /> <LI><A href="https://www.sap.com/products/scm/teamcenter-by-siemens.html" target="_blank" rel="noopener noreferrer">SAP Teamcenter by Siemens</A></LI><BR /> </UL><BR /> If you found this post to be useful, do click the “Like” button, and share your thoughts using the comments section. 2023-11-20T05:54:22+01:00 https://community.sap.com/t5/enterprise-resource-planning-blogs-by-members/rise-with-sap-s-4-hana-public-and-private-edition-bundled-cloud-services/ba-p/13572827 Rise with SAP S/4 HANA public and private edition: Bundled Cloud Services- Base Vs Premium Vs Premium Plus 2023-11-21T13:40:30+01:00 rajarajeswari_kaliyaperum https://community.sap.com/t5/user/viewprofilepage/user-id/654809 <P>This blog is intended for presales and PCA (Partner Cloud Architect) consultants working with RISE deals and have a good understanding of RISE with SAP and its terminologies. In this blog I wish to highlight the differences in the latest Bundled cloud services offered under RISE with SAP : Base Vs Premium Vs Premium Plus&nbsp; along with an attempt to answer the below questions .</P><PRE>1. What is SAP Cloud Services under RISE with SAP public and private edition ?<BR /> 2. What are SAP Cloud features and Bundled Cloud services under RISE with SAP ?<BR /> 3. What are the differences between base, premium and premium plus under RISE with SAP S/4 HANa Cloud, private edition?.<BR /> 4. What are the differences between base and premium under RISE with SAP S/4HANA Cloud (Public edition / SaaS)?</PRE><P><BR />As a quick recap, Under RISE with SAP, we understand that SAP provides 2 main types of S/4 HANA Cloud options.<BR /><BR /></P><OL><OL><LI>Private Edition:<BR /><BR /><OL><OL><LI>SAP S/4 HANA Cloud, private edition<BR /><BR /><OL><OL><LI>Standard option</LI></OL></OL><BR /><OL><OL><LI>Tailored option</LI></OL></OL><BR /><BR /></LI></OL></OL><BR /><OL><OL><LI>SAP ERP Cloud, private edition<BR /><BR /><OL><OL><LI>Standard option</LI></OL></OL><BR /><OL><OL><LI>Tailored option</LI></OL></OL><BR /><BR /></LI></OL></OL><BR /><BR /></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Public Edition:<BR /><BR /><OL><OL><LI>SAP S/4 HANA Cloud (Public / SaaS product)</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR />Not all the above classification/sub-classifications offer bundled cloud services.&nbsp; It is only available for :<BR /><BR /><SPAN>A.SAP S/4HANA Cloud, private edition under the Standard option :</SPAN><BR /><BR /></P><OL><OL><LI><BR /><BR /><OL><OL><LI>Base</LI></OL></OL><BR /><OL><OL><LI>Premium</LI></OL></OL><BR /><OL><OL><LI>Premium Plus</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR />Source:&nbsp;<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-private-edition-supplement-english-v10-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-private-edition-supplement-english-v10-2023.pdf</A><BR /><BR /><SPAN>B.SAP S/4HANA Cloud (Public / SaaS offerings).</SPAN><BR /><BR /></P><OL><OL><LI><BR /><BR /><OL><OL><LI>Base</LI></OL></OL><BR /><OL><OL><LI>Premium</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR />NOTE:No premium plus under public edition offering<BR /><BR />Source:<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-supplement-english-v11-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-supplement-english-v11-2023.pdf</A><BR /><BR />&nbsp;<BR /><BR /><STRONG>Before explaining the above information, we need to understand what are SAP Cloud Service Softwares provided under RISE?</STRONG><BR /><BR />SAP Cloud service software under RISE with SAP, are the software/services that are offered under RISE construct.&nbsp; <EM>Eg:RISE WITH SAP S/4HANA CLOUD, PRIVATE EDITION; RISE WITH SAP S/4HANA CLOUD, PRIVATE EDITION, BASE OPTION AND BASE; RISE WITH SAP S/4HANA CLOUD, PRIVATE EDITION, PREMIUM; AND RISE WITH SAP S/4HANA CLOUD, PRIVATE EDITION, PREMIUM PLUS, SAP S/4HANA CLOUD, DIGITAL ACCESS, PRIVATE EDITION etc</EM>. A detailed list of such services available are described under respective service description guides(SDG). Customers can use only the Cloud Service Software that they have subscribed to explicitly with RISE contract.</P><PRE>Link to latest SDGs:(NOTE: Below are direct link to the latest SDG document available as of 21st Nov 2023. Always use the latest version by downloading direct from the SAP's trust center)<BR /> <BR /> A.SAP S/4 HANA Cloud, private edition SDG:<A href="https://www.sap.com/docs/download/agreements/product-use-and-support-terms/service-description-guides/rise-with-sap-s4hana-cloud-private-edition-service-description-guide-english-v11-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-use-and-support-terms/service-description-guides/rise-with-sap-s4hana-cloud-private-edition-service-description-guide-english-v11-2023.pdf</A><BR /> <BR /> B.SAP S/4 HANA Cloud : SDG<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/service-description-guides/rise-with-sap-s4hana-cloud-service-use-descriptions-english-v11-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/service-description-guides/rise-with-sap-s4hana-cloud-service-use-descriptions-english-v11-2023.pdf</A></PRE><P><BR /><SPAN><STRONG>What are Cloud features and Bundled Cloud Service?</STRONG></SPAN><BR /><BR />Some of the features integrated into the Cloud Service are known as “Cloud Features”. These are provisioned on the SAP Business Technology Platform, a multitenant cloud platform (“BTP”) and interact with the Cloud Services that are provisioned under RISE.<BR /><BR />Once the customer subscribes to SAP Cloud Services, the customer will receive access to some of the additional, multitenant cloud services called “Bundled Cloud Services”.</P><BLOCKQUOTE><EM>As per SDGs "</EM><BR /><BR /><OL><OL><LI><EM>Cloud Features may be provisioned on the SAP Business Technology Platform and in a different data center location from S/4HANA Cloud</EM></LI></OL></OL><BR /><OL><OL><LI><EM>Cloud Features do not include the same service elements that apply to the S/4HANA Cloud and </EM></LI></OL></OL><BR /><OL><OL><LI><EM>The Service Level Agreement does not apply to Cloud Features"</EM></LI></OL></OL><BR /><BR />SAP has categorized these bundled services into <SPAN><STRONG>base, premium and Premium Plus</STRONG></SPAN>.</BLOCKQUOTE><P><BR /><EM>(NOTE:</EM><BR /><BR /></P><OL><OL><LI><EM>In general, BTP services can be consumed using CPEA credit (Cloud Platform Enterprise Agreement) or Pay-As-you-go as a part of a consumption-based commercial model. Subscription-Based Commercial Model is also available for BTP services consumption</EM></LI></OL></OL><P>&nbsp;</P><OL><OL><LI><EM>Use of each Bundled Cloud Service is subject to the supplemental terms located at <A href="http://www.sap.com/agreementscloud-supplement" target="_blank" rel="noopener noreferrer">http://www.sap.com/agreementscloud-supplement</A><SPAN>)</SPAN></EM></LI></OL></OL><P><BR /><BR />===========================================================================<BR /><BR /><STRONG>Under <SPAN>SAP S/4 HANA Cloud, private edition</SPAN>, below are the differences associated with the bundled cloud services based on my understanding.</STRONG><BR /><BR /><SPAN>A.BASE OPTION:</SPAN><BR /><BR /></P><OL><OL><LI>This is targeted at RISE customers who have minimal usage of BTP offerings</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>This does not include any RISE entitlements like free CPEA credits</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Under this option, SAP host the customer's RISE system in SAP's private DC only</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>No major changes in roles and responsibilities between base option, premium option, and premium plus option from SAP's R&amp;R document for SAP S/4HANA Cloud , private edition (<A href="https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf</A></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Below BTP service is included in RISE with SAP, Base option:<BR /><BR /><OL><OL><LI>SAP Build Work Zone</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR /><SPAN>B.PREMIUM OPTION:</SPAN><BR /><BR /></P><OL><OL><LI>All the old and existing customers of RISE construct will fall under this category</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>The CORE S/4 HANA environment can be hosted on cloud service provider of customer's choice eg:Azure, AWS, Google Cloud, Alibaba etc</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>No major changes in roles and responsibilities between base option, premium option, and premium plus option from SAP's R&amp;R document for SAP S/4HANA Cloud , private edition (<A href="https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf</A></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Below BTP and process credits are included in RISE with SAP</LI></OL></OL><P><BR /><BR /><BR /></P><OL><OL><LI><BR /><BR /><OL><OL><LI>SAP Build Work Zone</LI></OL></OL><BR /><OL><OL><LI>SAP Build Process Automation</LI></OL></OL><BR /><OL><OL><LI>SAP Build Apps</LI></OL></OL><BR /><OL><OL><LI>Process intelligence( SAP Signavio)</LI></OL></OL><BR /><OL><OL><LI>CPEA credits</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR /><SPAN>C.PREMIUM &nbsp;PLUS OPTION:</SPAN><BR /><BR /></P><OL><OL><LI>Introduced recently ( Oct 2023)&nbsp;&nbsp;<A href="https://news.sap.com/2023/10/sap-btp-with-premium-plus-package-for-rise-with-sap/#:~:text=The%20new%20premium%20plus%20package,transformation%20and%20accelerate%20their%20innovation" target="_blank" rel="noopener noreferrer">https://news.sap.com/2023/10/sap-btp-with-premium-plus-package-for-rise-with-sap/#:~:text=The%20new%20premium%20plus%20package,transformation%20and%20accelerate%20their%20innovation</A></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Premium Plus offers enterprises subscribed to Rise with SAP access to SAP’s latest innovations, including sustainability insights and generative AI capabilities. While the package presents a cost-effective option, the additional AI units and their pricing structure add a level of complexity for businesses assessing their ROI.&nbsp;<A href="https://ts2.space/en/introducing-premium-plus-saps-newest-innovations-for-rise-with-sap/#gsc.tab=0" target="_blank" rel="noopener nofollow noreferrer">https://ts2.space/en/introducing-premium-plus-saps-newest-innovations-for-rise-with-sap/#gsc.tab=0</A></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Any existing premium customer can subscribe to this PREMIUM PLUS option via SKU below .<BR /><BR /><OL><OL><LI><I>XYEER</I>&nbsp;<I>RISE with SAP S/4HANA Cloud, private edition, premium, upgrade option</I> <I>Upsell</I> <I>License</I> <I>S/4 Private Cloud</I> <I>Used to upgrade customers from </I><I>Premium to premium</I><I> plus</I></LI></OL></OL><BR /><BR /></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>This is targeted at customers who need additional BTP functionalities such as SAP Data Sphere and SAP Analytics cloud along with sustainability insights and generative AI capabilities as a part of their RISE construct.</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>The CORE S/4 HANA environment can be hosted on cloud service provider of customer's choice eg:Azure, AWS, Google Cloud, Alibaba etc</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>No major changes in roles and responsibilities between base option, premium option, and premium plus option from SAP's R&amp;R document for SAP S/4HANA Cloud , private edition (<A href="https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-policy/hec/roles-responsibilities/rise-with-sap-s4hana-cloud-private-edition-and-sap-erp-pce-roles-and-responsibilities-english-v7-2023.pdf</A></LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Below BTP and process credits are included in RISE with SAP<BR /><BR /><OL><OL><LI>SAP Build Work Zone</LI></OL></OL><BR /><OL><OL><LI>SAP Build Process Automation</LI></OL></OL><BR /><OL><OL><LI>SAP Build Apps</LI></OL></OL><BR /><OL><OL><LI>Process intelligence( SAP Signavio)</LI></OL></OL><BR /><OL><OL><LI>CPEA credits</LI></OL></OL><BR /><OL><OL><LI>SAP Data sphere</LI></OL></OL><BR /><OL><OL><LI>SAP Analytics Cloud for planning</LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR />The package is cost-effective compared to purchasing the services individually.<BR /><BR />============================================================================<BR /><BR />Below are information available in RISE with SAP Private and public edition supplement.<BR /><BR /><STRONG>A.Bundled Cloud Services offered under SAP S/4HANA Cloud, private edition:</STRONG><BR /><BR />Source:<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-private-edition-supplement-english-v10-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-private-edition-supplement-english-v10-2023.pdf</A></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/31.jpg" border="0" /></P><P><BR />For more information refer the source URL provided<BR /><BR /><STRONG>B.Bundled Cloud Services offered under SAP S/4HANA Cloud (Public edition / SaaS):</STRONG><BR /><BR />Source :<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-supplement-english-v11-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/rise-with-sap-s4hana-cloud-supplement-english-v11-2023.pdf</A></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/30.jpg" border="0" /></P><P><BR />For more information refer the source URL provided<BR /><BR />&nbsp;<BR /><BR /><SPAN><STRONG>Adhoc information:</STRONG> </SPAN><BR /><BR /></P><OL><OL><LI>RISE with SAP S/4 HANA Cloud, private edition is now under two-year release cycle rather than 6 months . Also, the maintenance has been increased from five to seven years giving customers more value against their investment and stability</LI></OL></OL><P>&nbsp;</P><OL><OL><LI>Important links:<BR /><BR /><OL><OL><LI>Location of Data Centers utilized for SAP Cloud Services (Status: v.11-2023):&nbsp;<A href="https://www.sap.com/docs/download/agreements/product-use-and-support-terms/cls/en/list-of-data-centers-for-sap-cloud-services-english-v.11-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-use-and-support-terms/cls/en/list-of-data-centers-for-sap-cloud-services-english-v.11-2023.pdf</A></LI></OL></OL><BR /><OL><OL><LI>SAP BTP SDG (Service Description Guide):<A href="https://www.sap.com/docs/download/agreements/product-use-and-support-terms/service-description-guides/sap-business-technology-platform-service-description-guide-english-v11-2023.pdf" target="_blank" rel="noopener noreferrer">https://www.sap.com/docs/download/agreements/product-use-and-support-terms/service-description-guides/sap-business-technology-platform-service-description-guide-english-v11-2023.pdf</A></LI></OL></OL><BR /><OL><OL><LI>SAP AI Services and AI Units Supplemental Terms and Conditions&nbsp;<A href="https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/sap-ai-services-and-ai-unit-supplement-english-v10-2023.pdf" target="_blank" rel="noopener noreferrer">https://assets.cdn.sap.com/agreements/product-use-and-support-terms/cls/en/sap-ai-services-and-ai-unit-supplement-english-v10-2023.pdf</A></LI></OL></OL><BR /><BR /></LI></OL></OL><P><BR /><BR />&nbsp;<BR /><BR />Thanks for reading and do like and leave a comment if this information helped you one way or the other.</P> 2023-11-21T13:40:30+01:00 https://community.sap.com/t5/technology-blogs-by-sap/dark-clouds-over-old-europe-impressions-from-sapinsider-emea-2023/ba-p/13573027 Dark Clouds Over Old Europe: Impressions from SAPinsider EMEA 2023 2023-11-22T02:10:09+01:00 JayThvV https://community.sap.com/t5/user/viewprofilepage/user-id/160843 <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/cph-square-clouds_scaled.jpg" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic">Christiansborg Slotsplads in a cold and wet Copenhagen</P><BR /> One of the best parts of this year has been the return of customer-facing events. How much I appreciate the opportunity to speak at conferences and share our experience, I like even more to hear from peers and customers. What they are doing, what they are working through, and where they are in their digital and cloud transformation.<BR /> <BR /> I was at <A href="https://www.linkedin.com/pulse/very-european-affair-impressions-from-aws-summit-thoden-van-velzen/" data-cke-saved-href="https://www.linkedin.com/pulse/very-european-affair-impressions-from-aws-summit-thoden-van-velzen/" target="_blank" rel="nofollow noopener noreferrer">AWS Summit Berlin</A> in early May, which predictably was a very cloudy affair but not exactly in the SAP ecosystem. <A href="https://www.linkedin.com/pulse/cyber-physical-clouds-risks-resiliency-real-world-thoden-van-velzen/" data-cke-saved-href="https://www.linkedin.com/pulse/cyber-physical-clouds-risks-resiliency-real-world-thoden-van-velzen/" target="_blank" rel="nofollow noopener noreferrer">MasteringSAP in Melbourne, Australia</A> in June gave a good impression of the customer base in Australia and New Zealand. Being an equivalent event, SAPinsider EMEA 2023 in Copenhagen last week offered a fascinating chance to compare regional differences, moods and trends.<BR /> <H1 id="toc-hId-834839591">Security and Compliance Are Key Concerns</H1><BR /> Both MasteringSAP and SAPinsider EMEA had a special Cybersecurity track of sessions on the schedule. At both events, the show floor had many exhibitors offering security and compliance solutions relevant to SAP customers. That already visibly gave an indication of the importance of the topic.<BR /> <BR /> The tightening regulatory climate was a key topic of conversation in both regions. In Melbourne, each customer touched on the SOCI Act and the Essential Eight. In Copenhagen, it was EU regulation such as NIS2. Both regions have a large public sector and many regulated industries. Both have data residency and privacy concerns.<BR /> <BR /> The challenges in keeping core SAP systems up-to-date are well known in the ecosystem and not unique to a particular region. Facing increasing cyber threats and stricter compliance regimes, security teams are understaffed and overworked. Many still struggle to be heard by their business leaders. We are all in an uncertain business climate, and organizations are all somewhere along a digital transformation journey, including migrations to S/4 HANA. Much effort is spent on organizational change and buy-in to do what is necessary, while trying to keep up with the need of the business to move faster.<BR /> <H1 id="toc-hId-638326086">Old World and New World Contrasts</H1><BR /> There were significant differences, though, in how these common security and compliance concerns were discussed and how they impacted their digital transformation. At the chance of sounding obvious, I found real Old World and New World contrasts.<BR /> <H2 id="toc-hId-570895300">Digital Vs Cyber Physical</H2><BR /> Growing up in Europe and crossing borders was easy. During the 20+ years I've lived in California that has only become easier, and most attendees despite a very international crowd were only a few hours travel from home. In Australia, cyber physical aspects brought on by geographical constraints played a large factor. In Europe that was almost entirely absent. The focus in Copenhagen was on systems and data, roles and authorizations, patching and custom code.<BR /> <BR /> But it also reflected the different stages in cloud transformation. My surprise in Melbourne was how enthusiastically the region was embracing cloud. Customers thus naturally were more concerned about the cyber resilience of SAP's cloud services. In Europe, attendees were far more likely to run on-premise, with a large part of the landscape still on SAP ECC 6. The customer focus was instead on how to run their SAP systems more secure and compliant themselves - with or without a third party service provider.<BR /> <H2 id="toc-hId-374381795">Building the New Within the Old Vs Raze and Replace</H2><BR /> Growing up close to Amsterdam, I am familiar with how Europe builds the new within the shell of the old. Copenhagen's city scape is an example of this. From the restoration and repurposing of old buildings into museums, stores or office buildings, to the integration of modern infrastructure into old squares, roads and cobble stone canal streets. New designs are intermixed with old houses, palaces, and places of worship from different eras.<BR /> <BR /> The United States - and especially the West - isn't like that. Australia isn't either. There is far more of a tendency to knock the old to the ground and build something new.<BR /> <BR /> How enthusiastically Australia embraced the cloud, how ever reluctant Europe appeared to be. I don't mean this as a criticism. The European approach makes its cities often more attractive and livable, and more easily manageable on foot. That aside, it takes its own skill and ingenuity to build the new within the old. We all have to deal with legacy systems and ensure that business operations are not impacted. SAP systems are integrated with other critical systems, and changes have cascading downstream effects that we all understand.<BR /> <BR /> Teams showed off innovative approaches in managing their challenges, the needs of the business, and business continuity. Some of my favorite sessions in the conference were from customers describing their DevOps approach to manage Enterprise Threat Detection findings, Security Notes, upgrades or custom code scanning, across large numbers of SAP systems across different business units and functions in their organizations. Their use of automation was no less sophisticated and mature than many cloud-native pipelines.<BR /> <BR /> But they were optimizing for systems with an end of life that is coming up soon.<BR /> <H1 id="toc-hId-48785571">Dark Clouds</H1><BR /> Many customers were already on S/4 HANA with at least some systems. Some were on RISE, and others were in the cloud with other third party providers. But the default was on-premise with an estate of various ECC 6 systems in the landscape, and often still contemplating their path forward. Regardless of migration journey, there was a reluctance to cloud that was remarkable. Especially, since many of the reasons given against the cloud were the same arguments Australian and American customers I talk to say they are moving to the cloud <EM>for</EM>. The most extreme expression of cloud reluctance came from one attendee during a RISE with SAP interactive Café Session:&nbsp;"We can't go cloud, <EM>because of security and compliance reasons</EM>".<BR /> <BR /> I won't dispute the self-assessment of this particular customer. Perhaps we won't be able to fully accommodate their particular needs through existing options or SAP's <A href="https://www.sap.com/australia/services-support/service-offerings/sovereign-cloud.html" data-cke-saved-href="https://www.sap.com/australia/services-support/service-offerings/sovereign-cloud.html" target="_blank" rel="noopener noreferrer">Sovereign Cloud</A> offering, yet. But organizations in Australia in the public or private sector come to different conclusions than their European peers. Customers moving to RISE or adopting other SAP cloud solutions mention security and compliance as key reasons for doing so.<BR /> <UL><BR /> <LI>(More*) up-to-date systems with the latest Security Notes applied (* depending on cloud service and deployment option; for instance, RISE Private Cloud Edition)</LI><BR /> <LI>Operating System and infrastructure updates</LI><BR /> <LI>Network configuration, infrastructure management</LI><BR /> <LI>Vulnerability scanning</LI><BR /> <LI>Security event detection and incident response management</LI><BR /> <LI>Recovery and cyber resilience</LI><BR /> </UL><BR /> They can outsource that while focusing on where they can add more value in serving the business. Aside from these, there are often broader, more strategic reasons.<BR /> <UL><BR /> <LI>Reducing data residency complexity through consolidation of systems by jurisdiction (EU, U.S., Australia Japan)</LI><BR /> <LI>Keys, secrets and encryption management</LI><BR /> <LI>Keeping up with worldwide cybersecurity related legal requirements</LI><BR /> </UL><BR /> When security resources are tight, Euros need to go far, and the pace of the business increases, a re-assessment of the security risks and merits involved in moving to the cloud compared to staying on-premise can be justified. With the 2027 date looming, this may be the best time to do so. Not all cloud security fears are justified. There is investment required to keep up with increasing security threats and upcoming legal requirements. You may not be able to tackle all.<BR /> <BR /> Meanwhile I recognize SAP must do better to explain the security and compliance benefits a move to the cloud brings. I hope I made a contribution to that for those at the conference. 2023-11-22T02:10:09+01:00 https://community.sap.com/t5/enterprise-resource-planning-blogs-by-members/create-a-table-with-foreign-key-relationship-in-eclipse/ba-p/13574357 Create a Table with foreign key relationship in Eclipse. 2023-11-27T11:25:00+01:00 dinesh_kumar45 https://community.sap.com/t5/user/viewprofilepage/user-id/211788 <B>Motivation:-</B><BR /> <BR /> In this blog you will learn how to create foreign key relationship between two table's.<BR /> <BR /> &nbsp;<BR /> <BR /> <STRONG>Overview:-</STRONG> Many of time we need to create Header and Item table with foreign key relationship on ABAP Could so might be this scenario will help to create relationship.<BR /> <BR /> &nbsp;<BR /> <BR /> <STRONG>Business Scenario:- </STRONG>Creating two table first as Header and second as Item table in Eclipse.<BR /> <BR /> <STRONG>Step:1-</STRONG><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/1-13.jpg" height="349" width="476" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Create a Header Table in Eclipse</P><BR /> <STRONG>Step:2-</STRONG><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/2-8.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Select Database Table</P><BR /> <STRONG>Step:3-</STRONG><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/3-11.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Give Database Table Name</P><BR /> &nbsp;<BR /> <BR /> <STRONG>Step:-4</STRONG><BR /> <BR /> Object assign into your Transport request and click on Finish.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Header-Table.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Header Table</P><BR /> Repeat step from 1 to 4 to create Item Table<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Item.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Item Table</P><BR /> <STRONG>Note:-</STRONG><BR /> <BR /> <STRONG>with</STRONG> <STRONG>foreign</STRONG> <STRONG>key</STRONG> <STRONG>[</STRONG>1<STRONG>..*,</STRONG>1<STRONG>]</STRONG> zheader_vbak<BR /> <BR /> here <STRONG>[1..*,1] </STRONG>- Presenting 1 Sales Order will have one or more than one items for one sales order.<BR /> <BR /> Now its time to see check table option in Table browser.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/4-6.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Header Table</P><BR /> &nbsp;<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/5-4.jpg" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Item table with Check Table option</P><BR /> Here Item has check table option which is presenting the foreign key relationship with Header&nbsp; ZHEADER_VBAK table.<BR /> <PRE class="language-abap"><CODE>Header Table Code <BR /> @EndUserText.label : 'Sales Order Header'<BR /> @AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE<BR /> @AbapCatalog.tableCategory : #TRANSPARENT<BR /> @AbapCatalog.deliveryClass : #A<BR /> @AbapCatalog.dataMaintenance : #ALLOWED<BR /> define table zheader_vbak {<BR /> key mandt : abap.clnt not null;<BR /> key vbeln : vbeln not null;<BR /> erdat : abap.dats;<BR /> ernam : abap.char(12);<BR /> vkorg : abap.char(4);<BR /> vtweg : abap.char(2);<BR /> spart : abap.char(2);<BR /> @Semantics.amount.currencyCode : 'zheader_vbak.waerk'<BR /> netwr : abap.curr(13,2);<BR /> waerk : abap.cuky;<BR /> faksk : abap.char(2);<BR /> last_changed_timestamp : timestampl;<BR /> <BR /> }<BR /> <BR /> Item Table Code<BR /> @EndUserText.label : 'Item Table'<BR /> @AbapCatalog.enhancementCategory : #NOT_EXTENSIBLE<BR /> @AbapCatalog.tableCategory : #TRANSPARENT<BR /> @AbapCatalog.deliveryClass : #A<BR /> @AbapCatalog.dataMaintenance : #ALLOWED<BR /> define table zitem_vbap {<BR /> key mandt : abap.clnt not null;<BR /> @AbapCatalog.foreignKey.screenCheck : false<BR /> key vbeln : vbeln not null<BR /> with foreign key [1..*,1] zheader_vbak<BR /> where mandt = zitem_vbap.mandt<BR /> and vbeln = zitem_vbap.vbeln;<BR /> key posnr : abap.numc(6) not null;<BR /> matnr : abap.char(18);<BR /> arktx : abap.char(40);<BR /> @Semantics.amount.currencyCode : 'zitem_vbap.waerk'<BR /> netpr : abap.curr(13,2);<BR /> @Semantics.amount.currencyCode : 'zitem_vbap.waerk'<BR /> netwr : abap.curr(13,2);<BR /> waerk : abap.cuky;<BR /> @Semantics.quantity.unitOfMeasure : 'zitem_vbap.kmein'<BR /> kpein : abap.quan(13,2);<BR /> kmein : abap.unit(3);<BR /> last_changed_timestamp : timestampl;<BR /> <BR /> }<BR /> </CODE></PRE><BR /> <STRONG>Summary:</STRONG><BR /> <BR /> This blog can help you to understand how to create foreign key relationship between two table using ADT tool.<BR /> <BR /> Hope this blog may help you in your use cases. Please do like follow and comment if you have an any query on this topic.<BR /> <BR /> Thanks<BR /> <BR /> Dinesh Kumar 2023-11-27T11:25:00+01:00 https://community.sap.com/t5/financial-management-blogs-by-sap/cloud-guardrails-effectively-making-your-cloud-accounts-secure-by-default/ba-p/13574536 Cloud Guardrails: Effectively Making Your Cloud Accounts Secure-by-Default 2023-11-28T00:02:15+01:00 JayThvV https://community.sap.com/t5/user/viewprofilepage/user-id/160843 <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/guardrails-along-a-curvy-highway-running-above-the-clouds-to-keep-motorists-safe-and-secure-add-mor-965545443.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic">AI-generated image of a highway with guardrails running through the clouds</P><BR /> <BR /> <H1 id="toc-hId-834874217">Our Most Effective Security Controls</H1><BR /> One of the most powerful security controls we have in place at SAP are our cloud guardrails, or preventive controls applied to our public cloud landscape (see <A href="https://blogs.sap.com/2021/04/05/preventative-controls-using-organizational-policies-to-provide-guardrails-for-saps-public-cloud-accounts/" target="_blank" rel="noopener noreferrer">this blog</A>, April 2021). These are controls such as <A href="https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_scps.html" target="_blank" rel="nofollow noopener noreferrer">AWS's service control policies</A> and their equivalents that apply to all cloud accounts, subscriptions and projects collected in an organization in each public cloud provider. Implementing such guardrails is a powerful approach that makes your cloud accounts more secure-by-default and prevents common misconfigurations that regularly prove to be the source of security breaches and data leaks. This is especially important because in the cloud developer teams, the actual users of cloud accounts, have much more autonomy than more traditional data centers with its variety of gatekeepers such as Change Control Boards or network security teams.<BR /> <BR /> SAP structured its cloud accounts into cloud provider organizations in 2018-2019. That was the precondition for our preventive controls to be feasible and practical. Speaking to peers and customers, we know that for many, such consolidation is not necessarily the case. Cloud guardrails can be implemented in multiple organizations, but the more organizations you have, the harder it becomes to manage these policies across all of them and leave gaps.<BR /> <BR /> SAP's first cloud guardrails went into effect in 2020 before most of the current landscape even existed. We have expanded on them ever since while the landscape continued to grow from ~4,000 cloud accounts to over four times that today. These guardrails are baseline security controls that prevent or auto-remediate common security misconfigurations that can occur in our cloud infrastructure. The automatic enforcement of these baseline security controls allows teams in the organization to focus on more complex and ambiguous security challenges higher up the stack, such as VMs, containers, IAM and application logic.<BR /> <BR /> Our guardrails have formed the core of our cloud security compliance success. Moreover, by taking care of "the basics" they have cascading effects elsewhere. When we deployed a Cloud Native Application Protection Platform (CNAPP) in July 2022, we could see the effect on our vulnerability management program as well. 99.6% of our open vulnerabilities were classified as "Informational" (instead of High, Medium or Low), indicating that they didn't pose an immediate risk to be addressed. This percentage lined up directly with the compliance rates of our cloud network security controls enforced by these guardrails, ensuring that these vulnerabilities were not exposed to the internet.<BR /> <BR /> Endless "state of cloud security" reports from any of the vendors in the market say the same thing: that organizations struggle to keep cloud misconfigurations under control. Cloud guardrails such as these are among the most effective measures to improve your cloud security and compliance posture.<BR /> <H1 id="toc-hId-638360712">Scope of the Cloud Guardrails</H1><BR /> The cloud guardrails are part of a larger SAP security policy framework for public cloud. The vast majority of these policies break down in high and medium severity which we scan for using a Cloud Security Posture Management (CSPM) solution to verify compliance with these policies. A subset of the high severity policies are implemented as organizational service control policies that apply as preventive controls to all cloud accounts in each cloud provider.<BR /> <BR /> &nbsp;<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/cloud-guardrails.png" height="294" width="534" /></P><BR /> To prevent disruption, in some cases controls only apply to new or updated resource configurations, which can leave you a legacy problem to work through. To reduce the scale of that - to stop the bleeding, if you will - the sooner you can implement such guardrails in your landscape, the better. Other controls, such as enforced logging, are non-disruptive and can be safely rolled out across the landscape.<BR /> <H2 id="toc-hId-570929926">List of Guardrails in Place</H2><BR /> Below is the list of cloud guardrails in place in SAP's global landscape (AWS, Azure and GCP). Due to the capabilities of cloud service providers there, the situation is more nuanced in China where a subset is implemented.<BR /> <UL><BR /> <LI>Enforce SAP password policy</LI><BR /> <LI>Setup SAP AD integration for all accounts</LI><BR /> <LI>Prevent the use of non-SAP domain users for all IAM admin users</LI><BR /> <LI>Enforce MFA for all accounts</LI><BR /> <LI>API logging cannot be deactivated</LI><BR /> <LI>API logging centrally collected and stored</LI><BR /> <LI>API logging must be stored for at least 6 months</LI><BR /> <LI>API logging central storage location must not be publicly accessible</LI><BR /> <LI>Storage access logging centrally collected and stored</LI><BR /> <LI>Ensure logging on Kubernetes master node is activated</LI><BR /> <LI>Ensure container registries are private</LI><BR /> <LI>Ensure only the latest 3 major Kubernetes versions can be started/deployed</LI><BR /> <LI>Security groups cannot have blocklisted ports (22, 23, 135, 111, 5500, 5900, 3389, 1433, 1434, 4333, 3306, 1521, 5432, 27017) exposed to the internet (0.0.0.0/0)</LI><BR /> <LI>Enforce SSL policies of TLS1.2+ for storage</LI><BR /> <LI>Enforce SSL policies of TLS1.2+ for load balancers</LI><BR /> <LI>Enforce SSL policies of TLS1.2+ for CDN services</LI><BR /> <LI>Enforce SSL policies of TLS1.2+ for fully managed database services</LI><BR /> <LI>Enforce encryption on disk volumes for new volumes and ensure encryption cannot be removed</LI><BR /> <LI>Enforce disk volumes and snapshots are not publicly accessible for everyone</LI><BR /> <LI>Enforce encryption on storage buckets</LI><BR /> <LI>Enforce storage buckets private by default</LI><BR /> <LI>Enforce secure storage transfer is enabled</LI><BR /> <LI>Enforce encryption of managed database services snapshots</LI><BR /> <LI>Ensure secure KMS/Key Vault configuration (key rotation active, access control and key policies, strong keys)</LI><BR /> </UL><BR /> All of these we can agree on are things you <EM>should&nbsp;</EM>be doing in cloud landscapes. All of these have associated NIST 800-53 controls or a Cloud Information Security (CIS) benchmark. These are not controversial. Unfortunately, these earlier mentioned vendor reports show that in many cases, cloud users struggle to meet these baseline controls.<BR /> <BR /> By implementing such baseline controls as cloud guardrails, we prevent our teams from getting it wrong. At the same time, they prevent malicious users from accessing what they shouldn't, or turn off logs we rely on to detect them. Ask your cloud service provider how you can deploy such guardrails in your landscape, too, to improve your security and compliance posture. 2023-11-28T00:02:15+01:00 https://community.sap.com/t5/technology-blogs-by-sap/how-to-test-a-btp-api-using-postman/ba-p/13575693 How to test a BTP API using POSTMAN 2023-11-30T15:55:46+01:00 BitanC https://community.sap.com/t5/user/viewprofilepage/user-id/153091 <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Hello There,</P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">We already have many theoretical blogs about how XSUAA flow works for a business user in a BTP application. So, I'm assuming that the reader colleague is already aware of how exactly the BTP authentication and authorisation flow works combining SAML, SAP XSUAA, SAP ID service/SAP IAS, App router and SAP BTP applications. Being a tricky one, if you need one refresher, you may visit <SPAN class="mention-scrubbed">rajaprasad.gupta</SPAN>&nbsp;'s blogpost : <A href="https://blogs.sap.com/2022/07/05/fundamentas-of-security-in-sap-btp-introduction-part-1/" target="_blank" rel="noopener noreferrer">Fundamentals of Security in SAP BTP | SAP Blogs</A></P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Here I'm going to showcase a simple mechanism i.e. how to test this auth flow through one client tool like POSTMAN.</P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><STRONG>How this auth flow works in a nutshell:</STRONG></P><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/XSUAA.png" /></P><BR /> (Diagram courtesy - <SPAN class="mention-scrubbed">rajaprasad.gupta</SPAN> )<BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><STRONG>Sample BTP app used:</STRONG> SAP Master Data integration service</P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><STRONG>Sample business user used :</STRONG> bitan.chakraborty@sap.com (assuming all the BTP roles are already provided)</P><BR /> &nbsp;<BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><STRONG>Collect XSUAA info :</STRONG></P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">You need to obtain client id and client secret for the targeted cloud foundry application service instance. Here's how you can have it handy :</P><BR /> <BR /> <UL style="direction: ltr;margin-top: 0in;margin-bottom: 0in;font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal" type="1"><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle" value="1"><SPAN style="font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal">In BTP Cockpit, go to the service instance -&gt; service key</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Click on View action of the service key </SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Copy the values of client id (A), client secret (B) &amp; XSUAA URL (C) as shown in following snap</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">You may use "Copy JSON" option to copy all the pairs in a text pad to keep them handy</SPAN></LI><BR /> </UL><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: SAPRegular, 'Helvetica Neue', Arial, sans-serif;overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/client-id.png" /></P><BR /> &nbsp;<BR /> <BR /> <STRONG>Collect bearer token using POSTMAN:</STRONG><BR /> <UL><BR /> <LI>Open a new session in POSTMAN</LI><BR /> <LI>Select POST as request type</LI><BR /> <LI>In request URL bar, paste the XSUAA URL (C) along with /oauth/token in suffix</LI><BR /> <LI>Go to the authorization tab and select "Type" as basic authentication</LI><BR /> <LI>In username, paste the previously noted client id (A)</LI><BR /> <LI>In password, paste the previously noted client secret (B)</LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/token1-1.png" /></P><BR /> <BR /> <UL style="direction: ltr;margin-top: 0in;margin-bottom: 0in;font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal" type="1"><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle" value="7"><SPAN style="font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal">Go to the Body tab of POSTMAN</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Add three payload entities : username , password &amp; grant type</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Username would be the Business User username which is used to access the end user application. It would be the corporate IDP(which is trusted by the BTP subaccount : custom IDP/IAS/SAP ID service) username.</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Similarly, password would be the end user's corporate password</SPAN></LI><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Grant type should be hardcoded as "password"</SPAN></LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Token2-1.png" /></P><BR /> <BR /> <UL><BR /> <LI style="font-family: Calibri;font-size: 11pt">Now POSTMAN is ready, hit send &amp; in the response body, collect the bearer token from the value of the attribute "access_token"</LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Token3.png" /></P><BR /> &nbsp;<BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><STRONG>Call the API with the bearer token using POSTMAN:</STRONG></P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">So, at this point, we have collected the JWT token for this request. Hence let's call the SAP Master Data integration service API with this bearer token using POSTMAN.</P><BR /> <BR /> <UL style="direction: ltr;margin-top: 0in;margin-bottom: 0in;font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal" type="1"><BR /> <LI style="margin-top: 0;margin-bottom: 0;vertical-align: middle" value="1"><SPAN style="font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal">In POSTMAN, open a new session and put the API URL as a GET request.</SPAN></LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Token4.png" /></P><BR /> <BR /> <UL><BR /> <LI style="font-family: Calibri;font-size: 11pt">Go to the authorization tab and select type as a Bearer Token and enter the collected JWT token</LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Token5-1.png" /></P><BR /> <BR /> <UL><BR /> <LI style="font-family: Calibri;font-size: 11pt">Now, click on Send to test the API connect and Bingo, we have the expected result output in the Body section.</LI><BR /> </UL><BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/Token6-1.png" /></P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt">So, this is how the XSUAA auth-flow works in BTP.</P><BR /> PS - I'd be glad if that helps someone in the fraternity (in a rusty day maybe? :-)) 2023-11-30T15:55:46+01:00 https://community.sap.com/t5/financial-management-blogs-by-sap/the-reasons-to-move-to-cloud-or-stay-on-premise-are-the-same-that-makes-no/ba-p/13575539 The Reasons to Move to Cloud or Stay On Premise Are the Same - That Makes No Sense To Me 2023-11-30T22:26:12+01:00 JayThvV https://community.sap.com/t5/user/viewprofilepage/user-id/160843 <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/11/frontal-view-of-a-frustrated-man-grinding-his-teeth-and-pulling-his-hair-manga-style-with-a-backg-399387375.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic">AI generated image of a frustrated man surrounded by clouds and on-premise servers</P><BR /> This week I saw an interesting data point in a <A href="https://www.computerweekly.com/news/366561173/SAP-needs-to-address-breakdown-in-trust" data-cke-saved-href="https://www.computerweekly.com/news/366561173/SAP-needs-to-address-breakdown-in-trust" target="_blank" rel="nofollow noopener noreferrer">ComputerWeekly article</A> (CW) from the opening keynote at the start of the UK and Ireland SAP User Group’s Connect23 annual conference:<BR /> <BLOCKQUOTE>Our latest member survey shows 79% of those that have moved to S/4HANA have an on-premise or hosted deployment. Of those that are planning to move to S/4HANA, 70% plan to move to on premise or hosted versions.</BLOCKQUOTE><BR /> This resonated with me after my experiences in <A href="https://blogs.sap.com/2023/11/22/dark-clouds-over-old-europe-impressions-from-sapinsider-emea-2023/" data-cke-saved-href="https://blogs.sap.com/2023/11/22/dark-clouds-over-old-europe-impressions-from-sapinsider-emea-2023/" target="_blank" rel="noopener noreferrer">Copenhagen at SAPinsider</A> a few weeks ago, which I also debated internally.<BR /> <BR /> Given my focus on cybersecurity and cloud compliance, my view is limited. Others are better qualified to discuss the relative functional and commercial merits of moving to RISE or stay on-premise and there can be a variety of factors at play I know nothing about. However, I try to understand from customers what their motivations are from a security perspective and what challenges they are working through. I also listen to customer-facing colleagues and our partners in the ecosystem.<BR /> <BR /> What is remarkable is that the reasons given by customers to decide one way or the other are often the same.<BR /> <H1 id="toc-hId-834904011">Reasons To Move To Cloud or Stay On Premise</H1><BR /> Both customers moving to RISE and those planning to stay on premise both tell me they do so for security and compliance reasons. That obviously leads to follow-up questions about how they came to their conclusions. Let's go over several common reasons I hear.<BR /> <H2 id="toc-hId-767473225">SAP Systems Are Critical&nbsp;to Business Operations</H2><BR /> Common across all customers are calling their SAP systems critical to Business Operations. It is for this reason that I love to collect "failure mode" stories from our customers. That is, what would happen if the SAP systems didn't work. Severe outages or security incidents have dramatic cascading cyber-physical impact that can affect supply chains, logistics and distribution, manufacturing, retail businesses and government services we rely on.<BR /> <BR /> Availability is critical.&nbsp;A marquee customer in the Aerospace &amp; Defense industry early this year told us that they had a major outage last year that "made us realize we rely even more on SAP than we thought we did". It was one of the drivers for them to move to RISE.<BR /> <BR /> Others maintain that they want to control the availability of their systems themselves, because of the criticality to their business.<BR /> <H2 id="toc-hId-570959720">We Are a Small Team That Can Only Do So Much</H2><BR /> Security teams are rarely large enough for the risks that they need to manage. Customer security teams for SAP systems are even smaller, and many security and compliance tasks may be performed by SAP system administrators rather than security specialists. Teams must focus where they have the most impact and provide the biggest value to the business. Therefore, tasks like change management, SAP and operating system upgrades, secure configuration, IAM and role-based access control (RBAC), networking, custom code security, threat detection and incident response all need to be prioritized.<BR /> <BR /> Availability is at the core of the reason why customers historically have struggled to keep systems up to date, especially for Security Notes or upgrades that require downtime. With often only few opportunities in a year for scheduled downtime, carefully negotiated with business owners, systems can fall years behind. We see this with RISE customers where we go through several cycles of upgrades and updates when we bring systems in.<BR /> <BR /> Some customers choose RISE or GROW to have SAP manage updates and Security Notes for them, as well as the underlying infrastructure, network configuration, threat detection, incident response and recovery. Others choose to do that themselves or engage a third party service- or hosting provider.<BR /> <H2 id="toc-hId-374446215">We Have a Large Estate of ECC6 Systems, Still</H2><BR /> Through natural growth and acquisitions, many customers ended up with dozens of SAP systems at a variety of versions and patch levels. A move to S/4HANA is often an opportunity for consolidation to bring the number of systems down and remove legacy and technical debt from the landscape. Some customers have already made the move but still run a number of legacy systems. Others are still in planning mode. We see that also reflected in the UKISUG survey in the CW article quoted above.<BR /> <BR /> We have customers who do that consolidation through RISE with the direct help of the vendor. Others are doing it themselves or again with a third party. I have heard customers mention their existing ECC6 estate and the looming 2027 deadline as a reason to move to the cloud with RISE, to revitalize their systems, move faster and take advantage of innovation. Other customers have given it as a reason why they are not yet ready for cloud.<BR /> <H2 id="toc-hId-177932710">We Need Data Residency</H2><BR /> Our cloud customers have told us for years that they need to ensure data remains within certain jurisdictions. The most common concern is around data transfers between the European Union (EU) and the United States (U.S.), despite agreements such as Safe Harbor, Privacy Shield and Privacy Shield 2. SAP and many of our customers have long ago started to side-step the problem and consolidation of SAP systems on S/4HANA are typically done by data residency jurisdiction.<BR /> <BR /> In supporting RISE sales deals with customers for whom security and compliance are of critical importance, data residency inevitably comes up. Figuring out the deployment strategy, including NS2, EU-only and Sovereign Cloud options, between the customer and the SAP team centers around juggling the various data residency and regulatory requirements. SAP's experience in navigating the laws and regulations in different jurisdictions for ourselves and with customers' industry peers is often appreciated in these discussions.<BR /> <BR /> Other customers decide that the solution to data residency compliance is to run their systems in geographical locations of their choice and control the problem themselves.<BR /> <H2 id="toc-hId--18580795">We Must Meet Complex Regulatory Compliance Requirements</H2><BR /> Virtually all customers I meet are in regulated industries, public sector, or considered critical infrastructure. They all need to meet complex regulatory compliance requirements. By extension, so does SAP. With the increasing rise in cybersecurity threats, governments around the world are sharpening requirements, adding to the challenge, especially for those with multinational business operations. We work with standard bodies, advisory boards and government institutions to provide input and feedback, and implement programs internally to support customers by the time new legislation goes into effect.<BR /> <BR /> Our security policies are abstractions based on a multitude of ISO and NIST standards, regional requirements such as KRITIS or ISMAP, and recognized security best practices. That gives us one policy set that instructs the organization what we expect of them, while meeting all the various compliance requirements for different regions and industries. There are entire teams dedicated to make that work. Its importance is reflected in the new name for SAP's security organization: SAP Global Security &amp; Cloud Compliance.<BR /> <BR /> Not all customers can bring the same resources to bear as SAP can. Many customers, therefore, cite their need to meet various cybersecurity and compliance regulations as a reason for moving to RISE. This includes customers in Aerospace &amp; Defense, Energy and Utilities, Manufacturing, Mining, Finance, Life Sciences, Food and Beverage, and Agribusiness.<BR /> <BR /> Yet other customers in the same industries tell us that they cannot move to the cloud for security and compliance reasons.<BR /> <H1 id="toc-hId--344177019">How Do We Make Sense of This?</H1><BR /> If those customers who chose RISE said one thing and committed on-premise customers said another, that would be easy to understand. I could imagine one set of customers stressing the need for agility in their business operations while expanding into new markets. Another set could mention a more conservative business culture or risk acceptance levels, or a need for greater control. But hearing the <EM>same</EM> arguments for a move to RISE used by other customers to stay on-premise<EM>&nbsp;</EM>is curious.<BR /> <BR /> The CW article provides a possible, uncomfortable explanation. It is in regard to a different topic, but we have to take customer trust into account. When some customers prefer to engage with a third-party service- or hosting provider&nbsp;that suggests that there is a segment that trusts our software to run their core business operations but doesn't trust SAP to run it for them.<BR /> <BR /> In lieu of a better explanation, we must assume that customer trust is a factor. That, then, is something we must work on. Increasing transparency about how SAP operates secure and compliant cloud services is a key pillar in <A href="https://www.youtube.com/watch?v=DmuHhFMmdaI" data-cke-saved-href="https://www.youtube.com/watch?v=DmuHhFMmdaI" target="_blank" rel="nofollow noopener noreferrer">SAP's security strategy</A>. We have been working for several months now to help facilitate that and I am excited for what we&nbsp;planned for 2024. 2023-11-30T22:26:12+01:00 https://community.sap.com/t5/technology-blogs-by-sap/seamless-insights-your-sap-s-4hana-cloud-weekly-analysis-companion/ba-p/13575927 Seamless Insights: Your SAP S/4HANA Cloud Weekly Analysis Companion 2023-12-01T12:22:39+01:00 SusanneGlaenzer https://community.sap.com/t5/user/viewprofilepage/user-id/152215 <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/285937_shutterstock_1069582520_2600-scaled.jpg" /></P><BR /> &nbsp;<BR /> <BR /> &nbsp;<BR /> <P class="image_caption" style="text-align: center;font-style: italic">Team discussing the service results</P><BR /> Looking to improve your SAP S/4HANA Cloud experience with best practice recommendations provided by SAP tailored to your system? We have a new companion for seamless insights and data exploration for you!<BR /> <BR /> Welcome to the SAP EarlyWatch Alert(EWA) service which is now available for SAP S/4HANA Cloud, Public Edition, through the <A href="https://me.sap.com/home" target="_blank" rel="noopener noreferrer">SAP for Me</A> portal. The service went live on November 20, 2023, and is available for all test and production tenants.<BR /> <BR /> To access the service results, you will need an S-User with the authorisation <EM>Service Reports and Feedback. </EM>You can request the authorisation through the provided link to the <A href="https://me.sap.com/preferences/authorizations" target="_blank" rel="noopener noreferrer">authorization request app</A>.<BR /> <BR /> The service includes:<BR /> <UL><BR /> <LI>You will find a weekly report for each tenant in the <A href="https://me.sap.com/app/ewaviewer" target="_blank" rel="noopener noreferrer">Reports app</A>.</LI><BR /> <LI>All alerts and recommendations are summarised across your tenants in the <A href="https://me.sap.com/ewa/solutionfinder" target="_blank" rel="noopener noreferrer">Solution Finder</A></LI><BR /> <LI>Usage and Performance KPIs are displayed in the <A href="https://me.sap.com/ewasop/soopDetail" target="_blank" rel="noopener noreferrer">EWA Dashboard</A></LI><BR /> </UL><BR /> The Solution Finder is a task list of alerts which can be edited by you to provide feedback to SAP on their relevance. You may find this <A href="https://blogs.sap.com/2023/06/23/hide-snooze-sap-earlywatch-alerts/" target="_blank" rel="noopener noreferrer">blog on the hide&amp;snooze</A> feature helpful, as it allows you to keep track on the recommendations you wish to implement.<BR /> <BR /> The weekly analysis focuses on usage and performance, as well as improvement potential for applications. The report covers various topics, including:<BR /> <UL><BR /> <LI>Most used apps with number of users, response times and trends</LI><BR /> <LI>Data footprint per business application</LI><BR /> <LI>Critical findings from Extended Warehouse Management (inconsistencies and failed executions)</LI><BR /> <LI>Performance of Fiori Launchpad</LI><BR /> <LI>Performance issues in Custom Extensibility objects</LI><BR /> <LI>Security Issues regarding Business Roles and Catalogs</LI><BR /> <LI>Test Management</LI><BR /> <LI>Potential for AI scenario usage</LI><BR /> </UL><BR /> Maybe you wonder which AI scenarios delivered by SAP are available in your product, which can compliment your application usage? You will find a suggestion list in the chapter Potential AI Scenarios based on the application areas relevant for you including links to accelerators. The used application areas are auto-detected in your tenant.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/Screenshot-2023-12-01-at-12.02.33.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic">Potential AI Scenarios</P><BR /> &nbsp;<BR /> <BR /> Furthermore, the <A href="https://me.sap.com/ewasop/soopDetail" target="_blank" rel="noopener noreferrer">EWA Dashboard</A> provides time series charts on app usage, number of users, response times. You can drill-down by SAP modules and business roles for more detailed information. For additional details, please refer to this <A href="https://blogs.sap.com/2023/09/11/earlywatch-alert-dashboard-new-statistics-about-used-sapui5-fiori-applications/" target="_blank" rel="noopener noreferrer">Blog on Fiori Statistics</A> .<BR /> <BR /> In case of a very critical finding, you have the option to receive email notifications. You can either use the <A href="https://me.sap.com/ewa/workspace/notifications/subscribe" target="_blank" rel="noopener noreferrer">One-Click-Subscription</A> or find more information on notifications in this <A href="https://blogs.sap.com/2020/09/15/stay-informed-about-new-sap-earlywatch-alerts-you-are-interested-in/" target="_blank" rel="noopener noreferrer">blog</A><BR /> <BR /> I hope you find the SAP EarlyWatch Alert service valuable in improving your SAP S/4HANA Cloud experience. If you have any further questions or need assistance, feel free to add a comment or open a case on SV-SCS-EWA. 2023-12-01T12:22:39+01:00 https://community.sap.com/t5/enterprise-resource-planning-blogs-by-sap/cloud-erp-close-up-tooling-for-erp-as-a-service-test-automation-in-sap-s/ba-p/13576681 Cloud ERP Close-Up: Tooling for ERP as a Service Test Automation in SAP S/4HANA Cloud, Public Edition 2023-12-04T15:16:38+01:00 BeSchulze https://community.sap.com/t5/user/viewprofilepage/user-id/8440 <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/CloudERPCloseUp_Banner-1.png" /></P><BR /> Welcome to the last <A href="https://blogs.sap.com/tag/clouderp_closeup/" target="_blank" rel="noopener noreferrer">Cloud ERP Close-Up</A>&nbsp;of the year!<BR /> <BR /> SaaS is a vital catalyst for many companies to adopt trends and innovate technologies much faster for significantly improved business velocity and resilience. The definition of SaaS is rather technical: SaaS is a method of service delivery and licensing in which the service is accessed online via a subscription rather than bought and installed on individual computers.<BR /> <BR /> But, when looking at SaaS ERP, Enterprise Resource Planning, nowadays often even coined as NRP, Networked Resource Planning (as the Supply Chains become more and more integrated into the overall demand-driven planning and fulfillment process), the business perspective of SaaS is much more interesting.<BR /> <BR /> There are fundamental differences in expectation and delivery between <STRONG>Consumption as a Product and Consumption as a Service</STRONG>.<BR /> <TABLE style="border-collapse: collapse;width: 100%" border="1"><BR /> <TBODY><BR /> <TR><BR /> <TD style="width: 50%"><STRONG>Characteristics of a Product</STRONG></TD><BR /> <TD style="width: 50%"><STRONG>Characteristics of a Service</STRONG></TD><BR /> </TR><BR /> <TR><BR /> <TD style="width: 50%">A thing</TD><BR /> <TD style="width: 50%">An activity</TD><BR /> </TR><BR /> <TR><BR /> <TD style="width: 50%">Products are used</TD><BR /> <TD style="width: 50%">Services are experienced</TD><BR /> </TR><BR /> <TR><BR /> <TD style="width: 50%">A product can be finalized and shipped</TD><BR /> <TD style="width: 50%">A service is constantly evolving</TD><BR /> </TR><BR /> </TBODY><BR /> </TABLE><BR /> But to get there, you need to transform your organization from consuming an ERP as a Product to consuming an ERP as a Service.<BR /> <UL><BR /> <LI>In an "<STRONG>ERP as a Product</STRONG>" scenario, customers buy and own software to get it started, run, and upgrade it. Upgrades are planned at customer pace, with large IT teams responsible for preparing upgrades from both angles: technology and business. Extensive documentation is appreciated; the more, the better. It´s the project team's job to be prepared, and they do have the capacity to consume it. Customers used to practice a larger ERP upgrade every 1-4 years because the effort doesn't allow them to catch up faster.</LI><BR /> <LI>In an "<STRONG>ERP as a Service</STRONG>" scenario, we talk about a business service activation. An upgrade becomes a significantly smaller event, almost towards a near-non-event. The solution provider takes care of nearly any aspect to keep it running. The provider does not only provide the infrastructure but also gradually steps into the task list of the customer's IT organization.</LI><BR /> </UL><BR /> &nbsp;<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/1-2.jpg" /></P><BR /> <EM>Figure 1: Stages of buying and running Software as a Product vs. a Service.</EM><BR /> <BR /> &nbsp;<BR /> <BR /> Now, we need to enable you to live up to the agile SaaS consumption models. Therefore, many things are fundamentally different if you run "ERP as a Service", here is a list of some tools reflecting the natural consequence:<BR /> <UL><BR /> <LI>Updates require running at high velocity and zero to very low risk</LI><BR /> <LI>Tools support initial activation, availability, integrity, security, and upgradability. Upgrade knowledge, a key differentiator for a few highly specialized teams, must become ubiquitous as the specialized teams serve other purposes</LI><BR /> </UL><BR /> <UL><BR /> <LI style="list-style-type: none"><BR /> <UL><BR /> <LI><A href="https://community.sap.com/topics/activate" target="_blank">SAP Activate </A>methodology gives guidance</LI><BR /> <LI>Solution scope (<A href="https://me.sap.com/processnavigator" target="_blank" rel="noopener noreferrer">Process Navigator</A>) fully transparent via SAP Signavio Process Navigator, latest delta scope per <A href="https://help.sap.com/docs/SAP_S4HANA_CLOUD?state=DRAFT&amp;task=whats_new_task" target="_blank" rel="noopener noreferrer">“What´s New”</A>, individual customer delta scope via <A href="https://help.sap.com/docs/link-disclaimer?site=https%3A%2F%2Fwww.sap.com%2Frasd" target="_blank" rel="noopener noreferrer">RASD</A> (Release Assessment and Scope Dependency)</LI><BR /> <LI>The experience of your <A href="https://go.support.sap.com/roadmapviewer/" target="_blank" rel="noopener noreferrer">Partner </A><A href="https://go.support.sap.com/roadmapviewer/" target="_blank" rel="noopener noreferrer">of</A> <A href="https://go.support.sap.com/roadmapviewer/" target="_blank" rel="noopener noreferrer">choice</A> matters</LI><BR /> <LI>"<A href="https://blogs.sap.com/2017/08/03/sap-activate-explore-phase-use-fit-to-standard-to-confirm-business-process-fit-and-identify-gaps-in-your-sap-s4hana-cloud-implementation/" target="_blank" rel="noopener noreferrer">Fit 2 Standard</A>" vs "Fit 2 Gap" Workshops</LI><BR /> <LI>Different systems support lifecycle journey: <A href="https://www.sap.com/cmp/oth/crm-s4hana/index.html" target="_blank" rel="noopener noreferrer">TRIAL</A> | <A href="https://go.support.sap.com/roadmapviewer/" target="_blank" rel="noopener noreferrer">Starter System </A>| Test-System | DEV-System | P-System</LI><BR /> <LI>Supported Application Lifecycle Management with <A href="https://go.support.sap.com/roadmapviewer/" target="_blank" rel="noopener noreferrer">CALM</A></LI><BR /> <LI>ONE Configuration framework for everything <A href="https://community.sap.com/topics/s4hana-cloud/central-business-configuration" target="_blank">CBC</A></LI><BR /> <LI><A href="https://community.sap.com/topics/s4hana-cloud/cross-capabilities/extensibility" target="_blank">Extensibility</A> in the cloud, recommended via PaaS (<A href="https://www.sap.com/products/technology-platform.html" target="_blank" rel="noopener noreferrer">BTP</A>) or <A href="https://blogs.sap.com/2023/04/26/developer-extensibility-in-sap-s-4hana-cloud-abap-environment/" target="_blank" rel="noopener noreferrer">on </A><A href="https://blogs.sap.com/2023/04/26/developer-extensibility-in-sap-s-4hana-cloud-abap-environment/" target="_blank" rel="noopener noreferrer">stack</A></LI><BR /> <LI><A href="http://api.sap.com/" target="_blank" rel="noopener noreferrer">API Hub </A>for Integration Transparency</LI><BR /> <LI>System <A href="https://blogs.sap.com/2023/01/31/do-you-want-to-see-how-your-organization-is-using-sap-s-4hana-cloud-public-edition/" target="_blank" rel="noopener noreferrer">Usage</A> for customer</LI><BR /> </UL><BR /> </LI><BR /> </UL><BR /> And there is one essential aspect that supports you after an upgrade that I want to shed light on in today's Close-Up cadence: the ability of the SaaS ERP to support an <STRONG>automated testing framework along with a robust testing strategy</STRONG>, enabling partners and customers to manage periodic upgrades with minimal effort and business disruption. It is designed to support customers in covering tests across their own data and scenarios between the "Q"-system and "P"-system upgrade period.<BR /> <BR /> <STRONG>Test automation tool</STRONG>&nbsp;(<STRONG>TAT</STRONG>), natively available within the SAP S/4HANA Cloud, public edition solution, provides the necessary feature set to create an automated regression suite for SaaS ERP testing needs. The tool comes as a no-code, no-installation, cloud-native solution. It has&nbsp;<STRONG>300+</STRONG>&nbsp;standard test automates across best practices (scope items) and continues to augment its repository with every release.<BR /> <BR /> <EM>Check out the </EM><A href="https://support.sap.com/content/dam/SAAP/SAP_Activate/S4H_640%20Automated%20Test%20Scripts%20Index.xlsx" target="_blank" rel="noopener noreferrer"><EM>Automated Test Script Index</EM></A><EM> to get to know the full scope items that have test automates available with their pre-requisites.</EM><BR /> <BR /> Salient features of TAT:<BR /> <OL><BR /> <LI>The execution engine (for automated tests) of the test automation tool is deployed on the SAP Business Technology Platform (SAP BTP) and is provisioned (multi-tenancy subscription for test tool service) for SAP S/4HANA Cloud usage</LI><BR /> <LI>It is available for use only on the&nbsp;<STRONG>Q/T-system</STRONG> of the SAP S/4HANA Cloud, public edition solution for customers<BR /> <OL><BR /> <LI><EM>Check out the Help document: </EM><A href="https://help.sap.com/docs/SAP_S4HANA_CLOUD/1e9ba004e0504506a135afda960e9495/b076dd00e70b4b30b1c250be655d45d2.html" target="_blank" rel="noopener noreferrer"><EM>Manage Your Test Process</EM></A><EM>&nbsp;to get started with&nbsp;<STRONG>TAT</STRONG></EM></LI><BR /> </OL><BR /> </LI><BR /> <LI>It is now also available and accessible in partner test demo and development (TDD) systems on the 3-system landscape. It is not available in the 2-system landscape for the following tenants:<BR /> <OL><BR /> <LI>Partner Demo Customizing</LI><BR /> <LI>Trial Customizing / Development</LI><BR /> <LI>Customer Sandbox Customizing / Development</LI><BR /> </OL><BR /> </LI><BR /> <LI>It provides a mechanism for test data maintenance and re-useability in test automates using a framework called <STRONG>Test Data Container (TDC)</STRONG><BR /> <OL><BR /> <LI>Check out the blog post <A href="https://blogs.sap.com/2021/09/01/centralized-test-data-management-with-test-data-container/" target="_blank" rel="noopener noreferrer"><EM>Centralized Test Data Management with Test Data Container</EM></A>&nbsp;<EM>for a detailed understanding of TDC and how to leverage it</EM></LI><BR /> </OL><BR /> </LI><BR /> <LI>Supports both user interface (UI) &amp; API test automation frameworks. Customers can create integrated test automates that contain UI process steps chained together with API automates for one seamless end-to-end process flow<BR /> <OL><BR /> <LI><EM style="font-size: 1rem">Refer to the blog post: </EM><A style="font-size: 1rem" href="https://blogs.sap.com/2023/07/26/creating-api-automates-using-the-sap-s-4hana-test-automation-tool/" target="_blank" rel="noopener noreferrer"><EM>Creating API Automates Using the SAP S/4HANA Cloud Test Automation Tool</EM></A><EM style="font-size: 1rem"> for a detailed understanding on working with API automates</EM></LI><BR /> </OL><BR /> </LI><BR /> </OL><BR /> &nbsp;<BR /> <H2 id="toc-hId-964017629"><STRONG>Adapting Test Scripts – How Customers Can Create Their Own Test Processes</STRONG></H2><BR /> While&nbsp;<STRONG>TAT</STRONG>&nbsp;provides standard test scripts for most scope items, there will always be a need for customers to either define their own scripts or to adapt the standard ones as per their business process. The&nbsp;<STRONG>TAT&nbsp;</STRONG>tool also provides recording capabilities to introduce new process steps to custom test processes and the ability to reuse existing process steps. Standard test processes are maintained by SAP and cannot be modified. Custom test process can either be created from scratch or based on a copy of a standard test process.<BR /> <BR /> <EM>&nbsp;</EM><BR /> <BR /> <EM>Get a more detailed understanding in this blog post: </EM><A href="https://blogs.sap.com/2023/10/11/adapt-test-process-in-sap-s-4hana-cloud-test-automation-tool/" target="_blank" rel="noopener noreferrer"><EM>Adapt Test Process in SAP S/4HANA Cloud Test Automation Tool</EM></A><EM>&nbsp;</EM><BR /> <BR /> <STRONG>&nbsp;</STRONG><BR /> <H2 id="toc-hId-767504124"><STRONG>UI Control Repository</STRONG>&nbsp;<STRONG>– A Framework to Propagate App Level UI Updates Across Test Processes</STRONG></H2><BR /> UI controls are interactive controls such as buttons, inputs, checkboxes, and more, which are present on SAP Fiori and SAP GUI apps. They are UI control objects that can be used across applications. These controls could be changed or updated as part of updates or upgrades.<BR /> <BR /> The effectiveness of any test automation tool is gauged by its ability to manage application changes introduced by regular updates and upgrades. Test automates created earlier must incorporate these changes seamlessly with minimal manual intervention.<BR /> <BR /> <STRONG>Example: </STRONG>A manual action step like the "OK" button control has changed to "Go" during an upgrade. All the apps referenced by test automates created before the upgrade should reflect this change.<BR /> <BR /> The UI repository is a central collection of these controls, making them modular and reusable within the TAT framework. Changes made to the objects in the UI repository ensure changes are reflected across relevant apps that use this control as part of the test automates.<BR /> <BR /> <EM>In this blog post, </EM><A href="https://blogs.sap.com/2021/08/30/sap-s-4hana-cloud-test-automation-tool-ui-control-repository/" target="_blank" rel="noopener noreferrer"><EM>SAP S/4HANA Cloud Test Automation Tool – UI Control Repository</EM></A><EM>, you can get a good understanding of how this framework can be leveraged</EM><BR /> <BR /> <STRONG>&nbsp;</STRONG><BR /> <H2 id="toc-hId-570990619"><STRONG>SAP Activate: Your Guide for Test Automation During Implementation and Upgrades</STRONG></H2><BR /> SAP's Activate methodology provides customers with a comprehensive testing strategy and approach to be followed during different project scenarios such as <STRONG>implementations and upgrades.</STRONG><BR /> <BR /> <STRONG>&nbsp;</STRONG><BR /> <OL><BR /> <LI><STRONG>Implementation Projects</STRONG>: <EM>Check out </EM><A href="https://go.support.sap.com/roadmapviewer/#/group//roadmapContentPage/82b2db84548d41209cda972f0fac428b:w10,p3" target="_blank" rel="noopener noreferrer"><EM>SAP Activate for SAP S/4HANA Cloud, public edition (3-system landscape)</EM></A><EM> for a complete <STRONG>testing guidance</STRONG> across project phases.</EM><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/2-3.jpg" /><EM>Figure 2: SAP Activate for implementation filtered by content testing.</EM></LI><BR /> <LI><STRONG>Upgrade Projects: </STRONG>Check&nbsp;<A href="https://go.support.sap.com/roadmapviewer/#/group/1B9D1B79-D03B-42F6-937C-08DE7C252BB6/roadmapContentPage/b6cc8dc5bbb749a59e1e21a4796c796f:w3" target="_blank" rel="noopener noreferrer">"SAP Activate for Upgrade of SAP S/4HANA Cloud, public edition, three-system landscape"</A><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/3-1.jpg" /><EM>Figure 3: SAP Activate for upgrades filtered by content testing.</EM></LI><BR /> </OL><BR /> <H2 id="toc-hId-374477114"></H2><BR /> <H2 id="toc-hId-177963609"><STRONG>Post-Upgrade Test (PUT): Safeguarding Customer Systems Through Upgrades and Updates</STRONG></H2><BR /> <STRONG>PUT</STRONG> is a quality verification service executed on customer systems post update/upgrade of their SAP S/4HANA Cloud, public edition <STRONG>T-system</STRONG>. This service, as a standard, runs <STRONG>SAP-delivered automates</STRONG> using <STRONG>customer-defined scope and data</STRONG> to regression check the impact (if any) on standard features post application update/upgrade. Customers can also run their custom automates as part of this process.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/4-4.png" /></P><BR /> <EM>Figure 4: Post-Upgrade Test (PUT) – Process Flow</EM><BR /> <H2 id="toc-hId--18549896"></H2><BR /> <H2 id="toc-hId--215063401"><STRONG>Cloud Application Lifecycle Management (CALM) integration with Test Automation Tool (TAT)</STRONG></H2><BR /> <STRONG>CALM </STRONG>is SAP's cloud-native tool available to SAP S/4HANA Cloud, public edition customers by default, to centrally manage all tasks related to their solution implementation and post-implementation operations. In the context of testing, it enables central planning and orchestration of test plans and cases across manual and automated test cases. Test automates (standard and custom) defined in <STRONG>TAT</STRONG> can be integrated into <STRONG>CALM </STRONG>for central execution and monitoring of all testing activities.<BR /> <BR /> <EM>Read this blog post for a real-world experience on running test automates from CALM:&nbsp; </EM><A href="https://blogs.sap.com/2023/07/11/step-by-step-guide-running-automation-script-in-sap-cloud-alm/" target="_blank" rel="noopener noreferrer"><EM>Step by Step Guide – Running Automation Script in SAP Cloud ALM</EM></A><BR /> <BR /> <EM>Watch this informative video on how to synchronize standard test automates from TAT into CALM: </EM><A href="https://www.youtube.com/watch?v=jUtrWioQM9I" target="_blank" rel="nofollow noopener noreferrer"><EM>Integrate the Test Automation Tool for SAP S/4HANA Cloud</EM></A><BR /> <BR /> <EM>Check out this help link on how to import custom test cases into CALM:</EM> <A href="https://help.sap.com/docs/cloud-alm/applicationhelp/importing-automated-test-cases" target="_blank" rel="noopener noreferrer"><EM></EM></A><A href="https://help.sap.com/docs/cloud-alm/applicationhelp/importing-automated-test-cases" target="test_blank" rel="noopener noreferrer">https://help.sap.com/docs/cloud-alm/applicationhelp/importing-automated-test-cases</A><BR /> <BR /> &nbsp;<BR /> <H2 id="toc-hId--411576906"><STRONG>Using Third-Party Test Automation Tools via Cloud Application Lifecycle Management (CALM)</STRONG></H2><BR /> There can be scenarios in the customers' landscape where there is a need to manage test automates connected to other cloud products such as SAP SuccessFactors or third-party software. SAP CALM supports integration with "Tricentis Test Automation for SAP".<BR /> <BR /> A prudent testing strategy for customers could be to adopt <STRONG>TAT</STRONG> for test processes primarily driven by SAP S/4HANA Cloud, public edition as it comes with pre-built standard automates for most processes and leverage Tricentis Test Automation to build the test scripts for processes driven primarily from other cloud systems – all this orchestrated and managed centrally within <STRONG>CALM.</STRONG><BR /> <BR /> <EM>Check out this community page to understand the </EM><A href="https://answers.sap.com/questions/13588610/differences-between-sap-s4hana-cloud-test-automati.html" target="_blank" rel="noopener noreferrer"><EM>Differences between SAP S/4HANA Cloud Test Automation Tool vs. Tricentis Test Automation</EM></A><BR /> <BR /> <EM>Check out the help document </EM><A href="https://help.sap.com/docs/cloud-alm/setup-administration/tricentis-test-automation-for-sap" target="_blank" rel="noopener noreferrer"><EM>Setting Up Tricentis Test Automation for SAP Integrated with SAP Cloud ALM</EM></A><BR /> <BR /> Given the speed of innovation being delivered via our cloud solutions, leveraging test automation with CALM to do regression testing for public cloud solutions is a must-have strategy for any organization so that businesses can adopt new capabilities with minimum disruption and testing change management during upgrades.<BR /> <H2 id="toc-hId--608090411"></H2><BR /> <H2 id="toc-hId--804603916"><STRONG>Wrap Up</STRONG></H2><BR /> Testing is a vital catalyst for a smooth upgrade experience and improved business velocity and trust. I hope that with this blog post, I can give you some food for thought on how to make the best use of the tooling we have embedded in our solution. If you want to improve your system's resilience and increase your test coverage, I have good news for you: It is of the utmost importance to do so, too.<BR /> <BR /> Engage with us to take the next steps and don’t miss the chance to visit this key page in our SAP Community <A href="https://community.sap.com/topics/s4hana-cloud/automation-testing" target="_blank">Automated Testing in SAP S/4HANA Cloud, Public Edition</A>. Here, you will find the latest and greatest information about automated testing, enablement and activation information, tips and tricks, the most recent features added to the tool landscape, and an expert chat.<BR /> <BR /> Another great source of information is the following <A href="https://me.sap.com/notes/2129147" target="_blank" rel="noopener noreferrer">SAP Note.</A><BR /> <BR /> I am excited to learn how much you leverage test automation today. Feel free to drop a comment.<BR /> <BR /> For further questions, I encourage you to leverage our <A href="https://answers.sap.com/questions/ask.html?primaryTagId=3b727198-80b8-459f-b8ec-5bcf6f9578d5" target="_blank" rel="noopener noreferrer">SAP Community.</A><BR /> <BR /> I hope to see you as a frequent follower of our <A href="https://blogs.sap.com/tag/clouderp_closeup/" target="_blank" rel="noopener noreferrer">Cloud ERP Close-Up</A> – stay tuned and discover more product highlights in 2024.<BR /> <BR /> All the best,<BR /> <BR /> Bert<BR /> <BR /> Follow us on <A href="https://twitter.com/sap" target="_blank" rel="nofollow noopener noreferrer">@SAP</A> and #S4HANA #Cloud, and myself on <SPAN class="mention-scrubbed">bert.schulze</SPAN>, <A href="https://www.linkedin.com/in/bert-oliver-schulze" target="_blank" rel="nofollow noopener noreferrer">LinkedIn</A> or <A href="https://twitter.com/beschulze" target="_blank" rel="nofollow noopener noreferrer">Twitter</A>.<BR /> <H3 id="toc-hId--947266071"></H3><BR /> <H3 id="toc-hId--1143779576"><STRONG>Inside SAP S/4HANA Podcast</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">As always, I would like to encourage you to subscribe to our podcast "<A href="https://open.sap.com/static/inside-sap/index.php?p=archive" target="_blank" rel="noopener noreferrer">Inside SAP S/4HANA</A>". This podcast leverages the unique knowledge and expertise of SAP S/4HANA Cloud, public edition product experts, partners and customers to address objects of interest by sharing product insights and project best practice. There is no customer success without product success and project success; we share all ingredients with you to get to the next level and make your SAP S/4HANA Cloud, public edition project a success. Subscribe now and benefit from the shared knowledge.</SPAN></SPAN></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--1340293081"><STRONG>openSAP Microlearnings for SAP S/4HANA Cloud</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">Our openSAP microlearnings for SAP S/4HANA Cloud offer an exciting new learning opportunity. What began with a small batch of 20 videos, has now become a channel with more than 50 microlearnings that have generated over 20,000 views. Today we cover multiple lines of business such as finance, manufacturing, and supply chain management, and key technology topics like Master Data Management, extensibility, SAP User Experience, and upgrade management. We are continuously adding new microlearnings to the <A href="https://blogs.sap.com/2020/05/07/boost-your-knowledge-with-sap-s-4hana-microlearnings/" target="_blank" rel="noopener noreferrer">SAP S/4HANA Cloud channel</A>, so make sure you check them out.</SPAN></SPAN></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--1536806586"><STRONG>Your Voice Matters!</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">If you want to learn more and actively engage with SAP subject matter experts on SAP S/4HANA Cloud, public edition, join our <A href="https://community.sap.com/topics/s4hana-cloud" target="_blank">SAP S/4HANA Cloud, public edition topic page on SAP Community</A>. The community brings together customers, partners, and SAP experts and has a clear mission: deliver an interactive community to engage with one another about best practices and product solutions. We invite you to explore our ‘one-stop shop’ as the central place for all resources, tools, content questions, answers and connect with experts to guide you through your journey to SAP S/4HANA Cloud, public edition.</SPAN></SPAN></P><BR /> <BR /> <H3 id="toc-hId--1733320091"><STRONG>More Information:</STRONG></H3><BR /> <UL><BR /> <LI><A href="https://blogs.sap.com/2023/07/26/highlights-of-the-sap-s-4hana-cloud-public-edition-2308-release/" target="_blank" rel="noopener noreferrer">Highlights of the SAP S/4HANA Cloud, public edition 2308 release</A></LI><BR /> <LI><A href="https://blogs.sap.com/2023/07/27/sap-s-4hana-cloud-public-edition-2308-intelligent-erp-update/" target="_blank" rel="noopener noreferrer">SAP S/4HANA Cloud, public edition 2308 intelligent ERP update</A></LI><BR /> <LI><A href="https://community.sap.com/topics/s4hana-cloud/product-releases" target="_blank">SAP S/4HANA Cloud, public edition release info</A></LI><BR /> <LI><A href="https://blogs.sap.com/tag/pscc_enablement/" target="_blank" rel="noopener noreferrer">Release blog posts</A></LI><BR /> <LI><A href="https://www.youtube.com/playlist?list=PLWV533hWWvDnnyN2j-CcUheNN-GaNCb3H" target="_blank" rel="nofollow noopener noreferrer">YouTube playlist for SAP S/4HANA Cloud, public edition</A></LI><BR /> <LI><A href="https://www.youtube.com/playlist?list=PLWV533hWWvDnmdq6Ps2LZLybNjZWy5A2b" target="_blank" rel="nofollow noopener noreferrer">YouTube playlist for SAP S/4HANA Cloud, private edition</A></LI><BR /> <LI><A href="https://chart-bdmaicr0au.dispatcher.eu2.hana.ondemand.com/index.html?hc_reset" target="_blank" rel="nofollow noopener noreferrer">SAP S/4HANA PSCC Digital Enablement Wheel</A></LI><BR /> <LI><A href="https://blogs.sap.com/2023/07/20/watch-the-replays-of-our-exclusive-sap-s-4hana-cloud-public-edition-2308-early-release-series/" target="_blank" rel="noopener noreferrer">Early Release Series</A></LI><BR /> <LI><A href="https://open.sap.com/static/inside-sap/index.php?p=archive" target="_blank" rel="noopener noreferrer">Inside SAP S/4HANA Podcast</A></LI><BR /> <LI><A href="https://microlearning.opensap.com/" target="_blank" rel="noopener noreferrer">openSAP Microlearnings for SAP S/4HANA Cloud</A></LI><BR /> <LI><A href="https://me.sap.com/processnavigator/SolS/EARL_SolS-013/2308?region=DE" target="_blank" rel="noopener noreferrer">Best practices for SAP S/4HANA Cloud, public edition</A></LI><BR /> <LI><A href="https://community.sap.com/topics/s4hana-cloud" target="_blank">SAP Community</A></LI><BR /> <LI><A href="https://help.sap.com/doc/7c9e0bbbd1664c2581b2038a1c7ae4b3/latest/" target="_blank" rel="noopener noreferrer">Feature Scope Description</A></LI><BR /> <LI><A href="https://help.sap.com/doc/ce01d82756b947a1a043a5d5a3204226/latest/" target="_blank" rel="noopener noreferrer">What’s New</A></LI><BR /> <LI><A href="https://help.sap.com/viewer/p/SAP_S4HANA_CLOUD" target="_blank" rel="noopener noreferrer">Help Portal Product Page</A></LI><BR /> </UL><BR /> &nbsp; 2023-12-04T15:16:38+01:00 https://community.sap.com/t5/technology-blogs-by-sap/event-recap-sap-maxattention-summit-2024/ba-p/13576787 Event Recap – SAP MaxAttention Summit 2024 2023-12-04T15:43:03+01:00 Goldschmitt https://community.sap.com/t5/user/viewprofilepage/user-id/696099 <P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Goldschmitt_0-1708359743801.png" style="width: 947px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/67760i4D34CDDCBA69A8A8/image-dimensions/947x197?v=v2" width="947" height="197" role="button" title="Goldschmitt_0-1708359743801.png" alt="Goldschmitt_0-1708359743801.png" /></span></P><P>We sincerely thank everyone who joined us for the <STRONG>SAP MaxAttention Summit 2024&nbsp;</STRONG>at the brand-new Heidelberg Congress Center (HCC) in Heidelberg <STRONG>on April 23-25, 2024</STRONG>.</P><P><SPAN><SPAN class="">We’re delighted to share&nbsp;<A class="" title="https://dam.sap.com/mac/d/y63ytph?hierarchy=true&amp;sort=alphabetical" href="https://dam.sap.com/mac/d/Y63yTPh?hierarchy=true&amp;sort=Alphabetical" target="_blank" rel="noreferrer noopener">session recordings and presented slide decks</A>&nbsp;inviting you to relive the event.</SPAN></SPAN></P><P><SPAN><SPAN class=""><SPAN class="">Please find the detailed recap event blog post in our <A class="" title="https://community.sap.com/t5/sap-maxattention-blog-posts/sap-maxattention-summit-2024-maximize-transformation-success/ba-p/13692594" href="https://community.sap.com/t5/sap-maxattention-blog-posts/sap-maxattention-summit-2024-maximize-transformation-success/ba-p/13692594" target="_blank">SAP MaxAttention Community.</A>&nbsp;</SPAN></SPAN></SPAN></P><P>Over the course of two days, you had the chance to interact with members of the SAP Executive Board Thomas Saueressig and Muhammad Alam, attend keynotes and eXpert eXchange sessions on topics like Business AI, clean core with SAP Business Technology Platform, and enterprise architecture, and learn from your peers during networking breaks and customer experience sessions. We were also happy to see that you took advantage of the opportunity to attend our post-event workshops at the nearby SAP headquarters in Walldorf to meet with SAP MaxAttention and SAP solution experts.</P><P>We shared and discussed best practices for maximizing value from ERP-centric SAP landscapes and enabling transformation with the latest SAP features:</P><UL><LI>Increase agility and benefit from recent innovations and technical adoption by moving to SAP S/4HANA Cloud through RISE with SAP.</LI><LI>Achieve a clean core with SAP Business Technology Platform and AI-powered tools and services.</LI><LI>Explore further SAP capabilities included in mobile applications, SAP Datasphere, and SAP Analytics Cloud.</LI><LI>Improve operational efficiency with SAP cloud solutions for supply chain management and procurement, and drive business process automation with SAP Signavio and LeanIX.</LI></UL><P>The summit was a true testament to the power of our SAP MaxAttention community. It was very rewarding to see people networking, forging new relationships, and sharing experiences and best practices. We hope that your impressions will resonate with you long after the event, and we look forward to welcoming you at the next SAP MaxAttention Summit.</P><P>The Summit location - Heidelberg Congress Center (HCC)</P><P><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HCC.jpg" style="width: 353px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/89961i599842F569220AEF/image-dimensions/353x265?v=v2" width="353" height="265" role="button" title="HCC.jpg" alt="HCC.jpg" /></span></P><P><SPAN class=""><SPAN class="">The evening event was held at the Palazzo Mannheim on Wednesday, April 24, 2024.<SPAN>&nbsp;</SPAN></SPAN></SPAN><SPAN class=""><SPAN class="">Known for its luxurious dining, superior cuisine, and exceptional service,<SPAN>&nbsp;</SPAN></SPAN></SPAN><SPAN class=""><SPAN class="">this prestigious venue blended traditional and innovative cooking,<SPAN>&nbsp;which made</SPAN></SPAN></SPAN><SPAN class=""><SPAN class="">&nbsp;it an outstanding destination.</SPAN></SPAN></P><P><SPAN class=""><SPAN class=""><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Palazzo Mannheim.jpg" style="width: 352px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/89951iF7044C2245EE46CA/image-dimensions/352x193?v=v2" width="352" height="193" role="button" title="Palazzo Mannheim.jpg" alt="Palazzo Mannheim.jpg" /></span></SPAN></SPAN></P><P>In addition, there was the possibility to combine the summit participation with a visit to the nearby SAP headquarters for post-event sessions with SAP MaxAttention experts and SAP Product Engineering.</P><P>Therefore, we offered dedicated post-event sessions and an SAP Experience Center Tour:&nbsp;</P><OL><LI>How to Transition to SAP Cloud ALM and Unleash Its Full Power</LI><LI>Navigating the Cloud: An Interactive Workshop on Effective IT Governance Today and Tomorrow</LI><LI>SAP Experience Center Tour</LI></OL><P><SPAN>Please find the agenda&nbsp;<A href="https://events.sap.com/sap-maxattention-summit-2024/en/agendas" target="_self" rel="noopener noreferrer">here.&nbsp;</A></SPAN>Visit the <A href="https://events.sap.com/sap-maxattention-summit-2024/en/home" target="_blank" rel="noopener noreferrer">SAP MaxAttention Summit 2024 page</A> for more information.&nbsp;</P><P>In case of any questions please feel free to&nbsp;<A href="mailto:maxattention@sap.com?subject=SAP%20MaxAttention%20Summit%202024" target="_blank" rel="noopener nofollow noreferrer">contact us</A>.<BR /><BR />We look very much forward to the SAP MaxAttention Summit in Heidelberg!</P> 2023-12-04T15:43:03+01:00 https://community.sap.com/t5/technology-blogs-by-members/mastering-quot-tell-me-about-yourself-quot-answer-for-technical-interviews/ba-p/13579134 Mastering "Tell Me About Yourself" Answer for Technical Interviews in 15 minutes 2023-12-13T17:27:08+01:00 Amin_Omidy https://community.sap.com/t5/user/viewprofilepage/user-id/40654 I'm an &nbsp;IT professional with over two decades of experience in North America market.<BR /> <BR /> As an ERP Solutions Architect, specializing in SAP technology, and a Microsoft Certified Trainer I have worked with major industry players , providing cloud solutions and trainings.<BR /> <BR /> In my career, I did 100s interviews and as a someone who has sat on both sides of the interview table, I understand the challenges professionals still face in delivering a standout response.<BR /> <BR /> A crucial aspect of interview preparation is mastering the 'Tell me about yourself' question or&nbsp; any variation of&nbsp; that in a TECHNICAL interview .<BR /> <BR /> Instead of a generic answer,, I'll show you how to draft a concise, impactful response that truly showcases your suitability for the job you are applying for.<BR /> <BR /> I've structured this video into three parts.<BR /> <BR /> <STRONG>1.Key Aspects Breakdown</STRONG>: Learn the essential considerations when crafting your response.<BR /> <BR /> <STRONG> 2.Real Job Posting Walk through</STRONG>: We'll analyze an actual job posting together, providing a sample answer and in-depth analysis for inspiration.<BR /> <BR /> <STRONG>3.Common Questions Addressed</STRONG>: I'll tackle those lingering questions you may have.<BR /> <BR /> So, whether you're stepping into the IT realm or exploring other industries insights I provide are universally applicable.<BR /> <BR /> let's embark on this journey to make your next interview a success!<BR /> <BR /> <A href="https://www.youtube.com/watch?v=-qkJTg0e8VI" target="test_blank" rel="nofollow noopener noreferrer">https://www.youtube.com/watch?v=-qkJTg0e8VI</A><BR /> <H2 id="toc-hId-964102045"><SPAN style="color: #e39014"><EM>Share with others and Connect with us!</EM></SPAN></H2><BR /> Please leave your comment if you have anything to add!<BR /> <BR /> If you would like to ask questions, please use the&nbsp;<A href="https://answers.sap.com/questions/ask.html" target="_blank" rel="noopener noreferrer">community Q&amp;A</A>.<BR /> <BR /> Give us a like and share on social media if you feel it was useful!<BR /> <BR /> You can follow&nbsp;<STRONG>me</STRONG>&nbsp;in People SAP&nbsp;<SPAN class="mention-scrubbed">amin_omidy</SPAN><BR /> <BR /> Thanks! 2023-12-13T17:27:08+01:00 https://community.sap.com/t5/technology-blogs-by-sap/s-4hana-cloud-3sl-onboarding-and-initial-system-set-up-series/ba-p/13579789 S/4HANA Cloud 3SL onboarding and initial system set-up series 2023-12-17T14:37:27+01:00 BitanC https://community.sap.com/t5/user/viewprofilepage/user-id/153091 <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Dear Reader,</P><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Wish you have had a wonderful year with full of learning and excitements. As this year's (2023) clock is ticketing towards the end, thought of creating this blogpost series, which will take you through the simplified steps you need to perform while onboarding S/4HANA Cloud 3 System Landscape and initial system set-ups. Hope this series will help you in some extent while you are back from vacation in coming year.</P><BR /> <P style="margin: 0in;font-family: Calibri;font-size: 11.0pt"><SPAN lang="en-US"><STRONG>Pre-requisites :</STRONG> Before starting, I'm assuming that you are already familiar with S/4HANA Cloud 3SL system landscape and components. There are multiple blogposts, learning materials are available one click away, my advice would be to go through them before reading the blogpost series. If you are looking for a bit elaborated synopsis, I highly recommend to go through this learning content : </SPAN><A href="https://learning.sap.com/learning-journey/onboard-with-sap-activate-for-sap-s-4hana-cloud-public-edition" target="_blank" rel="noopener noreferrer"><SPAN lang="en-IN">Onboarding with SAP Activate for SAP S/4HANA Cloud, Public Edition | SAP Learning</SPAN></A></P><BR /> <STRONG>Contents :</STRONG> Like other SAP implementations, SAP S/4HANA Cloud 3SL implementation also follows SAP Activate methodology. Hence, you will have specific project phases, where these onboarding and system set-ups should be done. I'll not focus more into the SAP Activate phases here, rather I'll delve deeper into the technical steps which is supposed to be followed. If you need to know about "when" then you may take a look into SAP Roadmap Viewer and liaise with your project phases <A href="https://roadmapviewer-supportportal.dispatcher.hana.ondemand.com/#/groupDetail/658F507A-D6F5-4B78-9EE1-0300C5F1E40F" target="_blank" rel="nofollow noopener noreferrer">Roadmap Viewer (ondemand.com)</A>.<BR /> <BR /> SAP S/4HANA Cloud 3Sl primarily contains 9 different tenants/SAAS components to start with , i.e.:<BR /> <OL><BR /> <LI><STRONG>SAP for Me :</STRONG> SAP for Me portal is SAP's one-stop shop for commercial, administrative, and technical information about SAP solutions. From provisioning the tenants to getting support, it's a customer &amp; partner enabler.</LI><BR /> <LI><STRONG>SAP Central Business Configuration :</STRONG> SAP's one-stop central solution which enables you to scope, configure and implement end-to-end business processes for SAP S/4HANA Cloud.</LI><BR /> <LI><STRONG>SAP Cloud ALM (Optional) :</STRONG> It enables to test, validate and demonstrate the implementation and operation functionalities provided to support the application lifecycle management. However, it's optional for 3SL implementation and left to customers' choices.</LI><BR /> <LI><STRONG>SAP Cloud Identity Services (Non-Prod) :</STRONG> It is a productive instance of SAP CIS which creates and manages users to all these tenants. SAP CBC, SAP S/4HANA Cloud Starter, Dev &amp; Test tenants will be tied up with this SAP CIS tenants, that's why we are now categorizing it as SAP CIS Non-Prod.</LI><BR /> <LI><STRONG>SAP S/4HANA Cloud Starter System :</STRONG> The sandbox system with loaded master data and best practices, which will help your exploring capabilities for Fit-to-Standard workshop.</LI><BR /> <LI><STRONG>SAP S/4HANA Cloud Development System :</STRONG> Your productive development system.</LI><BR /> <LI><STRONG>SAP S/4HANA Cloud Test System :</STRONG> Your productive test system.</LI><BR /> <LI><STRONG>SAP Cloud Identity Services (Prod) :</STRONG> SAP CIS, tied to S/4HANA Cloud Production system and the Cloud ALM.</LI><BR /> <LI><STRONG>SAP S/4HANA Cloud Production System :</STRONG> Your production system.</LI><BR /> </OL><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">The overall system landscape looks this this (image source : help-sap)</P><BR /> <P lang="en-US" style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/loio528187537c664e8f9402626aad556ef6_LowRes.png" /></P><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Now, we can categorize the onboarding and initial config steps into following sequence :</P><BR /> <BR /> <OL style="direction: ltr;margin-top: 0in;margin-bottom: 0in;font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal" type="1"><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle" value="1"><A href="https://blogs.sap.com/2024/01/14/receive-order-confirmation-mail-and-set-up-sap-for-me/" target="_blank" rel="noopener noreferrer"><SPAN style="font-family: Calibri;font-size: 11.0pt;font-weight: normal;font-style: normal">Receive order confirmation mail and set-up SAP for Me.</SPAN></A></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP Cloud ALM and do the initial set-ups on user onboarding.</SPAN></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP CBC and do the initial set-ups on user onboarding.</SPAN></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP S/4HANA Cloud Starter System and complete the initial set-ups on user onboarding.</SPAN></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP S/4HANA Cloud Development System and complete the initial set-ups on user onboarding.</SPAN></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP S/4HANA Cloud Test System and complete the initial set-ups on user onboarding.</SPAN></LI><BR /> <LI lang="en-US" style="margin-top: 0;margin-bottom: 0;vertical-align: middle"><SPAN style="font-family: Calibri;font-size: 11.0pt">Provisioning SAP S/4HANA Cloud Production System and complete the initial set-ups on user onboarding.</SPAN></LI><BR /> </OL><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">For 1, 2&nbsp; &amp; 3 I will create separate blogposts very soon. For 4-7 , mostly it will have similar initial set-ups, hence for it I'll create a single blogpost mentioning the minute difference steps for all the systems if any.</P><BR /> <P lang="en-US" style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/loiod61509e224354c2eb7e3c54f3aedb72b_LowRes.png" /></P><BR /> <P lang="en-US">(image source : help-sap)</P><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">I'll see you with the aforementioned blogposts one after another.</P><BR /> <P lang="en-US" style="margin: 0in;font-family: Calibri;font-size: 11.0pt">Wishing you a happy holiday season till then. Cheers. <span class="lia-unicode-emoji" title=":slightly_smiling_face:">🙂</span></P> 2023-12-17T14:37:27+01:00 https://community.sap.com/t5/technology-blogs-by-members/monitoring-of-sap-systems-through-azure-part-3/ba-p/13572248 Monitoring of sap systems through Azure_Part-3 2023-12-27T17:50:42+01:00 brijesh_tripath https://community.sap.com/t5/user/viewprofilepage/user-id/139546 Continuation of&nbsp;<A href="https://blogs.sap.com/2023/08/14/monitoring-of-sap-systems-through-azure-2" target="_blank" rel="noopener noreferrer">https://blogs.sap.com/2023/08/14/monitoring-of-sap-systems-through-azure-2</A><BR /> <BR /> <STRONG>1.WORKBOOKS</STRONG><BR /> <BR /> It provides a flexible canvas for analyzing data and creating advanced visual reports in the Azure portal. They enable you to leverage multiple data sources in Azure and combine them to create unified interactive experiences<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/WB.png" /></P><BR /> <P class="image_caption" style="text-align:center;font-style:italic;, Arial, sans-serif">Source:Microsoft.com</P><BR /> &nbsp;<BR /> <BR /> <STRONG>1.1 SAP HANA</STRONG><BR /> <BR /> To check the workbook on SAP HANA, we can select SAP HANA in the Monitoring tab and then&nbsp; select the monitored SAP HANA instances that we need to view.<BR /> <BR /> &nbsp;<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A-1.0.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: 'SAPRegular', 'Helvetica Neue', Arial, sans-serif">Source:Microsoft.com</P><BR /> First&nbsp;we&nbsp;see&nbsp;an&nbsp;overview&nbsp;of the SAP HANA&nbsp;instance,&nbsp;where&nbsp;we can see an overview&nbsp;of&nbsp;the&nbsp;highest&nbsp;CPU and&nbsp;memory&nbsp;allocated&nbsp;so&nbsp;far.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A-1.1.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: 'SAPRegular', 'Helvetica Neue', Arial, sans-serif">Source:Microsoft.com</P><BR /> We can also see&nbsp;more&nbsp;details&nbsp;about&nbsp;CPU,&nbsp;memory,&nbsp;disk&nbsp;and&nbsp;network,&nbsp;as&nbsp;well&nbsp;as&nbsp;the services running on the HANA&nbsp;server.<BR /> In&nbsp;the&nbsp;Usage&nbsp;tab&nbsp;we&nbsp;can see&nbsp;a&nbsp;detailed CPU&nbsp;usage.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.2.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: 'SAPRegular', 'Helvetica Neue', Arial, sans-serif">Source:Microsoft.com</P><BR /> <BR /> <H2 id="toc-hId-963894504">1.2 Linux Operating System</H2><BR /> To&nbsp;monitor&nbsp;the Linux&nbsp;operating&nbsp;system&nbsp;workbook,&nbsp;we can select the&nbsp;operating&nbsp;system&nbsp;(Linux)&nbsp;in&nbsp;the Monitoring&nbsp;tab<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.3.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: 'SAPRegular', 'Helvetica Neue', Arial, sans-serif">Source:Microsoft.com</P><BR /> If we continue on the same tab, we can also see an overview of the average memory consumption, the space used in the file system and the network in and out of the virtual machine.<BR /> <H2 id="toc-hId-767380999">1.3 SAP NetWeaver</H2><BR /> To monitor SAP NetWeaver workbook, we need to go to SAP NetWeaver Blade in the Monitoring tab.<BR /> The Overview tab contains a chart of system availability. We can also group them by SID.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.4.png" /></P><BR /> <P class="image_caption" style="text-align: center;font-style: italic;font-family: 'SAPRegular', 'Helvetica Neue', Arial, sans-serif">Source:Microsoft.com</P><BR /> We have option to group the availability by application server.<BR /> <H2 id="toc-hId-570867494">2.ALERTS</H2><BR /> We can also set up alerts on the data stored in Log Analytics and design the alert according to our thresholds and requirements.<BR /> <H2 id="toc-hId-374353989">2.1 Create Action Group</H2><BR /> To send a notification, we first need to create an action group in Azure Monitor. To do this, go to Monitor → Alerts → Manage Actions and then click New Action Group<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.5.png" /></P><BR /> Complete all the requested details and then tap on Next: Notifications<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.6.png" /></P><BR /> Complete all the requested details and then tap on&nbsp;Next: Action<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.7.png" /></P><BR /> Enter&nbsp;details about&nbsp;possible&nbsp;actions,&nbsp;then click Next: Tags<BR /> Specify&nbsp;tags&nbsp;if&nbsp;necessary,&nbsp;then click Next: Review +&nbsp;Create.<BR /> Review all&nbsp;action&nbsp;group&nbsp;settings and click&nbsp;Create.<BR /> <BR /> &nbsp;<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.8.png" /></P><BR /> Wait for the deployment.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.9.png" /></P><BR /> <BR /> <H2 id="toc-hId-177840484">2.2 Configure Notification</H2><BR /> For settings up alert, we first go to Azure&nbsp;Monitor&nbsp;→&nbsp;Alert&nbsp;and tap&nbsp;New Alert Rule<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.10.png" /></P><BR /> Opt the Log Analytics workspace resource where the data is stored.<BR /> Need to define the condition by clicking “Add Condition” and then “Custom Log Search”.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.11.png" /></P><BR /> Define the query&nbsp;that&nbsp;must&nbsp;be executed&nbsp;to&nbsp;trigger&nbsp;the&nbsp;alert.&nbsp;Here&nbsp;we only&nbsp;use&nbsp;the query to check&nbsp;whether&nbsp;the&nbsp;system is&nbsp;working&nbsp;properly.<BR /> Also, the condition&nbsp;upon&nbsp;which&nbsp;the&nbsp;email will be triggered and click&nbsp;Done.&nbsp;The&nbsp;condition&nbsp;is&nbsp;added to the&nbsp;alert.<BR /> <BR /> Now,<BR /> <BR /> Created Rules we can see in the&nbsp;Alert Rules.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.12.png" /></P><BR /> Therefore,&nbsp;when&nbsp;Log Analytics&nbsp;receives&nbsp;a&nbsp;GRAY from&nbsp;an&nbsp;SAP&nbsp;control,&nbsp;Alert&nbsp;detects&nbsp;this anomaly and&nbsp;displays&nbsp;it&nbsp;in&nbsp;the&nbsp;alert&nbsp;dashboard.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.13.png" /></P><BR /> One mail will be trigger to the registered mail id for the notification.<BR /> <H3 id="toc-hId-110409698">3. LOGS</H3><BR /> <H3 id="toc-hId--86103807">3.1 Log Analytics Workspace</H3><BR /> We may observe and review telemetry data collected by providers.<BR /> <H3 id="toc-hId--282617312">2.2 Azure Monitor Activity Log</H3><BR /> We can also check the&nbsp;provider's&nbsp;deployment logs in the Azure Monitor&nbsp;activity&nbsp;log.<BR /> <P style="overflow: hidden;margin-bottom: 0px"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2023/12/A1.14.png" /></P><BR /> Here, the&nbsp;SAP&nbsp;system&nbsp;installed&nbsp;in&nbsp;Azure is monitored&nbsp;with&nbsp;Azure&nbsp;Monitor&nbsp;for SAP Solutions.<BR /> <BR /> <STRONG>Conclusion- </STRONG><BR /> <BR /> We discussed how to deploy and set-up workbooks, alerts, notifications, and troubleshooting logs for Azure Monitor for SAP solutions.<BR /> <BR /> <STRONG>Related blogs –</STRONG><BR /> <BR /> <A href="https://learn.microsoft.com/en-us/azure/sap/monitor/about-azure-monitor-sap-solutions" target="_blank" rel="nofollow noopener noreferrer">https://learn.microsoft.com/en-us/azure/sap/monitor/about-azure-monitor-sap-solutions</A><BR /> <BR /> <A href="https://blogs.sap.com/tag/sap-on-azure/" target="_blank" rel="noopener noreferrer">https://blogs.sap.com/tag/sap-on-azure/</A><BR /> <BR /> Please share your feedback and your thoughts. Write back to me for questions and queries.<BR /> <BR /> Thank you. 2023-12-27T17:50:42+01:00 https://community.sap.com/t5/technology-blogs-by-sap/empowering-businesses-with-new-insights-the-google-cloud-and-sap-analytics/ba-p/13580348 Empowering Businesses with New Insights: The Google Cloud and SAP Analytics Partnership 2023-12-28T12:35:19+01:00 Thisgaard https://community.sap.com/t5/user/viewprofilepage/user-id/4350 A year ago, the tech giants Google Cloud and SAP embarked on a journey to revolutionize data analytics for businesses. Their goal: to bring together&nbsp;SAP systems and data with Google’s data cloud, offering customers better insights for decision making and innovation. The new SAP Datasphere Replication Flow connector for Google BigQuery is now<A href="https://blogs.sap.com/2023/11/16/replication-flows-sap-datasphere-and-google-big-query/" target="_blank" rel="noopener noreferrer"> available</A>.<BR /> <BR /> From the outset, customers have been excited about the potential of this partnership: integrating SAP's robust data models and real-time processes with Google BigQuery's comprehensive real-time data streams, including search engine data, weather data, marketing data, and customer event data, to inspire new and better ways to do business.<BR /> <BR /> Prior to this collaboration, businesses found it challenging to merge data models from either side due to cost, effort, and time. This partnership aims to eliminate these hurdles, providing real-time data streams that adjust dynamically to changes from Google Cloud and SAP. Haridas Nair, the Head of Cross Product Management for Database and Analytics at SAP, stated, "Customers using SAP Business Technology Platform can now extend the reach of curated and modeled SAP business data for downstream consumption with SAP Datasphere Replication Flow. The integration with BigQuery now enables customers to combine SAP business data with Google BigQuery data. This enables new use cases that can unleash significant business value."<BR /> <BR /> For example, while enterprises rely on SAP S/4HANA for their financial planning, reporting, and budgeting there are many that also have finance data coming in other systems. Join ventures, new acquisitions or decentralized business models are common cases where finance data will reside in non-SAP S/4HANA systems. Early adopters of such companies are leveraging the Google Cloud and the SAP Datasphere Replication Flow connector to unify accounting data insights into SAP Datasphere to get a single financial dashboard across all their financial sources and thereby enable secure, self-service access to reusable data models, and streamline financial reporting. The result is enhanced analytics that enable new market correlations to transpire, as well as reporting efficiency and reduced data management costs. As such finance and operations experts can receive new insights that improve their business planning.<BR /> <BR /> The other common use case relates to Consumer Products and Retail companies. A prime example is a North American consumer products company selling through retailers as well as their online platform. As many other companies in this space, they're investing in brand loyalty and scaling their product portfolio to target different customer segments. The company strives to corelate online customer trends with their retail channel sales using demographics and other consumer data.<BR /> <BR /> Their business goals involve improving channel inventory turns, trade promotion management, shelf-availability, SKU margins, and overall understanding of customer buying behavior. Simultaneously, they aim to reduce the cost, effort, and time for accessing SAP data and enable richer SAP ERP data in real-time.<BR /> <BR /> To achieve these goals, they have connected Google Cloud and SAP data to gain better insight into their retail channels and to improve their demand forecasting and supply chain algorithms. The more real-time the connectivity between their SAP data and Google BigQuery data, the more confident they'll be in the predictive algorithms they adopt for their supply chain.<BR /> <BR /> But this is just the beginning. The Google Cloud and SAP Analytics partnership opens the door to a wide range of strategic customer and supply chain programs that leverage data for advanced predictive demand models. Early examples of customer innovations include true customer 360 insight, improved sales performance, yield-driven pricing, new product introductions, unifying external accounting with SAP, manufacturing automation, and operationalizing sustainability.<BR /> <BR /> Both of the Google Cloud and SAP development organizations are excited to see that their work is making a difference. Future releases plan to include more advanced features for managing enterprise scale federation, replication and data catalogs between their respective data platforms. Honza Fedak, Director of BigQuery Engineering at Google Cloud stated, "The combination of Google Cloud's data and AI expertise and SAP's deep understanding of business data is a powerful force that can help businesses unlock the full potential of their data."<BR /> <BR /> As more enterprises utilize this partnership, we are confident that the Google Cloud and SAP analytics partnership can provide better insights, enable better decisions, and foster innovation. This partnership is a significant step towards creating more Intelligent Enterprises, and we hope your enterprise will be one of them. 2023-12-28T12:35:19+01:00 https://community.sap.com/t5/technology-blogs-by-members/how-generative-ai-is-expediting-cloud-migration-of-erp-systems/ba-p/13574162 How Generative AI is expediting cloud migration of ERP systems? 2024-01-09T02:57:01+01:00 IndrajitRoy https://community.sap.com/t5/user/viewprofilepage/user-id/180342 <P id="e4f3" class="pw-post-body-paragraph aej aek zb pb b ael aem aen aeo aep aeq aer aes ol aet aeu aev oq aew aex aey ov aez afa afb afc kf bq" data-selectable-paragraph="">Artificial intelligence, in particular Generative AI, is the buzzword these days. Every company is trying to harness the power of Generative AI to increase efficiency, productivity and improve user experience. How can ERP systems be left behind? Although public opinions may vary, ERP systems are generally considered mundane and boring. How cool it would be if the ERP system suddenly starts to engage with the user in a meaningful way to make work more productive. Ultimately, Generative AI is that branch of Artificial Intelligence that focuses on creating new content, designs or ideas through machine learning algorithms trained over a large set of data. The goal of an ERP system is not only to capture huge amounts of data but also to derive meaningful insight from it in such a way that it can voluntarily act or suggest the next course of action. Imagine if your ERP system gets infused with life and starts to interact with users so that work becomes more fun without the mundane repetition. Maybe a day is not too far when you do not have to remember a tile or a transaction code anymore.</P><BR /> <P id="a62c" class="pw-post-body-paragraph aej aek zb pb b ael aem aen aeo aep aeq aer aes ol aet aeu aev oq aew aex aey ov aez afa afb afc kf bq" data-selectable-paragraph="">The bigger question is how do we leverage the power of AI? From an enterprise resource planning perspective, to create the biggest value, AI must work within the context of the organization’s business processes and understand its data. Since AI is only in the cloud, it is not possible for on-premise ERP solutions. Hence to leverage the power of AI, organizations must push their ERP systems to the cloud. In recent years, we have seen a massive push towards cloud ERP. This is a very good move towards the right direction. Artificial Intelligence can optimize business processes using cloud ERP solutions. Organizations can run their most important processes in cloud ERP, while the AI can learn, adapt and adjust to uniquely optimize the organization’s business processes.</P><BR /> <P id="c047" class="pw-post-body-paragraph aej aek zb pb b ael aem aen aeo aep aeq aer aes ol aet aeu aev oq aew aex aey ov aez afa afb afc kf bq" data-selectable-paragraph="">However, migrating to the cloud is not as easy as it seems. Organization’s mission critical processes and data reside within their ERP system. Organization’s also adapt to unique processes and data to maintain their competitive advantage. Every organization is unique and we have to be very thoughtful in any evolution in the ERP system especially if you want to combine the power of cloud and generative AI and their application to the unique business processes and data of the organization. Leading ERP companies such as SAP and Oracle have introduced cloud private edition, one such tool that allows you to combine cloud and Generative AI with unique business processes and data of an organization.</P><BR /> <P id="61f2" class="pw-post-body-paragraph aej aek zb pb b ael aem aen aeo aep aeq aer aes ol aet aeu aev oq aew aex aey ov aez afa afb afc kf bq" data-selectable-paragraph="">Use cases of Generative AI in ERP applications are still in their early stages. Email integration with ERP to classify and prioritize work items, expedite freight management by automating processing of large volumes of goods receipts and delivery notes, writing compelling job descriptions and generating interview questions are some of the examples of Generative AI in action within ERP systems. With time, the scope will multiply manifold.</P><BR /> <P id="866d" class="pw-post-body-paragraph aej aek zb pb b ael aem aen aeo aep aeq aer aes ol aet aeu aev oq aew aex aey ov aez afa afb afc kf bq" data-selectable-paragraph="">According to Larry Ellison of Oracle, not many technologies get the constant attention of heads of government, business elites and ordinary people together. Generative AI is truly different. Whether it is the most important new technology ever? Only time will tell.</P> 2024-01-09T02:57:01+01:00 https://community.sap.com/t5/enterprise-resource-planning-blogs-by-sap/getting-familiar-with-spaces-and-pages-in-sap-s-4hana-cloud-public-edition/ba-p/13575120 Getting Familiar with Spaces and Pages in SAP S/4HANA Cloud Public Edition 2024-01-12T11:20:20+01:00 maria_silipo https://community.sap.com/t5/user/viewprofilepage/user-id/805536 Happy New Year 2024! To start off the year right, I'd like to remind you to switch from groups to spaces and pages, our go-to approach for visualization and layout in the SAP Fiori launchpad.<BR /> <BR /> Why switch to spaces and pages? The groups setup on the SAP Fiori launchpad is <STRONG>officially outdated</STRONG> with the SAP S/4HANA Cloud Public Edition 2402 release. Get ready for the next release and switch to spaces and pages now! Please note that the switch is mandatory and has to be done manually.<BR /> <BR /> In the meantime, watch the videos below to get familiar with spaces and pages and the new <EM>My Home</EM> in SAP S/4HANA Cloud Public Edition:<BR /> <H3 id="toc-hId-1093065565"><STRONG>Switching from Groups to Spaces and Pages</STRONG></H3><BR /> SAP introduced spaces and pages in SAP S/4HANA Cloud Public Edition in Q2/2020 already, accompanied by the announcement to deprecate the group-based visualization.<BR /> <BR /> Click on the image below to watch the video:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://sapvideo.cfapps.eu10-004.hana.ondemand.com/?entry_id=1_5phrht35" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/MicrosoftTeams-image-13.png" /></A></P><BR /> &nbsp;<BR /> <BR /> Read more on how to switch from groups to spaces and pages in <A href="https://blogs.sap.com/2023/11/06/deactivation-of-groups-in-the-sap-fiori-launchpad-in-sap-s-4hana-cloud-public-edition-2402-switching-to-spaces-and-pages-mandatory/" target="_blank" rel="noopener noreferrer">my blog post</A>.<BR /> <H3 id="toc-hId-896552060"></H3><BR /> <H3 id="toc-hId-700038555"><STRONG>Using Predefined Spaces Out-of-the-Box</STRONG></H3><BR /> With SAP S/4HANA Cloud Public Edition 2302, SAP introduced the option to use predefined spaces and pages out-of-the-box. The benefits here are clear: Fast implementation without the need of investing time and resources in designing own spaces and pages. Direct consumption of SAP enhancements to predefined spaces and pages with an upgrade.<BR /> <BR /> Click on the image below to watch the video:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://sapvideo.cfapps.eu10-004.hana.ondemand.com/?entry_id=1_mlszqgz1" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/SAP-S4HANA-Cloud-Public-Edition-Spaces-and-Pages-2308-PNK-Admin-Using-predefined-spaces-out-of-the-box-Thumbnail2.png" /></A></P><BR /> <BR /> <H3 id="toc-hId-503525050"></H3><BR /> <H3 id="toc-hId-307011545"><STRONG>Importing Personalized Groups</STRONG></H3><BR /> Learn how to work with the new <EM>My Home</EM> in SAP S/4HANA Cloud Public Edition. Import your personalized groups from the classic home page, customize your favorite apps, and stay organized with spaces and pages.<BR /> <BR /> Click on the image below to watch the video:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://sapvideo.cfapps.eu10-004.hana.ondemand.com/?entry_id=1_6xsm9hcm" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/MicrosoftTeams-image-10.png" /></A></P><BR /> &nbsp;<BR /> <H3 id="toc-hId-110498040"><STRONG>Using the Navigation Bar</STRONG></H3><BR /> Learn how to easily arrange your spaces in the new <EM>My&nbsp;Home</EM> in SAP S/4HANA Cloud Public Edition according to your needs and preferences. Optimize your workflow by pinning and rearranging spaces.<BR /> <BR /> Click on the image below to watch the video:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://sapvideo.cfapps.eu10-004.hana.ondemand.com/?entry_id=1_98uitnu4" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/MicrosoftTeams-image-11.png" /></A></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--86015465"><STRONG>Personalizing the Page</STRONG></H3><BR /> Learn how to personalize your pages in SAP S/4HANA Cloud Public Edition. Easily customize your favorite pages and arrange them according to your preferences.<BR /> <BR /> Click on the image below to watch the video:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://sapvideo.cfapps.eu10-004.hana.ondemand.com/?entry_id=1_oo5fq3qt" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/MicrosoftTeams-image-12.png" /></A></P><BR /> <BR /> <H3 id="toc-hId--282528970"></H3><BR /> Follow us on&nbsp;<A href="https://twitter.com/sap" target="_blank" rel="noopener nofollow noreferrer">@SAP</A>&nbsp;and #S4HANA, and myself on&nbsp;<SPAN class="mention-scrubbed">maria.silipo</SPAN>,&nbsp;<A href="https://www.linkedin.com/in/maria-silipo-0111b7177/" target="_blank" rel="noopener nofollow noreferrer">LinkedIn</A>&nbsp;and&nbsp;<A href="https://twitter.com/m_silipo" target="_blank" rel="noopener nofollow noreferrer">X</A>.<BR /> <H3 id="toc-hId--479042475"></H3><BR /> &nbsp;<BR /> <H3 id="toc-hId--675555980"><STRONG>Other SAP S/4HANA Cloud Enablement Assets</STRONG></H3><BR /> SAP S/4HANA Cloud is the foundation of the intelligent enterprise and is an innovative, robust, and scalable ERP. We at Cloud ERP Product Success and Cloud Co-Innovation offer a service as versatile as our product itself. Click on the image below to check out the numerous offerings our Enablement team has created for you:<BR /> <P style="overflow: hidden;margin-bottom: 0px"><A href="https://chart-bdmaicr0au.dispatcher.eu2.hana.ondemand.com/index.html?hc_reset" target="_blank" rel="nofollow noopener noreferrer"><IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/EnablementWheel-1.png" height="551" width="456" /></A></P><BR /> <BR /> <H3 id="toc-hId--947300854"><STRONG>Inside SAP S/4HANA Podcast</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">Subscribe to our podcast “<A href="https://open.sap.com/static/inside-sap/index.php?p=archive" target="_blank" rel="noopener noreferrer">Inside SAP S/4HANA</A>“! This podcast leverages the unique knowledge and expertise of SAP S/4HANA Cloud product experts, partners and customers to address objects of interest by sharing product insights and project best practice. There is no customer success without product success and project success; we share all ingredients with you to get to the next level and make your SAP S/4HANA Cloud, public edition project a success. Subscribe now and benefit from the shared knowledge.</SPAN></SPAN></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--1143814359"><STRONG>openSAP Microlearnings for SAP S/4HANA Cloud</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">Our openSAP microlearnings for SAP S/4HANA Cloud offer an exciting new learning opportunity. What began with a small batch of 20 videos, has now become a channel with more than 50 microlearnings that have generated over 20,000 views. Today we cover multiple lines of business such as finance, manufacturing, and supply chain management, and key technology topics like Master Data Management, extensibility, SAP User Experience, and upgrade management. We are continuously adding new microlearnings to the&nbsp;<A href="https://blogs.sap.com/2020/05/07/boost-your-knowledge-with-sap-s-4hana-microlearnings/" target="_blank" rel="noopener noreferrer">SAP S/4HANA Cloud channel</A>, so make sure you check them out.</SPAN></SPAN></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--1340327864"><STRONG>Your Voice Matters!</STRONG></H3><BR /> <P class="paragraph"><SPAN class="normaltextrun"><SPAN lang="EN-US">If you want to learn more and actively engage with SAP subject matter experts on SAP S/4HANA Cloud, public edition, join our&nbsp;<A href="https://community.sap.com/topics/s4hana-cloud" target="_blank">SAP S/4HANA Cloud Public Edition topic page on SAP Community</A>. The community brings together customers, partners, and SAP experts and has a clear mission: deliver an interactive community to engage with one another about best practices and product solutions. We invite you to explore our ‘one-stop shop’ as the central place for all resources, tools, content questions, answers and connect with experts to guide you through your journey to SAP S/4HANA Cloud Public Edition.</SPAN></SPAN></P><BR /> &nbsp;<BR /> <H3 id="toc-hId--1536841369"><STRONG>More Information:</STRONG></H3><BR /> <DIV><BR /> <UL><BR /> <LI><A href="https://blogs.sap.com/2023/08/09/sap-user-experience-in-sap-s-4hana-cloud-public-edition-2308" target="_blank" rel="noopener noreferrer">SAP User Experience in SAP S/4HANA Cloud Public Edition 2308</A></LI><BR /> <LI><A href="https://blogs.sap.com/2023/11/06/deactivation-of-groups-in-the-sap-fiori-launchpad-in-sap-s-4hana-cloud-public-edition-2402-switching-to-spaces-and-pages-mandatory/" target="_blank" rel="noopener noreferrer">Deactivation of Groups in the SAP Fiori Launchpad in SAP S/4HANA Cloud Public Edition: Switching to Spaces and Pages Mandatory</A></LI><BR /> <LI><A href="https://blogs.sap.com/2023/12/14/register-now-for-our-exclusive-sap-s-4hana-cloud-public-edition-2402-early-release-series/" target="_blank" rel="noopener noreferrer">Upcoming SAP User Experience Live Session</A></LI><BR /> <LI><A href="https://community.sap.com/topics/s4hana-cloud/product-releases" target="_blank">SAP S/4HANA Cloud Public Edition Release Info</A></LI><BR /> <LI><A href="https://blogs.sap.com/tag/pscc_enablement/" target="_blank" rel="noopener noreferrer">Release Blog Posts</A></LI><BR /> <LI><A href="https://www.youtube.com/playlist?list=PLWV533hWWvDnnyN2j-CcUheNN-GaNCb3H" target="_blank" rel="noopener nofollow noreferrer">YouTube Playlist for SAP S/4HANA Cloud Public Edition</A></LI><BR /> <LI><A href="https://chart-bdmaicr0au.dispatcher.eu2.hana.ondemand.com/index.html?hc_reset" target="_blank" rel="noopener nofollow noreferrer">SAP S/4HANA PSCC Digital Enablement Wheel</A></LI><BR /> <LI><A href="https://open.sap.com/static/inside-sap/index.php?p=archive" target="_blank" rel="noopener noreferrer">Inside SAP S/4HANA Podcast</A></LI><BR /> <LI><A href="https://microlearning.opensap.com/" target="_blank" rel="noopener noreferrer">openSAP Microlearnings for SAP S/4HANA Cloud</A></LI><BR /> <LI><A href="https://me.sap.com/processnavigator/SolS/EARL_SolS-013/2308?region=DE" target="_blank" rel="noopener noreferrer">Best Practices for SAP S/4HANA Cloud Public Edition</A></LI><BR /> <LI><A href="https://community.sap.com/topics/s4hana-cloud" target="_blank">SAP Community</A></LI><BR /> <LI><A href="https://help.sap.com/doc/7c9e0bbbd1664c2581b2038a1c7ae4b3/latest/" target="_blank" rel="noopener noreferrer">Feature Scope Description</A></LI><BR /> <LI><A href="https://help.sap.com/doc/ce01d82756b947a1a043a5d5a3204226/latest/" target="_blank" rel="noopener noreferrer">What’s New</A></LI><BR /> <LI><A href="https://help.sap.com/viewer/p/SAP_S4HANA_CLOUD" target="_blank" rel="noopener noreferrer">Help Portal Product Page<BR /> </A></LI><BR /> </UL><BR /> </DIV> 2024-01-12T11:20:20+01:00 https://community.sap.com/t5/technology-blogs-by-sap/receive-order-confirmation-mail-and-set-up-sap-for-me/ba-p/13575504 Receive order confirmation mail and set-up SAP for Me 2024-01-14T19:01:31+01:00 BitanC https://community.sap.com/t5/user/viewprofilepage/user-id/153091 <P>Dear Reader,<BR /><BR />Hope all are fine, and you had a great start into the new year.<BR /><BR />Followed by the blogpost series on S/4HANA Cloud 3SL onboarding (which will take you through the simplified steps you need to perform while onboarding S/4HANA Cloud 3SL onboarding and initial system set-up), this is the second blogpost on the series. Hope this will help you in some extent while to catch up with the forthcoming S/4HANA 3Sl challenges this year.<BR /><BR /><STRONG>Pre-requisites :</STRONG> Before starting, I'm assuming that you are already familiar with S/4HANA Cloud 3SL system landscape and components. There are multiple blogposts, learning materials are available one click away, my advice would be to go through them before reading the blogpost series. If you are looking for a bit elaborated synopsis, I highly recommend going through this learning content : <A href="https://learning.sap.com/learning-journey/onboard-with-sap-activate-for-sap-s-4hana-cloud-public-edition" target="_blank" rel="noopener noreferrer">Onboarding with SAP Activate for SAP S/4HANA Cloud, Public Edition | SAP Learning</A>. I also hope, since you are here, you have already hovered on<BR /><BR /></P><UL><UL><LI><A href="https://blogs.sap.com/2023/12/17/s4-hana-cloud-3sl-onboarding-and-initial-system-set-up-series/" target="_blank" rel="noopener noreferrer">https://blogs.sap.com/2023/12/17/s4-hana-cloud-3sl-onboarding-and-initial-system-set-up-series/</A></LI></UL></UL><P><BR /><BR />&nbsp;<BR /><BR /><STRONG>Contents :</STRONG> Here, we'll discuss on once the contract agreement is done, how the order confirmation mail comes and what's next with all these resources.<BR /><BR />In your contract, you are supposed to provide an email-id which will be the primary IT contact point for any sort of onboarding related communication. The email-id would receive all the mails. Here, in this blogpost, my id was the primary IT contact point in the contract, hence you'll find my mailbox as the recipient of all the communications.<BR /><BR /></P><UL><UL><LI>First mail, you'll receive is the contract details mail. This notification email will contain with Customer Number ID and your Purchase Order Number on your recent purchase.</LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/1-22.png" border="0" width="515" height="438" /></P><P><BR /><BR /><BR /></P><UL><UL><LI><SPAN>Next, you'll receive a notification email on you S-User ID. Within SAP fraternity I don't really explain what S-User ID stands for. This will be </SPAN><SPAN>your personal key to the entire SAP Support ecosystem. The email will contain a PDF containing your S-User ID and the initial password. You need them to enter the SAP Support Portal : SAP for Me.</SPAN></LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/2-13.png" border="0" width="389" height="398" /></P><P><BR /><BR /><BR /></P><UL><UL><LI><SPAN>Now, go to SAP for Me portal : </SPAN><A href="https://me.sap.com/" target="test_blank" rel="noopener noreferrer">https://me.sap.com/</A><SPAN> and access it with the received credentials. It will ask you to create an SAP Universal ID if you don't have it already. If you have it, then please link this S-User ID with the existing account. </SPAN></LI></UL></UL><P><BR /><BR /><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/3-15.png" border="0" width="570" height="407" /><BR /><BR /></P><UL><UL><LI><SPAN>Then you'll be asked to set-up your SAP for Me : accepting terms &amp; conditions to use and utilize this portal. Please read them out , accept &amp; proceed.</SPAN></LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/4-10.png" border="0" width="521" height="297" /></P><P><BR /><BR /><BR /></P><UL><UL><LI>Now, set up your SAP for Me home screen. You can select your area of interests. Once selected, the SAP for Me home screen will be customized accordingly.</LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/5-11.png" border="0" width="529" height="319" /></P><P><BR /><BR /><BR /></P><UL><UL><LI>If you by chance leave the SAP for Me set up screen after activation of the S-User ID and don't follow the subsequent SAP for Me set up (like aforementioned), you may end up with errors. Try resetting the password after some time and follow the set up screens, if still it doesn't get resolved, raise it to CIC.</LI></UL></UL><P>&nbsp;</P><UL><UL><LI>&nbsp;Now, you have logged into your SAP for Me portal. Explore all the tabs to get to know the offerings.</LI></UL></UL><P>&nbsp;</P><UL><UL><LI>To see the contract-wise tenant availabilities , go to the System &amp; Provisioning system and see the listings. You'll find only SAP Cloud ALM &amp; SAP Central Business Configuration are enabled for provisioning; the SAP S/4HANA Cloud provisioning option will be enabled once the first two are deployed.</LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/6-12.png" border="0" width="474" height="232" /></P><P><BR /><BR /><BR /></P><UL><UL><LI><SPAN>You may onboard other users in SAP for Me, specially the administrators. But before doing that, add your company email domain as a trusted domain as follows. If you have partners/C-users who will be using their own domains, you may whitelist their domains here as well.</SPAN></LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/7-10.png" border="0" /></P><P><BR /><BR /><BR /></P><UL><UL><LI><SPAN>Apart from these 2 emails (contract &amp; S-User), you'll receive another email as a part of this onboarding bundle. This will be a notification email with information on System &amp; Provisioning and instructions on the next steps required to request the initial Systems and Tenants.</SPAN></LI></UL></UL><P><BR /><BR /></P><P><IMG src="https://community.sap.com/legacyfs/online/storage/blog_attachments/2024/01/8-9.png" border="0" width="371" height="225" /></P><P><BR />&nbsp;</P><P>This concludes this blogpost. Next, continue to see the subsequent blogpost of this series</P><P>&nbsp;</P><P><A href="https://community.sap.com/t5/enterprise-resource-planning-blogs-by-sap/provisioning-sap-cbc-and-perform-the-initial-set-ups-on-user-onboarding/ba-p/13583663" target="_blank">Provisioning SAP CBC and perform the initial set-u... - SAP Community</A></P><P>&nbsp;</P><P>See you there <span class="lia-unicode-emoji" title=":slightly_smiling_face:">🙂</span></P> 2024-01-14T19:01:31+01:00 https://community.sap.com/t5/technology-blogs-by-members/sh-1-fiori-not-found-gt-the-most-popular-error-for-fiori-developers/ba-p/13658784 sh: 1: fiori: not found-> The most popular error for Fiori Developers 2024-04-05T16:34:00.137000+02:00 ankitguria https://community.sap.com/t5/user/viewprofilepage/user-id/45701 <P><FONT size="6"><STRONG>Introduction:</STRONG></FONT></P><P><FONT size="5">In this technical blog, we will detail how to resolve one of the most common issues encountered by SAP UI5/Fiori developers during the deployment of their applications on the Cloud Foundry of SAP BTP.</FONT><BR /><FONT size="5">For the case here, we have the "<FONT color="#FF0000"><U><STRONG>sh: 1: fiori: not found</STRONG></U></FONT>" error here.</FONT></P><P><FONT size="5"><span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image001.png" style="width: 999px;"><img src="https://community.sap.com/t5/image/serverpage/image-id/91167i794704AADA6B1A7F/image-size/large?v=v2&amp;px=999" role="button" title="image001.png" alt="image001.png" /></span></FONT></P><P><FONT size="6"><STRONG>Prerequisites:</STRONG></FONT></P><UL><LI><FONT size="5"><A href="https://accounts.sap.com/saml2/idp/sso?sp=cockpit-cf-eu10&amp;RelayState=response_type%3Dcode%26scope%3Dopenid%26redirect_uri%3Dhttps%253A%252F%252Femea.cockpit.btp.cloud.sap%252Flogin%252Fcallback%26client_id%3D28f1d77a-ce0d-401a-b926-e393cd8ed4fa%26state%3D11346716447162" target="_blank" rel="noopener noreferrer">SAP BTP Account</A>- If you prefer to deploy on SAP BTP HANA Cloud.&nbsp;</FONT></LI><LI><FONT size="5"><A href="https://accounts.sap.com/saml2/idp/sso?sp=cockpit-cf-eu10&amp;RelayState=response_type%3Dcode%26scope%3Dopenid%26redirect_uri%3Dhttps%253A%252F%252Femea.cockpit.btp.cloud.sap%252Flogin%252Fcallback%26client_id%3D28f1d77a-ce0d-401a-b926-e393cd8ed4fa%26state%3D11346716447162" target="_blank" rel="noopener noreferrer">SAP Business Application Studio</A>&nbsp;(recommended) if deploying to SAP BTP HANA Cloud. Even, in this case, I recommend to use SAP BAS only for deployment&nbsp;.</FONT></LI><LI><FONT size="5"><A href="https://code.visualstudio.com/download" target="_blank" rel="noopener nofollow noreferrer">Microsoft Visual Studio Code</A>&nbsp;(optional) can be used for development but specific to this solution just use it as the Integrated Development Environment (IDE).&nbsp;</FONT></LI></UL><P><FONT size="6"><STRONG>Delving into the Error:</STRONG></FONT></P><P><FONT size="5">Single Targeted vs. Multi-Targeted Applications: There exists a distinction between single targeted and multi-targeted applications. The issue at hand typically arises with .MTAR applications, particularly SAP UI5 multi-target applications.</FONT></P><P><FONT size="5">"sh:1: Fiori: Not Found" Error: Whenever "cf push" command is executed, developers often encounter the "sh: 1: Fiori: Not Found" error, particularly with MTAR applications. This error is not exclusive to SAP but is a common occurrence across various cloud-native applications.</FONT></P><P><FONT size="6"><STRONG>Solutions and steps to be followed</STRONG>:</FONT></P><UL><LI><FONT size="5"><U>Utilize Microsoft Visual Studio Code or SAP Business Application Studio as the IDE</U>: It's recommended to use either Vs Code or SAP Business Application Studio solely as the Integrated Development Environment (IDE). For deployment purposes, stick to SAP Business Application Studio.</FONT></LI><LI><FONT size="5"><U>Ensure Proper Configuration of Destination Services and HTML5 Services:</U> Make sure to follow the steps for creating Destination Services and HTML5 services in your application as per the provided guidelines.</FONT></LI><LI><FONT size="5"><U>Perform .MTAR Build:</U> Right-click on the mta.yaml file and execute a .MTAR build.</FONT></LI><LI><FONT size="5"><U>Discovering Generated .MTAR File:</U> Following the .MTA.YAML build, the generated .mtar file may have a generic name such as abc_appname.mtar.</FONT></LI><LI><FONT size="5"><U>Deploy .MTAR File</U>: Right-click on the generated .mtar file and select "Deploy MTAR."</FONT></LI><LI><FONT size="5"><U>Monitor Deployment Process</U>: Once the deployment process concludes, log in to the SAP BTP Cloud Cockpit.</FONT></LI><LI><FONT size="5"><U>Accessing applications</U>: In the left-hand menu bar, locate HTML5 applications.</FONT></LI><LI><FONT size="5"><U>Verify Deployed Applications</U>: You should be able to find the deployed applications listed within the HTML5 applications section.</FONT></LI></UL><P><FONT size="5">Reference Link for more steps on deployment of Multi Target Applications by SAP: <A href="https://help.sap.com/docs/bas/sap-business-application-studio/building-and-deploying-multitarget-applications" target="_blank" rel="noopener noreferrer">Building and Deploying Multitarget Applications</A></FONT></P><P><FONT size="5">By following these steps, you can effectively resolve the "sh: 1: fiori : Not Found" error encountered during the deployment of SAP UI5/Fiori applications on the Cloud Foundry of SAP BTP.</FONT></P> 2024-04-05T16:34:00.137000+02:00 https://community.sap.com/t5/sap-maxattention-blog-posts/welcome-to-the-sap-maxattention-community-group/ba-p/13672387 Welcome to the SAP MaxAttention Community Group! 2024-04-18T09:04:24.479000+02:00 karolin https://community.sap.com/t5/user/viewprofilepage/user-id/1395662 <P>We are pleased to welcome you to this new channel of communication on all things SAP MaxAttention.<BR />Here you will find a variety of resources, including expert&nbsp;<SPAN><A href="https://community.sap.com/t5/sap-maxattention-blog-posts/bg-p/maxattentionblog-board" target="_blank">blog posts</A></SPAN>, announcements of&nbsp;<SPAN><A href="https://community.sap.com/t5/sap-maxattention-events/eb-p/maxattentionoccasion-board" target="_blank">upcoming events</A></SPAN>&nbsp;along with useful information about SAP MaxAttention. But there's more - this group also provides a platform for you to communicate with your SAP MaxAttention peers in our&nbsp;<SPAN><A href="https://community.sap.com/t5/sap-maxattention-discussions/bd-p/maxattentionforum-board" target="_blank">discussion forum</A></SPAN>.</P><P>You can interact with other members, contribute and be part of lively discussions. Please feel encouraged to be active and contribute to the growth of this group. You are welcome to start a thread, add a comment and give a "like" or "kudos".</P><P>To maximize the benefit of your participation, we kindly invite everyone to respect a few simple and self-explanatory rules:</P><UL><LI>Be polite, respectful and friendly: treat others with a sense of kindness and consideration.</LI><LI>Act professionally, ethically and with integrity: maintain a high standard of behavior in all interactions.</LI><LI>When posting, please use English as your main language: This will help ensure effective communication between all members.</LI></UL><P>By following these guidelines, we will be able to create a supportive and inclusive environment where everyone feels valued and heard.</P><P>We look forward to embarking on this journey with you!<BR />Your SAP MaxAttention Team.</P> 2024-04-18T09:04:24.479000+02:00