a week ago - last edited Wednesday
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 🤩
a week ago
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?
a week ago
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...
a week ago
Thank you very much, Thomas! 👍
a week ago
a week ago
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.
a week ago
Hi,
Same issue with me. Most of us don't have on prem system. What can be done? 🤔
a week ago
a week ago
Adding the link here for reference
https://github.com/sbcgua/abap_mustache/tree/steampunk
a week ago
a week ago
a week ago
Oh, you made ABAP Cloud version yourself 🙃 You should get bonus point ⭐
a week ago
a week ago
a week ago
a week ago
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:
a week ago
Awesome!
How do you run the class result in the browser and view the HTML result?
Thanks
a week ago
For my test I just copy pasted the code from console to *.html file in notepad. But I am sure there are would be some better ways.
a week ago
thank you very much!
a week ago
Here's my submission.
bohranooru17/May2023DeveloperChallenge (github.com) - look for "src/yd215_opensrc_wk3.clas.abap"
a week ago
My submission for this week: https://github.com/Ennowulff/hello_world/blob/main/src/zcl_code_dojo_mustache_enno.clas.abap
a week ago
Hello, Mamikee!
Here's my code:
My repository with the code for this challenge: https://github.com/ggarcia-de-souza/helloWorldClassAbap.git
a week ago
Tears for Fears and A-Ha are two of my favorites from the 80s.
Cheers,
Rich
a week ago
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:
a week ago
My Code
Result
a week ago - last edited a week ago
Ah, you're killin me bro! LOL
a week ago
😁
a week ago
a week ago - last edited a week ago
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
a week ago
Tuesday
Hey Thomas, looks like I did not make the point.. I just wanted to make the point, that the Main-Branch is not cloud ready.
a week ago
Hello, here's my participation!
https://github.com/alinecanteiro/alinecanteiro-sap-dev-cc-open-source
a week ago
a week ago
a week ago
Awesome.... 🙂
a week ago
Thanks for your kind words, I try to follow you experts 🤓
a week ago
Great Challenge!
I had issues when I tried to run this solution on an instance of ABAP Environment!
I had to change a couple of instructions that are not ready for the new version of ABAP: ABAP for Cloud Development.
Finally it worked!
a week ago
a week ago
I also love app development in Angular and today recognize that it uses mustache in templates with double curly braces, called interpolation in Angular.
Saturday
Hi community,
nice challenge again, my code for week 3: