Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ concurrency:
group: link-checker-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

permissions:
pull-requests: write

jobs:
link-check:
runs-on: ubuntu-latest
Expand All @@ -23,6 +26,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Check links in markdown files
uses: lycheeverse/lychee-action@v2
with:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Detect changed file types
id: filter
run: |
Expand Down Expand Up @@ -49,6 +54,11 @@ jobs:
with:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Validate branch naming
run: |
BRANCH_NAME="${{ github.head_ref }}"
Expand Down
12 changes: 11 additions & 1 deletion misc/destinations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,10 @@ The entire zip file must be attached as it provides comprehensive information to

Include a full network trace (`.har` file) with all requests in the scenario after it was reproduced. This is essential for support teams to understand the flow of API calls and identify the root cause of browser-based issues.

For information about how to extract the network trace, see [How to capture an HTTP trace using Google Chrome or MS Edge (Chromium)](<https://launchpad.support.sap.com/#/notes/1990706>).
For information about how to extract the network trace, see:

- [How to capture an HTTP trace using Google Chrome or MS Edge (Chromium)](https://launchpad.support.sap.com/#/notes/1990706)
- [Capture a browser trace for troubleshooting](https://docs.cloud.google.com/support/docs/capture-browser-trace) (Google Cloud)

The `.har` file should be exported from your browser (Chrome, Edge, Firefox, or Safari) and must include:

Expand All @@ -550,6 +553,13 @@ The `.har` file should be exported from your browser (Chrome, Edge, Firefox, or

This comprehensive trace allows support teams to analyze the complete flow of API calls, identify failed requests, and diagnose connectivity or configuration issues.

Before attaching the `.har` file to your support ticket, verify it is valid and not corrupted using one of these methods:

- **Google HAR Analyzer**: Open the [Google HAR Analyzer](https://toolbox.googleapps.com/apps/har_analyzer/) and drag in the file. If it loads and shows requests, the file is valid.
- **Browser DevTools**: Open Chrome or Edge DevTools, go to the **Network** tab, right-click anywhere in the request list, and select **Import HAR file**. A corrupted file will fail to load or show no entries.

A corrupted `.har` file (for example, due to an incomplete export or file truncation) cannot be analyzed and will delay the support process.

#### Option 3: On-Premise Destinations (ProxyType=OnPremise)

If your destination uses `ProxyType=OnPremise` (Cloud Connector), additional artifacts are required beyond the Environment Check report and HAR file. The Cloud Connector adds another layer between SAP BTP and your back-end system, requiring specific configuration details and logs for proper troubleshooting.
Expand Down
Loading