2 weeks ago - last edited 7 hours ago
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 🤩
2 weeks 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?
2 weeks 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...
2 weeks ago
Thank you very much, Thomas! 👍
2 weeks ago
Sunday - last edited Sunday
Hello
How do you test the last class zcl_hello_dev_challenge_tpj in the browser ? Do you have created other objects than the class zcl_hello_dev_challenge_tpj?
2 weeks 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.
2 weeks ago
Hi,
Same issue with me. Most of us don't have on prem system. What can be done? 🤔
2 weeks ago
2 weeks ago
Adding the link here for reference
https://github.com/sbcgua/abap_mustache/tree/steampunk
2 weeks ago
2 weeks ago
2 weeks ago
Oh, you made ABAP Cloud version yourself 🙃 You should get bonus point ⭐
2 weeks ago
2 weeks ago
2 weeks ago
2 weeks 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:
2 weeks ago
Awesome!
How do you run the class result in the browser and view the HTML result?
Thanks
2 weeks 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.
2 weeks ago
thank you very much!
2 weeks ago
Here's my submission.
bohranooru17/May2023DeveloperChallenge (github.com) - look for "src/yd215_opensrc_wk3.clas.abap"
2 weeks ago
My submission for this week: https://github.com/Ennowulff/hello_world/blob/main/src/zcl_code_dojo_mustache_enno.clas.abap
2 weeks ago
Hello, Mamikee!
Here's my code:
My repository with the code for this challenge: https://github.com/ggarcia-de-souza/helloWorldClassAbap.git
2 weeks ago
Tears for Fears and A-Ha are two of my favorites from the 80s.
Cheers,
Rich
2 weeks 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:
2 weeks ago
My Code
Result
2 weeks ago - last edited 2 weeks ago
Ah, you're killin me bro! LOL
2 weeks ago
😁
2 weeks ago
2 weeks ago - last edited 2 weeks 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
2 weeks ago
a week ago
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.
2 weeks ago
Hello, here's my participation!
https://github.com/alinecanteiro/alinecanteiro-sap-dev-cc-open-source
2 weeks ago
2 weeks ago
2 weeks ago
Awesome.... 🙂
2 weeks ago
Thanks for your kind words, I try to follow you experts 🤓
2 weeks 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!
2 weeks ago
2 weeks 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.