2023 May 24 11:50 AM - edited 2023 Jun 07 2:13 PM
This discussion thread is to submit your solution for Week 3 of the May 2023 Developer Challenge - Open-Source ABAP .
Week 3 – ABAP Mustache https://github.com/sbcgua/abap_mustache
Mustache is a big deal in the web development world. It's a template syntax that doesn't use logic, letting you whip up a text template, stick some tags in there, and then swap those tags with dynamic content straight from your program – anything from individual values to full lists of values. Mustache is a real champ when it comes to generating bits of HTML (or entire pages), or pretty much any other text you want to template. Plus, the Mustache syntax is used in a huge number of languages.
Community member @atsy has put together an implementation of the mustache processor in ABAP, and named it - you guessed it - ABAP Mustache. So, for your third-week challenge, we're putting the spotlight on the ABAP Mustache project. Your challenge is to simply create an ABAP application which leverages this framework and outputs some data to the console. How you use ABAP Mustache is totally up to you - it's your chance to get creative and show us what you've got. Whether you want to keep it simple or go all out is completely your call. Once you're done, all you need to do is share your working ABAP code and give us a screenshot of the output in the console to prove you've nailed the challenge.
Resources
❗You will get credit for this weeks’ challenge by posting in this discussion thread the working ABAP code (a screen shot of your code, or via a link to your GitHub repo), and showing a screen shot of the output in the console. To give you an idea, here's an example screenshot below.
Have Fun 🤩
2023 May 24 7:47 PM
Hello!
I am trying to test a similar class to the example above. However, when I run it, I get the following dump:
"Access using a 'ZERO' object reference is not possible."
Below is my code:
Does anyone here know what the problem could be?
2023 May 24 9:20 PM
It's your shortcut for newline - the c_nl that is the issue. You never create an instance of that object you just type like cl_abap_char_utilities. So, it's not a valid object reference. Change that to the full, original object or create a specific newline shortcut like so:
DATA(c_nl) = cl_abap_char_utilities=>newline.
Have a look at the solution here: abap-hello-world/zcl_mustache_test_guilherme.clas.abap at main · jung-thomas/abap-hello-world · GitH...
2023 May 25 1:11 PM
2023 May 24 8:46 PM
2023 Jun 04 8:19 PM - last edited on 2023 Jun 04 8:19 PM by Former Member
2023 May 25 5:12 AM
Seems I have to convert the macros to methods to activate the classes in ABAP cloud environment. Working with chatGPT to achieve that. @thomas_jung pls let me know if there is any easy way I can use this project in ABAP cloud.
2023 May 25 6:28 AM
2023 May 25 7:10 AM
2023 May 25 7:34 AM
2023 May 25 7:09 AM
2023 May 25 7:30 AM
2023 May 25 7:43 AM
2023 May 25 7:48 AM
2023 May 25 7:32 AM
2023 May 25 11:48 AM
2023 May 25 1:42 PM
Hello,
for this challenge someone already pulled ABAP Mustache repository into my instance of SAP BTP Cloud trial. But it was main branch which can not be activated on ABAP on Cloud (no SAP GUI). So I unlinked Z package, deleted objects and pulled "steampunk" branch of the repository, which is compatible with ABAP Cloud . Cheers mate 😉
Here is my implementation class. I tried to use ABAP Mustache to fill a demo "HTML e-mail template":
And screenshot of console output:
Valid HTML page output:
2023 May 25 3:25 PM
2023 May 26 6:37 AM
2023 May 26 1:43 PM
2023 May 25 2:17 PM
Here's my submission.
bohranooru17/May2023DeveloperChallenge (github.com) - look for "src/yd215_opensrc_wk3.clas.abap"
2023 May 25 4:20 PM
My submission for this week: https://github.com/Ennowulff/hello_world/blob/main/src/zcl_code_dojo_mustache_enno.clas.abap
2023 May 25 7:00 PM
Hello, Mamikee!
Here's my code:
My repository with the code for this challenge: https://github.com/ggarcia-de-souza/helloWorldClassAbap.git
2023 May 26 2:41 PM
2023 May 26 12:17 AM
Always nice to learn something new, and after a small improvement of the ABAP Mustache render class (https://github.com/sbcgua/abap_mustache/pull/12) I got this:
2023 May 26 10:14 AM
2023 May 26 2:43 PM - edited 2023 May 26 2:43 PM
2023 May 26 6:26 PM
2023 May 26 11:53 AM
2023 May 26 12:18 PM - edited 2023 May 26 12:22 PM
Here we go.. just toa make the point. You need an onprem, because it is not Cloud Ready! Make sure to take the correct branch --> https://github.com/sbcgua/abap_mustache/tree/steampunk
2023 May 26 12:33 PM
2023 May 30 8:29 AM
2023 May 26 2:05 PM
Hello, here's my participation!
https://github.com/alinecanteiro/alinecanteiro-sap-dev-cc-open-source
2023 May 26 3:29 PM
2023 May 26 3:54 PM
2023 May 26 5:51 PM
2023 May 26 10:46 PM
2023 May 26 6:07 PM
2023 May 26 10:23 PM
2023 May 26 10:49 PM