<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284998#M4030</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AjayDeshetty_0-1694075923776.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43438i0D97A7B053431C0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="AjayDeshetty_0-1694075923776.png" alt="AjayDeshetty_0-1694075923776.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Sep 2023 08:39:22 GMT</pubDate>
    <dc:creator>AjayDeshetty</dc:creator>
    <dc:date>2023-09-07T08:39:22Z</dc:date>
    <item>
      <title>SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284674#M4000</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;&lt;SPAN&gt;If you have not checked out the&lt;A href="https://blogs.sap.com/2023/09/06/sap-developer-challenge-full-stack-sap-cap-sap-fiori-elements/" target="_self" rel="noopener noreferrer"&gt; initial blog post&lt;/A&gt; for this challenge, please do so and get your development environment set up as outlined in the post.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;H3&gt;&lt;STRONG&gt;Task Description&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H3&gt;&lt;P&gt;&lt;SPAN&gt;We are working on creating test(s) for a particular course/subject. We need to have a pool of questions (related to the course/subject) that we can pick from to make up a test. A single test can be associated with several questions, but each question belongs to only one test. Through the relationship between tests and questions, one should be able to access all questions related to a specific test and easily access the specific test to which a question belongs (hint: &lt;/SPAN&gt;&lt;A href="https://cap.cloud.sap/docs/cds/cdl#to-many-associations" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;backlink&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;).&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Additionally, we need to have a right answer for every question and a question can only have one right answer. An answer cannot exist without a question. If a question is deleted, so should the linked answer be deleted.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We will get started with database modeling using SAP CAP. We delve into the architecture, carefully defining two core entities and an aspect respectively: "&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Tests&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;," "&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Questions&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;," and "&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Answers&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;".&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Tests Entity&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt; – serves as a container for organizing different test cycles. Each entry within the Tests entity represents a unique object with attributes such as test &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;ID,&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;title&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;description&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;createdAt, createdBy, modifiedAt, modifiedBy &lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;and any other vital information relating to tests. A single test can have many questions. This entity allows us to categorize and manage tests efficiently, facilitating easy retrieval and presentation of tests data.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Questions Entity&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt; – serves as a repository for individual questions comprising the intellectual content of our tests. Each entry in the Questions entity comprises attributes such as &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;ID, text&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, and any other vital information relating to questions. Many questions can be associated with a single test, but each question belongs to only one test (that is, two different tests cannot have the same question). Centralizing questions in this entity allows us to create a cohesive reservoir of knowledge that can be easily linked to a Test instance.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Answers Aspect&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;– records the correct answer to a particular question. Each record in this aspect corresponds to a correct answer linked to a specific question. Each entry in the Answers aspect comprises attributes such as &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;ID, &lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;and &lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;text&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;. The separation of answers from questions reinforces data integrity.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;Why an Aspect instead of Entity for the Answers?&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Aspects are well suited for representing data that does not have a distinct identity of their own. In our schema design, the answers cannot exist without a question. For example, if a question record is deleted, we would want an answer associated with it to be deleted as well. Using an aspect in this case allows us to associate answers data directly with questions without creating a separate entity.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;H3&gt;&lt;STRONG&gt;Task outline&lt;/STRONG&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;SPAN&gt;Our goal is to perform &lt;/SPAN&gt;&lt;A href="https://cap.cloud.sap/docs/guides/domain-modeling#entity-relationship-modeling" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;entity-relationship modeling&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; based on the above entities' description and then &lt;/SPAN&gt;&lt;A href="https://cap.cloud.sap/docs/guides/databases#using-csv-files" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;populate initial data&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; in csv files to be used in the next tasks. Below is a visual representation providing details (entity properties and data types) to help with the modeling.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Schema.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43346i0642034B7C80E9C6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Schema.png" alt="Schema.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;H3&gt;&lt;STRONG&gt;Steps&lt;/STRONG&gt;&amp;nbsp;&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Model the entities in the&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt; db/data-model.cds&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt; file.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Declare the remaining entities in &lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;srv/cat-service.cds&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt; file (The Tests entity has already been declared).&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://cap.cloud.sap/docs/guides/databases#using-csv-files" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Generate an empty set of initial csv files&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; and then &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;manually populate&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt; them with about two or more records of data each. &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;Note&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;: remember the relationships that exist between entities when populating the records.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;H3&gt;&lt;STRONG&gt;Resources&lt;/STRONG&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;SPAN&gt;Here are some resources to guide you through this task:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/tools/#command-line-interface-cli" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;CDS Command line Interface tools&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/guides/domain-modeling" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Domain modeling&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/advanced/performance-modeling#compositions-vs-associations" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Compositions vs. Associations&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/cds/cdl#to-many-associations" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Modeling to many associations&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/guides/providing-services#modeling-services" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Modeling services in CDS&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://cap.cloud.sap/docs/guides/databases#providing-initial-data" target="_blank" rel="noopener nofollow noreferrer"&gt;&lt;SPAN&gt;Providing Initial Data&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;H3&gt;&lt;STRONG&gt;Task checklist&lt;/STRONG&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;SPAN&gt;Run the application (&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;cds watch&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt;). Note that the initial errors displayed in the terminal after our development environment setup should have disappeared.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Click on the URL that the server is listening on to access the page displayed below:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Launched page.png" style="width: 486px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43347iF35C1FC1BF864D8E/image-dimensions/486x409?v=v2" width="486" height="409" role="button" title="Launched page.png" alt="Launched page.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;Under Service Endpoints, click on&lt;I&gt; &lt;/I&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;I&gt;&lt;SPAN&gt;$metadata&lt;/SPAN&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;SPAN&gt; and post a screenshot into this discussion thread. Collapse other sections and focus on the &amp;lt;EntityType Name=”...”&amp;gt; tags as shown below.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="week 1 res.png" style="width: 940px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43348iB6FE4D00C7CAF2AC/image-size/large?v=v2&amp;amp;px=999" role="button" title="week 1 res.png" alt="week 1 res.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Sep 2023 11:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284674#M4000</guid>
      <dc:creator>dinah</dc:creator>
      <dc:date>2023-09-06T11:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284691#M4001</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="seVladimirs_1-1694077014811.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43442i3AF9E0A92F5DF609/image-size/medium?v=v2&amp;amp;px=400" role="button" title="seVladimirs_1-1694077014811.png" alt="seVladimirs_1-1694077014811.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 08:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284691#M4001</guid>
      <dc:creator>vladimirs_semikins</dc:creator>
      <dc:date>2023-09-07T08:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284716#M4002</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="harsh_itaverma_0-1693994889592.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43358iDC1A85D1E7EEEAB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="harsh_itaverma_0-1693994889592.png" alt="harsh_itaverma_0-1693994889592.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 10:08:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284716#M4002</guid>
      <dc:creator>harsh_itaverma</dc:creator>
      <dc:date>2023-09-06T10:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284736#M4003</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-09-06 at 13.21.05.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43362iB81BAD3C8C9BC896/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2023-09-06 at 13.21.05.png" alt="Screenshot 2023-09-06 at 13.21.05.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 11:21:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284736#M4003</guid>
      <dc:creator>nicoschoenteich</dc:creator>
      <dc:date>2023-09-06T11:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284738#M4004</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-09-06 at 12.39.07.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43364i76E5C8C27BB76845/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-09-06 at 12.39.07.png" alt="Screenshot 2023-09-06 at 12.39.07.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 11:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284738#M4004</guid>
      <dc:creator>qmacro</dc:creator>
      <dc:date>2023-09-06T11:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284743#M4005</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SandipAgarwalla_2-1694001816758.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43368i0D2032006EB6017C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SandipAgarwalla_2-1694001816758.png" alt="SandipAgarwalla_2-1694001816758.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SandipAgarwalla_3-1694001843056.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43369iDB92C18E246C6D53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SandipAgarwalla_3-1694001843056.png" alt="SandipAgarwalla_3-1694001843056.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 12:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284743#M4005</guid>
      <dc:creator>SandipAgarwalla</dc:creator>
      <dc:date>2023-09-06T12:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284770#M4007</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="thomas_jung_0-1694005188831.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43373i1059F9D54D8C8373/image-size/medium?v=v2&amp;amp;px=400" role="button" title="thomas_jung_0-1694005188831.png" alt="thomas_jung_0-1694005188831.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 12:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284770#M4007</guid>
      <dc:creator>thomas_jung</dc:creator>
      <dc:date>2023-09-06T12:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284810#M4008</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-09-07 at 00.17.23.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43386iD258499231D7A3D2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-09-07 at 00.17.23.png" alt="Screenshot 2023-09-07 at 00.17.23.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 14:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284810#M4008</guid>
      <dc:creator>ravishgarg</dc:creator>
      <dc:date>2023-09-06T14:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284816#M4009</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cap1.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43387i7C4090499957CA35/image-size/large?v=v2&amp;amp;px=999" role="button" title="cap1.png" alt="cap1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 14:30:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284816#M4009</guid>
      <dc:creator>abdullahgunes</dc:creator>
      <dc:date>2023-09-06T14:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284832#M4011</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasmeenhs_0-1694012507290.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43399i834B084EE5FF923E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yasmeenhs_0-1694012507290.png" alt="yasmeenhs_0-1694012507290.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 15:01:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284832#M4011</guid>
      <dc:creator>yasmeenhs</dc:creator>
      <dc:date>2023-09-06T15:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284844#M4012</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="metadata.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43403i184AF629785C82C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="metadata.png" alt="metadata.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 15:48:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284844#M4012</guid>
      <dc:creator>EvandroFerreira</dc:creator>
      <dc:date>2023-09-06T15:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284847#M4013</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nex_0-1694015733237.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43404i4635AF8B68BBFF08/image-size/large?v=v2&amp;amp;px=999" role="button" title="nex_0-1694015733237.png" alt="nex_0-1694015733237.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 15:55:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284847#M4013</guid>
      <dc:creator>nex</dc:creator>
      <dc:date>2023-09-06T15:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284854#M4014</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ruthiel_0-1694017293631.png" style="width: 810px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43405iD6C19D9AB186A6BD/image-dimensions/810x825?v=v2" width="810" height="825" role="button" title="Ruthiel_0-1694017293631.png" alt="Ruthiel_0-1694017293631.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 16:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284854#M4014</guid>
      <dc:creator>Ruthiel</dc:creator>
      <dc:date>2023-09-06T16:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284888#M4015</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Erdaleser_0-1694026908452.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43419i86C70A7FF728580A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Erdaleser_0-1694026908452.png" alt="Erdaleser_0-1694026908452.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 19:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284888#M4015</guid>
      <dc:creator>Erdaleser</dc:creator>
      <dc:date>2023-09-06T19:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284893#M4017</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;EntityType Name="Tests"&amp;gt;
&amp;lt;Key&amp;gt;
&amp;lt;PropertyRef Name="ID"/&amp;gt;
&amp;lt;PropertyRef Name="IsActiveEntity"/&amp;gt;
&amp;lt;/Key&amp;gt;
&amp;lt;Property Name="ID" Type="Edm.Guid" Nullable="false"/&amp;gt;
&amp;lt;Property Name="createdAt" Type="Edm.DateTimeOffset"/&amp;gt;
&amp;lt;Property Name="createdBy" Type="Edm.String" MaxLength="256"/&amp;gt;
&amp;lt;Property Name="modifiedAt" Type="Edm.DateTimeOffset"/&amp;gt;
&amp;lt;Property Name="modifiedBy" Type="Edm.String" MaxLength="256"/&amp;gt;
&amp;lt;Property Name="title" Type="Edm.String" MaxLength="255"/&amp;gt;
&amp;lt;Property Name="description" Type="Edm.String" MaxLength="100"/&amp;gt;
&amp;lt;NavigationProperty Name="questions" Type="Collection(DevChallengeService.Questions)" Partner="test"/&amp;gt;
&amp;lt;Property Name="IsActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="true"/&amp;gt;
&amp;lt;Property Name="HasActiveEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/&amp;gt;
&amp;lt;Property Name="HasDraftEntity" Type="Edm.Boolean" Nullable="false" DefaultValue="false"/&amp;gt;
&amp;lt;NavigationProperty Name="DraftAdministrativeData" Type="DevChallengeService.DraftAdministrativeData" ContainsTarget="true"/&amp;gt;
&amp;lt;NavigationProperty Name="SiblingEntity" Type="DevChallengeService.Tests"/&amp;gt;
&amp;lt;/EntityType&amp;gt;
&amp;lt;EntityType Name="Questions"&amp;gt;
&amp;lt;Key&amp;gt;
&amp;lt;PropertyRef Name="ID"/&amp;gt;
&amp;lt;/Key&amp;gt;
&amp;lt;Property Name="ID" Type="Edm.Guid" Nullable="false"/&amp;gt;
&amp;lt;Property Name="text" Type="Edm.String" MaxLength="255" Nullable="false"/&amp;gt;
&amp;lt;NavigationProperty Name="answer" Type="DevChallengeService.Questions_answer" Partner="up_"&amp;gt;
&amp;lt;OnDelete Action="Cascade"/&amp;gt;
&amp;lt;ReferentialConstraint Property="ID" ReferencedProperty="up__ID"/&amp;gt;
&amp;lt;/NavigationProperty&amp;gt;
&amp;lt;NavigationProperty Name="test" Type="DevChallengeService.Tests" Partner="questions"&amp;gt;
&amp;lt;ReferentialConstraint Property="test_ID" ReferencedProperty="ID"/&amp;gt;
&amp;lt;/NavigationProperty&amp;gt;
&amp;lt;Property Name="test_ID" Type="Edm.Guid"/&amp;gt;
&amp;lt;/EntityType&amp;gt;
&amp;lt;EntityType Name="DraftAdministrativeData"&amp;gt;
&amp;lt;Key&amp;gt;
&amp;lt;PropertyRef Name="DraftUUID"/&amp;gt;
&amp;lt;/Key&amp;gt;
&amp;lt;Property Name="DraftUUID" Type="Edm.Guid" Nullable="false"/&amp;gt;
&amp;lt;Property Name="CreationDateTime" Type="Edm.DateTimeOffset" Precision="7"/&amp;gt;
&amp;lt;Property Name="CreatedByUser" Type="Edm.String" MaxLength="256"/&amp;gt;
&amp;lt;Property Name="DraftIsCreatedByMe" Type="Edm.Boolean"/&amp;gt;
&amp;lt;Property Name="LastChangeDateTime" Type="Edm.DateTimeOffset" Precision="7"/&amp;gt;
&amp;lt;Property Name="LastChangedByUser" Type="Edm.String" MaxLength="256"/&amp;gt;
&amp;lt;Property Name="InProcessByUser" Type="Edm.String" MaxLength="256"/&amp;gt;
&amp;lt;Property Name="DraftIsProcessedByMe" Type="Edm.Boolean"/&amp;gt;
&amp;lt;/EntityType&amp;gt;
&amp;lt;EntityType Name="Questions_answer"&amp;gt;
&amp;lt;Key&amp;gt;
&amp;lt;PropertyRef Name="up__ID"/&amp;gt;
&amp;lt;PropertyRef Name="ID"/&amp;gt;
&amp;lt;/Key&amp;gt;
&amp;lt;NavigationProperty Name="up_" Type="DevChallengeService.Questions" Nullable="false" Partner="answer"&amp;gt;
...
&amp;lt;/NavigationProperty&amp;gt;
&amp;lt;Property Name="up__ID" Type="Edm.Guid" Nullable="false"/&amp;gt;
&amp;lt;Property Name="ID" Type="Edm.Guid" Nullable="false"/&amp;gt;
&amp;lt;Property Name="text" Type="Edm.String" MaxLength="255"/&amp;gt;
&amp;lt;/EntityType&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 19:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284893#M4017</guid>
      <dc:creator>swanandl</dc:creator>
      <dc:date>2023-09-06T19:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284897#M4018</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="stickman_0x00_0-1694031186916.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43422i6CDC7F382FEBD320/image-size/medium?v=v2&amp;amp;px=400" role="button" title="stickman_0x00_0-1694031186916.png" alt="stickman_0x00_0-1694031186916.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 20:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284897#M4018</guid>
      <dc:creator>stickman_0x00</dc:creator>
      <dc:date>2023-09-06T20:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284902#M4019</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SAP Developer Challenge - Full-Stack [Week 1].png" style="width: 966px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43423i86FAC3C633F172E0/image-size/large?v=v2&amp;amp;px=999" role="button" title="SAP Developer Challenge - Full-Stack [Week 1].png" alt="SAP Developer Challenge - Full-Stack [Week 1].png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 21:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284902#M4019</guid>
      <dc:creator>narendran_nv</dc:creator>
      <dc:date>2023-09-06T21:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284914#M4020</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="choujiacheng_0-1694051788165.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43425i98A9B94723978E23/image-size/medium?v=v2&amp;amp;px=400" role="button" title="choujiacheng_0-1694051788165.png" alt="choujiacheng_0-1694051788165.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 01:56:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284914#M4020</guid>
      <dc:creator>choujiacheng</dc:creator>
      <dc:date>2023-09-07T01:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284920#M4021</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 794px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43481iFA9F2B7B5629603A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 07 Sep 2023 15:09:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284920#M4021</guid>
      <dc:creator>kedarT</dc:creator>
      <dc:date>2023-09-07T15:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - Full-Stack - Project Set-up and Database Modeling (Week 1)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284937#M4022</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2023-09-07_07-30-21.png" style="width: 812px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/43429i80306666E3E0B8ED/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-09-07_07-30-21.png" alt="2023-09-07_07-30-21.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 05:31:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-full-stack-project-set-up-and-database-modeling/m-p/284937#M4022</guid>
      <dc:creator>Trulov</dc:creator>
      <dc:date>2023-09-07T05:31:24Z</dc:date>
    </item>
  </channel>
</rss>

