Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0b348c

Browse files
committedMay 11, 2021
pre-RSA SAP
1 parent a19a42c commit f0b348c

12 files changed

+1587
-0
lines changed
 

‎articles/sentinel/TOC.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
href: tutorial-respond-threats-playbook.md
2626
- name: Create KQL queries (Learn module)
2727
href: /learn/paths/sc-200-utilize-kql-for-azure-sentinel/
28+
- name: Deploy the Azure Sentinel solution for SAP
29+
href: sap-deploy-solution.md
2830
- name: Concepts
2931
items:
3032
- name: Classify data using entities
@@ -51,6 +53,8 @@
5153
href: identify-threats-with-entity-behavior-analytics.md
5254
- name: Import threat intelligence into Azure Sentinel
5355
href: import-threat-intelligence.md
56+
- name: Threat intelligence integrations
57+
href: threat-intelligence-integration.md
5458
- name: Bring your own machine learning platform
5559
href: bring-your-own-ml.md
5660
- name: Integrate Microsoft 365 Defender with Azure Sentinel
@@ -266,6 +270,16 @@
266270
href: connect-azure-stack.md
267271
- name: Monitor data connector health
268272
href: monitor-data-connector-health.md
273+
- name: Sentinel solutions
274+
items:
275+
- name: Find and deploy solutions
276+
href: sentinel-solutions.md
277+
- name: Build and publish solutions (for Partners)
278+
href: sentinel-solutions-building.md
279+
- name: Deploy the SAP data connector on-premises
280+
href: sap-solution-deploy-alternate.md
281+
- name: Enable user and entity behavior analytics
282+
href: enable-entity-behavior-analytics.md
269283
- name: Use user and entity behavior analytics
270284
items:
271285
- name: Enable UEBA
@@ -341,6 +355,14 @@
341355
href: cef-name-mapping.md
342356
- name: MCAS alerts not onboarded to Microsoft 365 Defender
343357
href: microsoft-cloud-app-security-alerts-not-imported-microsoft-365-defender.md
358+
- name: SAP solution references
359+
items:
360+
- name: Detailed SAP solution requirements
361+
href: sap-solution-detailed-requirements.md
362+
- name: Available SAP logs
363+
href: sap-solution-log-reference.md
364+
- name: SAP solution security content reference
365+
href: sap-solution-security-content.md
344366
- name: Resources
345367
items:
346368
- name: Useful resources
Loading
Loading
Loading
402 KB
Loading
416 KB
Loading
263 KB
Loading

‎articles/sentinel/sap-deploy-solution.md

Lines changed: 363 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 333 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,333 @@
1+
---
2+
title: Deploy the Azure Sentinel SAP data connector on-premises | Microsoft Docs
3+
description: Learn how to deploy the Azure Sentinel data connector for SAP environments using an on-premises machine.
4+
author: batamig
5+
ms.author: bagol
6+
ms.service: azure-sentinel
7+
ms.topic: how-to
8+
ms.custom: mvc
9+
ms.date: 05/10/2021
10+
ms.subservice: azure-sentinel
11+
12+
---
13+
14+
# Deploy the Azure Sentinel SAP data connector on-premises
15+
16+
This article describes how to deploy the Azure Sentinel SAP data connector using an on-premises machine and an Azure Key Vault to store your credentials.
17+
18+
> [!NOTE]
19+
> The default, and most recommended process for deploying the Azure Sentinel SAP data connector is by [using an Azure VM](sap-deploy-solution.md). This article is intended for advanced users.
20+
21+
> [!IMPORTANT]
22+
> The Azure Sentinel SAP solution is currently in PREVIEW. The [Azure Preview Supplemental Terms](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) include additional legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
23+
>
24+
25+
## Prerequisites
26+
27+
The basic prerequisites for deploying your Azure Sentinel SAP data connector are the same regardless of your deployment method.
28+
29+
Make sure that your system complies with the prerequisites documented in the main [SAP data connector deployment tutorial](sap-deploy-solution.md#prerequisites) before you start.
30+
31+
For more information, see [Azure Sentinel SAP solution detailed SAP requirements (public preview)](sap-solution-detailed-requirements.md).
32+
33+
## Create your Azure key vault
34+
35+
Create an Azure key vault that you can dedicate to your Azure Sentinel SAP data connector.
36+
37+
Run the following command to create your Azure key vault:
38+
39+
``` azurecli
40+
kvgp=<KVResourceGroup>
41+
42+
kvname=<keyvaultname>
43+
44+
#Create key vault
45+
az keyvault create \
46+
--name $kvname \
47+
--resource-group $kvgp
48+
```
49+
50+
For more information, see [Quickstart: Create a key vault using the Azure CLI](/azure/key-vault/general/quick-create-cli).
51+
52+
## Add Azure Key Vault secrets
53+
54+
To add Azure Key Vault secrets, run the following script, with your own system ID and the credentials you want to add:
55+
56+
```azurecli
57+
#Add Abap username
58+
az keyvault secret set \
59+
--name <SID>-ABAPUSER \
60+
--value "<abapuser>" \
61+
--description SECRET_ABAP_USER --vault-name $kvname
62+
63+
#Add Abap Username password
64+
az keyvault secret set \
65+
--name <SID>-ABAPPASS \
66+
--value "<abapuserpass>" \
67+
--description SECRET_ABAP_PASSWORD --vault-name $kvname
68+
69+
#Add java Username
70+
az keyvault secret set \
71+
--name <SID>-JAVAOSUSER \
72+
--value "<javauser>" \
73+
--description SECRET_JAVAOS_USER --vault-name $kvname
74+
75+
#Add java Username password
76+
az keyvault secret set \
77+
--name <SID>-JAVAOSPASS \
78+
--value "<javauserpass>" \
79+
--description SECRET_JAVAOS_PASSWORD --vault-name $kvname
80+
81+
#Add abapos username
82+
az keyvault secret set \
83+
--name <SID>-ABAPOSUSER \
84+
--value "<abaposuser>" \
85+
--description SECRET_ABAPOS_USER --vault-name $kvname
86+
87+
#Add abapos username password
88+
az keyvault secret set \
89+
--name <SID>-ABAPOSPASS \
90+
--value "<abaposuserpass>" \
91+
--description SECRET_ABAPOS_PASSWORD --vault-name $kvname
92+
93+
#Add Azure Log ws ID
94+
az keyvault secret set \
95+
--name <SID>-LOG_WS_ID \
96+
--value "<logwsod>" \
97+
--description SECRET_AZURE_LOG_WS_ID --vault-name $kvname
98+
99+
#Add Azure Log ws public key
100+
az keyvault secret set \
101+
--name <SID>-LOG_WS_PUBLICKEY \
102+
--value "<loswspubkey>" \
103+
--description SECRET_AZURE_LOG_WS_PUBLIC_KEY --vault-name $kvname
104+
```
105+
106+
For more information, see the [az keyvault secret](/cli/azure/keyvault/secret) CLI documentation.
107+
108+
## Deploy the SAP data connector
109+
110+
After you have a key vault with your SAP credentials, deploy your SAP data connector on your on-premises machine.
111+
112+
**To deploy the SAP data connector**:
113+
114+
1. On your on-premises machine, download the latest SAP NW RFC SDK from the [SAP Launchpad site](https://support.sap.com) > **SAP NW RFC SDK** > **SAP NW RFC SDK 7.50** > **nwrfc750X_X-xxxxxxx.zip**.
115+
116+
> [!NOTE]
117+
> You'll need your SAP user sign-in information in order to access the SDK, and you must download the SDK that matches your operating system.
118+
>
119+
> Make sure to select the **LINUX ON X86_64 65BIT** option.
120+
121+
1. On your on-premises machine, create a new folder with a meaningful name, and copy the SDK zip file into your new folder.
122+
123+
1. Clone the Azure Sentinel solution GitHub repo onto your on-premises machine, and copy Azure Sentinel SAP solution **systemconfig.ini** file into your new folder.
124+
125+
For example:
126+
127+
```bash
128+
Wget <systemconfig.ini location>
129+
mkdir /home/$(pwd)/sapcon/<sap-sid>/
130+
cp <azuresentinel4sap>/template/systemconfig.ini /home/$(pwd)/sapcon/<sap-sid>/
131+
cp <**nwrfc750X_X-xxxxxxx.zip**> /home/$(pwd)/sapcon/<sap-sid>/
132+
```
133+
134+
1. Edit the **systemconfig.ini** file as needed, using the embedded comments as a guide.
135+
136+
To test your configuration, add the user and password to the **systemconfig.ini** configuration file. We recommend that you use the **env.list** file, or Docker secrets as shown in [Manually configure the SAP data connector](#manually-configure-the-sap-data-connector).
137+
138+
> [!NOTE]
139+
> Enter your time zone in GMT format, such as: `GMT+0`,`GMT+1`,`GMT-1`
140+
141+
1. Define the logs that you want to ingest into Azure Sentinel using the instructions in the **systemconfig.ini** file. For example, see [Define the SAP logs that are sent to Azure Sentinel](#define-the-sap-logs-that-are-sent-to-azure-sentinel).
142+
143+
1. Define the following configurations using the instructions in the **systemconfig.ini** file:
144+
145+
- Whether to include user email addresses in audit logs
146+
- Whether to retry failed API calls
147+
- Whether to include cexal audit logs
148+
- Whether to wait an interval of time between data extractions, especially for large extractions
149+
150+
For more information, see [SAL logs connector configurations](#sal-logs-connector-settings).
151+
152+
1. Save your updated **systemconfig.ini** file in the **sapcon** directory on your machine.
153+
154+
1. Create a temporary **env.list** file with any required credentials. Once your Docker container is running correctly, make sure to delete this file.
155+
156+
> [!NOTE]
157+
> The following script has each Docker container connecting to a specific ABAP system. Modify your script as needed for your environment.
158+
>
159+
160+
Run:
161+
162+
```bash
163+
##############################################################
164+
##############################################################
165+
# env.list template
166+
SAPADMUSER=<SET_SAPCONTROL_USER>
167+
SAPADMPASSWORD=<SET_SAPCONTROL_PASS>
168+
ABAPUSER=SET_ABAP_USER>
169+
ABAPPASS=<SET_ABAP_PASS>
170+
JAVAUSER=<SET_JAVA_OS_USER>
171+
JAVAPASS=<SET_JAVA_OS_USER>
172+
##############################################################
173+
```
174+
175+
1. Download and run the pre-defined Docker image with the SAP data connector installed. Run:
176+
177+
```azurecli
178+
docker pull docker pull mcr.microsoft.com/azure-sentinel/solutions/sapcon /sapcon:latest
179+
docker run --env-file=<env.list_location> -d -v /home/$(pwd)/sapcon/<sap-sid>/:/sapcon-app/sapcon/config/system --name sapcon-<sid> sapcon
180+
rm -f <env.list_location>
181+
```
182+
183+
1. Verify that the Docker container is running correctly. Run:
184+
185+
```azurecli
186+
docker logs –f sapcon-[SID]
187+
188+
```
189+
190+
1. In Azure Sentinel, browse to **Azure Sentinel Continuous Threat Monitoring for SAP** data connector to confirm the connection:
191+
192+
[ ![Azure Sentinel Continuous Threat Monitoring for SAP data connector page.](media/sap/sap-data-connector.png) ](media/sap/sap-data-connector.png#lightbox)
193+
194+
> [!NOTE]
195+
> It may take up to 15 minutes for data ingestion to start.
196+
>
197+
198+
SAP logs are displayed in the Azure Sentinel **Logs** page under **Custom logs**:
199+
200+
[ ![SAP ABAP logs under Custom logs in Azure Sentinel.](media/sap/sap-logs-in-sentinel.png) ](media/sap/sap-logs-in-sentinel.png#lightbox)
201+
202+
## Manually configure the SAP data connector
203+
204+
The Azure Sentinel SAP solution data connector is configured in the **systemconfig.ini** file, which you cloned to your SAP data connector machine as part of the [deployment procedure](#deploy-the-sap-data-connector).
205+
206+
The following code shows a sample **systemconfig.ini** file:
207+
208+
```Python
209+
[Secrets Source]
210+
secrets = '<DOCKER_RUNTIME/AZURE_KEY_VAULT/DOCKER_SECRETS/DOCKER_FIXED>'
211+
keyvault = '<SET_YOUR_AZURE_KEYVAULT>'
212+
intprefix = '<SET_YOUR_PREFIX>'
213+
214+
[ABAP Central Instance]
215+
##############################################################
216+
# Define the following values according to your server configuration.
217+
ashost = <SET_YOUR_APPLICATION_SERVER_HOST>
218+
mshost = <SET_YOUR_MESSAGE_SERVER_HOST> - #In case different then App
219+
##############################################################
220+
group = <SET_YOUR_LOGON_GROUP>
221+
msserv = <SET_YOUR_MS_SERVICE> - #Required only if the message server service is not defined as sapms<SYSID> in /etc/services
222+
sysnr = <SET_YOUR_SYS_NUMBER>
223+
user = <SET_YOUR_USER>
224+
##############################################################
225+
# Enter your password OR your X509 SNC parameters
226+
passwd = <SET_YOUR_PASSWORD>
227+
snc_partnername = <SET_YOUR_SNC_PARTNER_NAME>
228+
snc_lib = <SET_YOUR_SNC_LIBRARY_PATH>
229+
x509cert = <SET_YOUR_X509_CERTIFICATE>
230+
##############################################################
231+
sysid = <SET_YOUR_SYSTEM_ID>
232+
client = <SET_YOUR_CLIENT>
233+
234+
[Azure Credentials]
235+
loganalyticswsid = <SET_YOUR_LOG_ANALYTICS_WORKSPACE_ID>
236+
publickey = <SET_YOUR_PUBLIC_KEY>
237+
238+
[File Extraction ABAP]
239+
osuser = <SET_YOUR_SAPADM_LIKE_USER>
240+
##############################################################
241+
# Enter your password OR your X509 SNC parameters
242+
ospasswd = <SET_YOUR_SAPADM_PASS>
243+
x509pkicert = <SET_YOUR_X509_PKI_CERTIFICATE>
244+
##############################################################
245+
appserver = <SET_YOUR_SAPCTRL_SERVER>
246+
instance = <SET_YOUR_SAP_INSTANCE>
247+
abapseverity = <SET_ABAP_SEVERITY>
248+
abaptz = <SET_ABAP_TZ>
249+
250+
[File Extraction JAVA]
251+
javaosuser = <SET_YOUR_JAVAADM_LIKE_USER>
252+
##############################################################
253+
# Enter your password OR your X509 SNC parameters
254+
javaospasswd = <SET_YOUR_JAVAADM_PASS>
255+
javax509pkicert = <SET_YOUR_X509_PKI_CERTIFICATE>
256+
##############################################################
257+
javaappserver = <SET_YOUR_JAVA_SAPCTRL_SERVER>
258+
javainstance = <SET_YOUR_JAVA_SAP_INSTANCE>
259+
javaseverity = <SET_JAVA_SEVERITY>
260+
javatz = <SET_JAVA_TZ>
261+
```
262+
263+
### Define the SAP logs that are sent to Azure Sentinel
264+
265+
Add the following code to the Azure Sentinel SAP solution **systemconfig.ini** file to define the logs that are sent to Azure Sentinel.
266+
267+
For more information, see [Azure Sentinel SAP solution logs reference (public preview)](sap-solution-log-reference.md).
268+
269+
```Python
270+
##############################################################
271+
# Enter True OR False for each log to send those logs to Azure Sentinel
272+
[Logs Activation Status]
273+
ABAPAuditLog = True
274+
ABAPJobLog = True
275+
ABAPSpoolLog = True
276+
ABAPSpoolOutputLog = True
277+
ABAPChangeDocsLog = True
278+
ABAPAppLog = True
279+
ABAPWorkflowLog = True
280+
ABAPCRLog = True
281+
ABAPTableDataLog = False
282+
# ABAP SAP Control Logs - Retrieved by using SAP Conntrol interface and OS Login
283+
ABAPFilesLogs = False
284+
SysLog = False
285+
ICM = False
286+
WP = False
287+
GW = False
288+
# Java SAP Control Logs - Retrieved by using SAP Conntrol interface and OS Login
289+
JAVAFilesLogs = False
290+
##############################################################
291+
```
292+
293+
### SAL logs connector settings
294+
295+
Add the following code to the Azure Sentinel SAP data connector **systemconfig.ini** file to define other settings for SAP logs ingested into Azure Sentinel.
296+
297+
For more information, see [Deploy the SAP data connector](#deploy-the-sap-data-connector).
298+
299+
300+
```Python
301+
##############################################################
302+
[Connector Configuration]
303+
extractuseremail = True
304+
apiretry = True
305+
auditlogforcexal = False
306+
auditlogforcelegacyfiles = False
307+
timechunk = 60
308+
##############################################################
309+
```
310+
311+
This section enables you to configure the following parameters:
312+
313+
|Parameter name |Description |
314+
|---------|---------|
315+
|**extractuseremail** | Determines whether user email addresses are included in audit logs. |
316+
|**apiretry** | Determines whether API calls are retried as a failover mechanism. |
317+
|**auditlogforcexal** | Determines whether the system forces the use of audit logs for non-SAL systems, such as SAP BASIS version 7.4. |
318+
|**auditlogforcelegacyfiles** | Determines whether the system forces the use of audit logs with legacy system capabilities, such as from SAP BASIS version 7.4 with lower patch levels.|
319+
|**timechunk** | Determines that the system waits a specific number of minutes as an interval between data extractions. Use this parameter if you have a large amount of data expected. <br><br>For example, during the initial data load during your first 24 hours, you might want to have the data extraction running only every 30 minutes to give each data extraction enough time. In such cases, set this value to **30**. <!--unclear--> |
320+
| | |
321+
322+
323+
## Next steps
324+
325+
After you have your SAP data connector deployed, you can add the SAP-related security content.
326+
327+
For more information, see [Deploy the SAP solution security content from Azure Sentinel](sap-deploy-solution.md#deploy-sap-security-content-from-azure-sentinel).
328+
329+
For more information, see:
330+
331+
- [Azure Sentinel SAP solution detailed SAP requirements](sap-solution-detailed-requirements.md)
332+
- [Azure Sentinel SAP solution logs reference](sap-solution-log-reference.md)
333+
- [Azure Sentinel SAP solution: security content reference](sap-solution-security-content.md)
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
---
2+
title: Azure Sentinel SAP solution detailed SAP requirements | Microsoft Docs
3+
description: Learn about the detailed SAP system requirements for the Azure Sentinel SAP solution.
4+
author: batamig
5+
ms.author: bagold
6+
ms.service: azure-sentinel
7+
ms.topic: reference
8+
ms.custom: mvc
9+
ms.date: 05/10/2021
10+
ms.subservice: azure-sentinel
11+
12+
---
13+
14+
# Azure Sentinel SAP solution detailed SAP requirements (public preview)
15+
16+
The [default procedure for deploying the Azure Sentinel SAP solution](sap-deploy-solution.md) includes the required SAP change requests and SAP notes, and provides a built-in role with all required permissions.
17+
18+
This article lists the required SAP change requests, notes, and permissions in detail.
19+
20+
Use this article as a reference if you're an admin, or if you're [deploying the SAP solution manually](sap-solution-deploy-alternate.md). This article is intended for advanced SAP users.
21+
22+
23+
> [!IMPORTANT]
24+
> The Azure Sentinel SAP solution is currently in PREVIEW. The [Azure Preview Supplemental Terms](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) include additional legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
25+
>
26+
27+
## Required SAP Log change requests
28+
29+
The following SAP Log change requests are required for the SAP solution, depending on your SAP Basis version:
30+
31+
- **SAP Basis versions 7.50 and higher**, install S4HK900125
32+
- **SAP Basis version 7.40**, install S4HK900126
33+
- **To create a SAP role with the required authorizations**, for any supported SAP Basis version, install S4HK900114. For more information, see [Configure your SAP system](sap-deploy-solution.md#configure-your-sap-system) and [Required ABAP backend authorizations](#required-abap-authorizations).
34+
35+
> [!NOTE]
36+
> The required SAP log change requests expose custom RFC FMs that are required for the connector, and do not change any standard or custom objects.
37+
>
38+
39+
## Required SAP notes
40+
41+
If you have an SAP Basis version of 7.50 or lower, install the following SAP notes:
42+
43+
- **SAP Note 2641084**. Provides standardized read access for the Security Audit log data.
44+
- **SAP Note 2173545**. Named `CHANGEDOCUMENT_READ_ALL`.
45+
- **SAP Note 2502336**. Named `RSSCD100 - read only from archive, not from database`.
46+
47+
Access the SAP notes from the [SAP support Launchpad site](https://support.sap.com/en/index.html).
48+
49+
## Required ABAP authorizations
50+
51+
The following table lists the ABAP authorizations required for the backend SAP user to connect Azure Sentinel to the SAP logs. For more information, see [Configure your SAP system](sap-deploy-solution.md#configure-your-sap-system).
52+
53+
Required authorizations are listed by log type. You only need the authorizations listed for the types of logs you plan to ingest into Azure Sentinel.
54+
55+
> [!TIP]
56+
> To create the role with all required authorizations, deploy the SAP change request [S4HK900114](#required-sap-log-change-requests) on your SAP system. This change request creates the **/MSFTSEN/SENTINEL_CONNECTOR** role, and assigns the role to the ABAP connecting to Azure Sentinel.
57+
>
58+
59+
| Authorization Object | Field | Value |
60+
| -------------------- | ----- | ----- |
61+
| **All RFC logs** | | |
62+
| S_RFC | FUGR | /OSP/SYSTEM_TIMEZONE |
63+
| S_RFC | FUGR | ARFC |
64+
| S_RFC | FUGR | STFC |
65+
| S_RFC | FUGR | RFC1 |
66+
| S_RFC | FUGR | SDIFRUNTIME |
67+
| S_RFC | FUGR | SMOI |
68+
| S_RFC | FUGR | SYST |
69+
| S_RFC | FUGR/FUNC | SRFC/RFC_SYSTEM_INFO |
70+
| S_RFC | FUGR/FUNC | THFB/TH_SERVER_LIST |
71+
| S_TCODE | TCD | SM51 |
72+
| **ABAP Application Log** | | |
73+
| S_APPL_LOG | ACTVT | Display |
74+
| S_APPL_LOG | ALG_OBJECT | * |
75+
| S_APPL_LOG | ALG_SUBOBJ | * |
76+
| S_RFC | FUGR | SXBP_EXT |
77+
| S_RFC | FUGR | /MSFTSEN/_APPLOG |
78+
| **ABAP Change Documents Log** | | |
79+
| S_RFC | FUGR | /MSFTSEN/_CHANGE_DOCS |
80+
| **ABAP CR Log** | | |
81+
| S_RFC | FUGR | CTS_API |
82+
| S_RFC | FUGR | /MSFTSEN/_CR |
83+
| S_TRANSPRT | ACTVT | Display |
84+
| S_TRANSPRT | TTYPE | * |
85+
| **ABAP DB Table Data Log** | | |
86+
| S_RFC | FUGR | /MSFTSEN/_TD |
87+
| S_TABU_DIS | ACTVT | Display |
88+
| S_TABU_DIS | DICBERCLS | &NC& |
89+
| S_TABU_DIS | DICBERCLS | + Any object required for logging |
90+
| S_TABU_NAM | ACTVT | Display |
91+
| S_TABU_NAM | TABLE | + Any object required for logging |
92+
| S_TABU_NAM | TABLE | DBTABLOG |
93+
| **ABAP Job Log** | | |
94+
| S_RFC | FUGR | SXBP |
95+
| S_RFC | FUGR | /MSFTSEN/_JOBLOG |
96+
| **ABAP Job Log, ABAP Application Log** | | |
97+
| S_XMI_PRD | INTERFACE | XBP |
98+
| **ABAP Security Audit Log - XAL** | | |
99+
| All RFC | S_RFC | FUGR |
100+
| S_ADMI_FCD | S_ADMI_FCD | AUDD |
101+
| S_RFC | FUGR | SALX |
102+
| S_USER_GRP | ACTVT | Display |
103+
| S_USER_GRP | CLASS | * |
104+
| S_XMI_PRD | INTERFACE | XAL |
105+
| **ABAP Security Audit Log - XAL, ABAP Job Log, ABAP Application Log** | | |
106+
| S_RFC | FUGR | SXMI |
107+
| S_XMI_PRD | EXTCOMPANY | Microsoft |
108+
| S_XMI_PRD | EXTPRODUCT | Azure Sentinel |
109+
| **ABAP Security Audit Log - SAL** | | |
110+
| S_RFC | FUGR | RSAU_LOG |
111+
| S_RFC | FUGR | /MSFTSEN/_AUDITLOG |
112+
| **ABAP Spool Log, ABAP Spool Output Log** | | |
113+
| S_RFC | FUGR | /MSFTSEN/_SPOOL |
114+
| **ABAP Workflow Log** | | |
115+
| S_RFC | FUGR | SWRR |
116+
| S_RFC | FUGR | /MSFTSEN/_WF |
117+
| | |
118+
119+
## Next steps
120+
121+
For more information, see:
122+
123+
- [Tutorial: Deploy the Azure Sentinel solution for SAP](sap-deploy-solution.md)
124+
- [Deploy the Azure Sentinel SAP data connector on-premises](sap-solution-deploy-alternate.md)
125+
- [Azure Sentinel SAP solution logs reference](sap-solution-log-reference.md)
126+
- [Azure Sentinel SAP solution: built-in security content](sap-solution-security-content.md)

‎articles/sentinel/sap-solution-log-reference.md

Lines changed: 620 additions & 0 deletions
Large diffs are not rendered by default.

‎articles/sentinel/sap-solution-security-content.md

Lines changed: 123 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.