-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial version of SAP AEM Integration - day 4
- Loading branch information
HariRangarajan-Solace
authored and
HariRangarajan-Solace
committed
Oct 12, 2023
1 parent
a68dc56
commit 74e19f2
Showing
8 changed files
with
164 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"environment": "web", | ||
"format": "html", | ||
"prefix": "https://storage.googleapis.com", | ||
"mainga": "UA-49880327-14", | ||
"updated": "2023-10-12T16:43:08+02:00", | ||
"id": "sap-aem-int-day-4", | ||
"duration": 19, | ||
"title": "Event Enable SAP Using SAP Advanced Event Mesh - Day 4", | ||
"summary": "Day 4/5 : This code lab walks the participant through the experience of using SAP AEM to event enable their SAP ecosystem and workflows", | ||
"source": "sap-aem-int-day-4.md", | ||
"theme": "", | ||
"status": [ | ||
"hidden" | ||
], | ||
"category": null, | ||
"tags": [ | ||
"aem", | ||
"capm", | ||
"eventportal", | ||
"sap", | ||
"sapbtp", | ||
"web" | ||
], | ||
"feedback": "https://github.com/SolaceDev/solace-dev-codelabs/blob/master/markdown/sap-aem-int-day-4", | ||
"url": "sap-aem-int-day-4" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
|
||
<!doctype html> | ||
|
||
<html> | ||
<head> | ||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> | ||
<meta name="theme-color" content="#4F7DC9"> | ||
<meta charset="UTF-8"> | ||
<title>Event Enable SAP Using SAP Advanced Event Mesh - Day 4</title> | ||
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Code+Pro:400|Roboto:400,300,400italic,500,700|Roboto+Mono"> | ||
<link rel="stylesheet" href="//fonts.googleapis.com/icon?family=Material+Icons"> | ||
<link rel="stylesheet" href="https://storage.googleapis.com/claat-public/codelab-elements.css"> | ||
<style> | ||
.success { | ||
color: #1e8e3e; | ||
} | ||
.error { | ||
color: red; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<google-codelab-analytics gaid="UA-49880327-14" ga4id=""></google-codelab-analytics> | ||
<google-codelab codelab-gaid="" | ||
codelab-ga4id="" | ||
id="sap-aem-int-day-4" | ||
title="Event Enable SAP Using SAP Advanced Event Mesh - Day 4" | ||
environment="web" | ||
feedback-link="https://github.com/SolaceDev/solace-dev-codelabs/blob/master/markdown/sap-aem-int-day-4"> | ||
|
||
<google-codelab-step label="What you'll learn: Overview" duration="5"> | ||
<p>Day 4 of 5. Topics covered :</p> | ||
<ul> | ||
<li>Using SAP BPA to handle event exceptions</li> | ||
</ul> | ||
|
||
|
||
</google-codelab-step> | ||
|
||
<google-codelab-step label="What you need: Prerequisites" duration="7"> | ||
<p>Enter environment setup & prerequisites here</p> | ||
|
||
|
||
</google-codelab-step> | ||
|
||
<google-codelab-step label="Step 1 - Using SAP BPA to handle event exceptions" duration="0"> | ||
|
||
|
||
</google-codelab-step> | ||
|
||
<google-codelab-step label="Takeaways" duration="7"> | ||
<p>✅ < Fill IN TAKEAWAY 1><br> ✅ < Fill IN TAKEAWAY 2><br> ✅ < Fill IN TAKEAWAY 3></p> | ||
<p class="image-container"><img alt="Soly Image Caption" src="img/44f356558033e250.gif"></p> | ||
<p>Thanks for participating in this codelab! Let us know what you thought in the <a href="https://solace.community/" target="_blank">Solace Community Forum</a>! If you found any issues along the way we'd appreciate it if you'd raise them by clicking the Report a mistake button at the bottom left of this codelab.</p> | ||
|
||
|
||
</google-codelab-step> | ||
|
||
</google-codelab> | ||
|
||
<script src="https://storage.googleapis.com/claat-public/native-shim.js"></script> | ||
<script src="https://storage.googleapis.com/claat-public/custom-elements.min.js"></script> | ||
<script src="https://storage.googleapis.com/claat-public/prettify.js"></script> | ||
<script src="https://storage.googleapis.com/claat-public/codelab-elements.js"></script> | ||
<script src="//support.google.com/inapp/api.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
# | ||
# export.sh | ||
# | ||
# export the codelab to the right directory | ||
|
||
# Get markdown file name | ||
codelab_markdown_filename=`ls *.md` | ||
rm -fr temp | ||
|
||
claat export -o ../../codelabs/ $codelab_markdown_filename |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "codelab-bootstrap", | ||
"version": "1.0.0", | ||
"description": "use nodemon to watch changes on md file, rebuild codelab on saves", | ||
"main": "index.js", | ||
"scripts": { | ||
"watch": "nodemon --watch sap-aem-int-day-4.md --exec \"claat export -o temp/ sap-aem-int-day-4.md && ./node_modules/kill-port/cli.js --port 9090 && cd temp/sap-aem-int-day-4 && claat serve\"" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/SolaceDev/solace-dev-codelabs/tree/master/markdown/sap-aem-int-day-4" | ||
}, | ||
"keywords": [ | ||
"codelab" | ||
], | ||
"dependencies": { | ||
"kill-port": "^1.6.1", | ||
"nodemon": "^2.0.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
author: HariRangarajan-Solace | ||
summary: Day 4/5 : This code lab walks the participant through the experience of using SAP AEM to event enable their SAP ecosystem and workflows | ||
id: sap-aem-int-day-4 | ||
tags: SAP, AEM, Event Portal, SAP BTP, CAPM | ||
categories: | ||
environments: Web | ||
status: Hidden | ||
feedback link: https://github.com/SolaceDev/solace-dev-codelabs/blob/master/markdown/sap-aem-int-day-4 | ||
|
||
# Event Enable SAP Using SAP Advanced Event Mesh - Day 4 | ||
|
||
## What you'll learn: Overview | ||
|
||
Duration: 0:05:00 | ||
|
||
Day 4 of 5. | ||
Topics covered : | ||
- Using SAP BPA to handle event exceptions | ||
|
||
## What you need: Prerequisites | ||
|
||
Duration: 0:07:00 | ||
|
||
Enter environment setup & prerequisites here | ||
|
||
## Step 1 - Using SAP BPA to handle event exceptions | ||
|
||
## Takeaways | ||
|
||
Duration: 0:07:00 | ||
|
||
✅ < Fill IN TAKEAWAY 1> | ||
✅ < Fill IN TAKEAWAY 2> | ||
✅ < Fill IN TAKEAWAY 3> | ||
|
||
![Soly Image Caption](img/soly.gif) | ||
|
||
Thanks for participating in this codelab! Let us know what you thought in the [Solace Community Forum](https://solace.community/)! If you found any issues along the way we'd appreciate it if you'd raise them by clicking the Report a mistake button at the bottom left of this codelab. |