<?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 - APIs - Task 0 - Learn to share your task results in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276138#M2336</link>
    <description>&lt;P&gt;b93966f4194b9c1713ac31a9b267ef071035494ff83d9633dbe5953719cd6020&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 11:47:55 GMT</pubDate>
    <dc:creator>_Konstantin_32</dc:creator>
    <dc:date>2023-08-01T11:47:55Z</dc:date>
    <item>
      <title>SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276058#M2319</link>
      <description>&lt;P&gt;(Check out the &lt;A href="https://blogs.sap.com/2023/08/01/sap-developer-challenge-apis/" target="_blank" rel="noopener"&gt;SAP Developer Challenge - APIs&lt;/A&gt; blog post for everything you need to know about the challenge to which this task relates!)&lt;/P&gt;&lt;P&gt;This month's Developer Challenge consists of a number of tasks. Each task is introduced in a new, separate discussion thread on the SAP Community platform, specifically in the &lt;A href="https://groups.community.sap.com/t5/application-development/gh-p/application-development" target="_blank" rel="noopener"&gt;Application Development&lt;/A&gt; group.&lt;/P&gt;&lt;H2&gt;Background&lt;/H2&gt;&lt;P&gt;In each new discussion created, a new task will be presented. The context will be explained and relevant background information and pointers to helpful resources will be provided. But most importantly for you, the task itself will be described in detail, and that detail will include exactly the result that you need to produce.&lt;/P&gt;&lt;P&gt;That result will be in the form of a string, which you will then need to share in a reply to that task's discussion thread.&lt;/P&gt;&lt;P&gt;But.&lt;/P&gt;&lt;P&gt;Instead of sharing the result in its raw form, you'll first need to hash it with your SAP Community ID. This is for two reasons:&lt;/P&gt;&lt;P&gt;First, you can share your result but no-one can copy your answer, as it will be hashed with another value unique to you - your SAP Community ID. This means that you can share your hashed task result value openly but no-one can copy it and use it as their own.&lt;/P&gt;&lt;P&gt;Second, it's a good opportunity to interact with a simple API, providing data in the URL path, but also providing your SAP Community ID as a value in a special header in the HTTP request.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Hashing data is quite straightforward and there are libraries built into many programming languages to do this. It is not normally necessary to have to use an API call to use a hash function. We are just providing one here to give you some extra API work to do as part of this month's challenge!&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;H2&gt;Hashing your value&lt;/H2&gt;&lt;P&gt;When you have a value which represents the result of a task, that you need to share, follow this procedure. For this example, let's say that the value is the string my-task-result.&lt;/P&gt;&lt;H3&gt;Call the hash endpoint to get your hash&lt;/H3&gt;&lt;P&gt;There's a simple HTTP service at &lt;A class="" href="https://developer-challenge.cfapps.eu10.hana.ondemand.com/" target="_blank" rel="noopener"&gt;https://developer-challenge.cfapps.eu10.hana.ondemand.com/&lt;/A&gt; that currently provides a single endpoint /v1/hash. Use this endpoint &lt;A href="https://developer-challenge.cfapps.eu10.hana.ondemand.com/" target="_blank" rel="noopener"&gt;as instructed&lt;/A&gt; to receive a hash. You must provide two pieces of information:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the value you want to hash (as part of the URL path)&lt;/LI&gt;&lt;LI&gt;your SAP Community ID (in a header)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;How you specify each of these two values is described on the &lt;A href="https://developer-challenge.cfapps.eu10.hana.ondemand.com/" target="_blank" rel="noopener"&gt;HTTP service's landing page&lt;/A&gt;. Make sure you follow the instructions.&lt;/P&gt;&lt;P&gt;If your call is successful, you'll receive a hash in response. The hash mechanism uses SHA256 and a hex digest is what's provided as the hash output, in case your interested.&lt;/P&gt;&lt;H3&gt;Reply to the task's discussion thread with that hash&lt;/H3&gt;&lt;P&gt;Once you have the hash, post a reply to the task's discussion thread, with that hash value.&lt;/P&gt;&lt;P&gt;DO NOT ADD ANYTHING ELSE TO THAT REPLY. Don't be tempted to add any formatting, either. Include just the hash value, with no other content. This is because we will be automating the checks for correct responses, and if we cannot successfully parse out the hash value from your reply, that value won't be counted.&lt;/P&gt;&lt;H2&gt;Your task&lt;/H2&gt;&lt;P&gt;So the very first task of this month's Developer Challenge ... is to make sure you can follow the above process to hash a value (representing any given answer to a future task in this series) and provide it in a reply to the discussion thread.&lt;/P&gt;&lt;P&gt;Use the static value&lt;/P&gt;&lt;PRE&gt;this-is-the-year-of-the-api&lt;/PRE&gt;&lt;P&gt;(don't include the line number 1 in there, that's just an artifact of how preformatted text is rendered on this platform) and follow the above process to get a hash for this value and post the hash as a reply to this discussion thread.&lt;/P&gt;&lt;P&gt;You can call the hash endpoint any way you like. Note that you can't just call it in your browser, as a basic GET request. In other words, you can't just make a simple HTTP GET request to &lt;A class="" href="https://developer-challenge.cfapps.eu10.hana.ondemand.com/v1/hash(value='this-is-the-year-of-the-api')" target="_blank" rel="noopener"&gt;https://developer-challenge.cfapps.eu10.hana.ondemand.com/v1/hash(value='this-is-the-year-of-the-api')&lt;/A&gt; and expect to get a successful hash response. You must provide an extra HTTP header in your request, conveying your SAP Community ID, as described in the &lt;A href="https://developer-challenge.cfapps.eu10.hana.ondemand.com/" target="_blank" rel="noopener"&gt;landing page&lt;/A&gt;.&lt;/P&gt;&lt;H2&gt;Hints and tips&lt;/H2&gt;&lt;P&gt;You can make the API call to get a hash for your combination of value and SAP Community ID any way you wish.&lt;/P&gt;&lt;H3&gt;Your favorite programming language&lt;/H3&gt;&lt;P&gt;For example, you could use your favorite programming language. There'll be a library that will let you make HTTP requests, add custom headers, and capture the body of the response.&lt;/P&gt;&lt;H3&gt;The REST Client extension&lt;/H3&gt;&lt;P&gt;If you're comfortable in VS Code or the SAP Business Application Studio, you can use the &lt;A href="https://marketplace.visualstudio.com/items?itemName=humao.rest-client" target="_blank" rel="noopener"&gt;REST Client extension&lt;/A&gt; (which is built-in to SAP Business Application Studio Dev Spaces). This extension lets you define HTTP requests, and run them. Here's an example of this in action:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="rest-client.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/41126iD2E708178F7B9B4B/image-size/large?v=v2&amp;amp;px=999" role="button" title="rest-client.png" alt="rest-client.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.sap.com/assets/rest-client.png" border="0" alt="" /&gt;&lt;EM&gt;Using the REST Client extension to make the hash API call&lt;/EM&gt;&lt;/P&gt;&lt;H3&gt;Postman&lt;/H3&gt;&lt;P&gt;You could also use a graphical HTTP client such as &lt;A href="https://www.postman.com/" target="_blank" rel="noopener"&gt;Postman&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="postman.png" style="width: 999px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/41127i996296654F62F88C/image-size/large?v=v2&amp;amp;px=999" role="button" title="postman.png" alt="postman.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.sap.com/assets/postman.png" border="0" alt="" /&gt;&lt;EM&gt;Using Postman to make the hash API call&lt;/EM&gt;&lt;/P&gt;&lt;H3&gt;A command line client&lt;/H3&gt;&lt;P&gt;You can of course use a command line client, arguably the most flexible and powerful approaches. And after all, &lt;A href="https://twitter.com/search?q=%23TheFutureIsTerminal" target="_blank" rel="noopener"&gt;#TheFutureIsTerminal&lt;/A&gt;, right? There are many command line HTTP clients, such as &lt;A href="https://www.gnu.org/software/wget/" target="_blank" rel="noopener"&gt;wget&lt;/A&gt;, &lt;A href="https://httpie.io/" target="_blank" rel="noopener"&gt;httpie&lt;/A&gt; and of course &lt;A href="https://curl.se/" target="_blank" rel="noopener"&gt;curl&lt;/A&gt;, which is used everywhere, &lt;A href="https://youtu.be/Ic37FI351G4?t=126" target="_blank" rel="noopener"&gt;even on Mars&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Here's an example using curl:&lt;/P&gt;&lt;PRE&gt;curl \
  --include \
  --header "CommunityID: qmacro" \
  --url "https://developer-challenge.cfapps.eu10.hana.ondemand.com/v1/hash(value='this-is-the-year-of-the-api')"&lt;/PRE&gt;&lt;P&gt;The response (which includes the HTTP headers in that response, because we asked for them with the --include option), looks like this:&lt;/P&gt;&lt;PRE&gt;HTTP/2 200
content-type: text/plain; charset=utf-8
date: Sat, 22 Jul 2023 13:53:34 GMT
etag: W/"40-LWwbQuJtCsQ3SBBXmdG8hHlJ0EI"
x-correlation-id: a718cf85-83a6-4d3a-54df-9791f1cea235
x-powered-by: Express
x-vcap-request-id: a718cf85-83a6-4d3a-54df-9791f1cea235
content-length: 64
strict-transport-security: max-age=31536000; includeSubDomains; preload;

b8193c6703e9d123e4aa639e43eee631a2f6e3788508b5c6fb3098a3f201607c&lt;/PRE&gt;&lt;H3&gt;Sharing your hash in a reply to the discussion thread&lt;/H3&gt;&lt;P&gt;In each of these examples, the hash received in response is:&lt;/P&gt;&lt;PRE&gt;b8193c6703e9d123e4aa639e43eee631a2f6e3788508b5c6fb3098a3f201607c&lt;/PRE&gt;&lt;P&gt;This is the value that must be posted in a reply to this discussion thread. Just copy-paste it into the body of a new reply. &lt;STRONG&gt;Don't include the line-number or formatting. Just the hash value!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2026 05:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276058#M2319</guid>
      <dc:creator>qmacro</dc:creator>
      <dc:date>2026-06-01T05:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276076#M2322</link>
      <description>&lt;P&gt;ddbe6cf586750bd227d750fa4261fd0ec381039849864459de3bbc6b5b387f2a&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 08:59:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276076#M2322</guid>
      <dc:creator>former_member154802</dc:creator>
      <dc:date>2023-08-01T08:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276092#M2325</link>
      <description>&lt;P&gt;e1f552466cf276f6bdb262d1167918afebd021dbce544cfb7c428be37d6900fd&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 09:32:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276092#M2325</guid>
      <dc:creator>Dan_Wroblewski</dc:creator>
      <dc:date>2023-08-01T09:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276093#M2326</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;66&lt;/SPAN&gt;&lt;SPAN&gt;b718fd5dfb4e20517fe9f97808416225905433f74b292f9cb936e0ea1663f4&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 01 Aug 2023 09:46:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276093#M2326</guid>
      <dc:creator>shrinivasan_neelamegam</dc:creator>
      <dc:date>2023-08-01T09:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276095#M2327</link>
      <description>&lt;P&gt;4ad820372d02c26cf55d507f8a9e1aba218d0be65da210ece5c60aa2258bdfa3&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 09:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276095#M2327</guid>
      <dc:creator>Bharathi-Sakthivel</dc:creator>
      <dc:date>2023-08-01T09:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276106#M2328</link>
      <description>&lt;P&gt;a5cca2ea7bffdaf6fd10502c54a052187cfc3fd8ea5f1d0f4a5f6715fabd87be&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 10:31:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276106#M2328</guid>
      <dc:creator>vladimirs_semikins</dc:creator>
      <dc:date>2023-08-01T10:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276110#M2329</link>
      <description>&lt;P&gt;182b4e640c32dd01b5f1d030ae35272043bd49bbe8a2b5afd83148c7747cd311&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 10:41:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276110#M2329</guid>
      <dc:creator>StKollos</dc:creator>
      <dc:date>2023-08-01T10:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276113#M2331</link>
      <description>&lt;P&gt;90276098aa06217494f948e4b3f47911d052f535273ae716d511ebc839251dcd&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 10:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276113#M2331</guid>
      <dc:creator>Zakir_hussain</dc:creator>
      <dc:date>2023-08-01T10:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276131#M2333</link>
      <description>&lt;P&gt;83cb01391e3de360b52377769e92f835a4c66156a0d5b40630764477e8c9dc5b&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:40:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276131#M2333</guid>
      <dc:creator>gphadnis2000</dc:creator>
      <dc:date>2023-08-01T11:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276136#M2334</link>
      <description>&lt;P&gt;&lt;SPAN&gt;1f1f1195df1893494ae38fa39a0a0b503cffe191b8381a0dee33ac703b54aee6&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276136#M2334</guid>
      <dc:creator>sandeepmalhotra</dc:creator>
      <dc:date>2023-08-01T11:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276137#M2335</link>
      <description>&lt;P&gt;3dbf765290592a7fd94a06fdb550790d04edde16299de1683815832b0b921dfc&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276137#M2335</guid>
      <dc:creator>abdullahgunes</dc:creator>
      <dc:date>2023-08-01T11:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276138#M2336</link>
      <description>&lt;P&gt;b93966f4194b9c1713ac31a9b267ef071035494ff83d9633dbe5953719cd6020&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276138#M2336</guid>
      <dc:creator>_Konstantin_32</dc:creator>
      <dc:date>2023-08-01T11:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276139#M2337</link>
      <description>&lt;P&gt;8605d22cfa31f083e5ff41ceefead6d8bd27c1b4d9112e56c7686f616a5e1206&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 11:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276139#M2337</guid>
      <dc:creator>prachetas</dc:creator>
      <dc:date>2023-08-01T11:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276148#M2338</link>
      <description>&lt;P&gt;3240ee041db84cb07f8971b46fd7a600601bf9f96f11c786221613154f44b9db&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 12:28:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276148#M2338</guid>
      <dc:creator>Ramjee_korada</dc:creator>
      <dc:date>2023-08-01T12:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276160#M2339</link>
      <description>&lt;P&gt;62a84ff96ebcc74ddf93c42a76c2262660542f3c3fa4ee4837fd9113394039ff&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 13:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276160#M2339</guid>
      <dc:creator>cguttikonda24</dc:creator>
      <dc:date>2023-08-01T13:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276164#M2340</link>
      <description>&lt;P&gt;019f52bd615e9bd71963c4e8a8e22c2520f4d01b7b8c3fc870333cb73337dba5&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 13:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276164#M2340</guid>
      <dc:creator>Frank_Haschick</dc:creator>
      <dc:date>2023-08-01T13:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276201#M2344</link>
      <description>&lt;P&gt;b7de3b7775a6193152c5d89e0fe0c14d8e23cac746aac61e0a3ad08b18391f28&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 15:36:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276201#M2344</guid>
      <dc:creator>kumarniti4</dc:creator>
      <dc:date>2023-08-01T15:36:21Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276204#M2345</link>
      <description>&lt;P&gt;2d1894982838eb9fab584c5d19e5e9444366cf97e3da2609aafcc1b597eb1a9a&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 15:39:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276204#M2345</guid>
      <dc:creator>ceedee666</dc:creator>
      <dc:date>2023-08-01T15:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276224#M2346</link>
      <description>&lt;PRE&gt;6a98248a2a7edfa160136f704c3c768facff3fc974d974a42ff75ec6ab8903c8&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Aug 2023 16:16:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276224#M2346</guid>
      <dc:creator>koehntopp</dc:creator>
      <dc:date>2023-08-01T16:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: SAP Developer Challenge - APIs - Task 0 - Learn to share your task results</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276226#M2347</link>
      <description>&lt;PRE&gt;2d648fca653a53c40b3a8363b9fd52d810aceac09f94430b01c0bbdf1756bcc4&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Aug 2023 16:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-developer-challenge-apis-task-0-learn-to-share-your-task-results/m-p/276226#M2347</guid>
      <dc:creator>pmwilliam</dc:creator>
      <dc:date>2023-08-01T16:27:51Z</dc:date>
    </item>
  </channel>
</rss>

