diff --git a/.wordlist.txt b/.wordlist.txt
index 0aec2ce76..bd1112208 100644
--- a/.wordlist.txt
+++ b/.wordlist.txt
@@ -910,6 +910,9 @@ Subcommands
SubjectAware
SubjectStorer
Subprocessor
+SubscriptionCartConvertedSubscriber
+SubscriptionOrderPlacedSubscriber
+SubscriptionTransformedSubscriber
SuggestPage
SwagAdvDevBundle
SwagB
diff --git a/products/extensions/b2b-components/employee-management/guides/subscription-integration.md b/products/extensions/b2b-components/employee-management/guides/subscription-integration.md
new file mode 100644
index 000000000..b8005b06a
--- /dev/null
+++ b/products/extensions/b2b-components/employee-management/guides/subscription-integration.md
@@ -0,0 +1,330 @@
+---
+nav:
+ title: Subscription Integration
+ position: 60
+
+---
+
+# B2B Employee Integration for Subscriptions
+
+This guide describes how B2B Employees are integrated with the Subscription module, enabling employee-based subscription management and tracking within a B2B context.
+
+## Overview
+
+The B2B Employee Integration for Subscriptions extends subscription functionality to support B2B employee workflows without modifying the core Subscription module. All B2B-specific logic is contained within the B2B Employee Management module using decorators, extensions, and event subscribers.
+
+This integration enables:
+
+- **Permission-based subscription access** - Control which subscriptions employees can view
+- **Employee tracking** - Track which employee created each subscription
+- **Organization context preservation** - Maintain organization data throughout the subscription lifecycle
+
+## Prerequisites
+
+- Shopware 6.7 with Subscriptions extension
+- B2B Components with Employee Management module
+- Understanding of [Subscription concepts](../../../../extensions/subscriptions/concept.md)
+- Understanding of [B2B Employee Management concepts](../concepts/index.md)
+
+## Key Features
+
+### Employee-Based Subscription Permissions
+
+Employees can view subscriptions based on their assigned permissions:
+
+| Permission | Access Level |
+|------------|--------------|
+| `subscription.read.all` | View all subscriptions in the system |
+| `organization_unit.subscription.read` | View subscriptions from assigned organization unit + own subscriptions |
+| (no permission) | View only own subscriptions |
+
+These permissions are checked when employees access subscription lists, ensuring data isolation and security in B2B contexts.
+
+### Employee Tracking
+
+Subscriptions track which employee created them through the `b2b_components_subscription_employee` association table. This enables:
+
+- **Permission-based filtering** - Filter subscriptions by employee and organization
+- **Employee context in orders** - Both initial and renewal orders maintain employee context
+- **Audit trails** - Track which employee initiated each subscription
+
+### Organization Context
+
+Organization data is preserved throughout the subscription lifecycle:
+
+- **Initial orders** - Organization data is added when subscription is created during checkout
+- **Renewal orders** - Organization data is maintained in subsequent automated orders
+- **Context preservation** - Organization information flows through all subscription-related processes
+
+## Architecture
+
+### Core Components
+
+The integration is built using several key components in the B2B Employee Management module:
+
+**Decorators:**
+
+- `SubscriptionRouteDecorator` - Decorates `SubscriptionRoute` to apply permission-based filtering
+- `SalesChannelContextServiceDecorator` - Adds employee context to subscription sales channel contexts
+
+**Event Subscribers:**
+
+- `SubscriptionTransformedSubscriber` - Adds employee and organization data during subscription creation
+- `SubscriptionCartConvertedSubscriber` - Adds employee and organization data to initial orders
+- `SubscriptionOrderPlacedSubscriber` - Maintains employee context in renewal orders
+
+**Entity Extension:**
+
+- `SubscriptionExtension` - Extends `SubscriptionDefinition` with `subscriptionEmployee` association
+- `SubscriptionEmployeeDefinition` - Defines the subscription-employee relationship
+
+**Filter Service:**
+
+- `SubscriptionEmployeeFilter` - Implements permission-based subscription filtering logic
+
+### Integration Patterns
+
+The integration follows Shopware best practices:
+
+**1. Decorator Pattern**
+
+Instead of modifying core Subscription code, the integration uses decorators to extend functionality:
+
+```php
+// SubscriptionRouteDecorator wraps the core SubscriptionRoute
+$this->decorated->load($request, $context, $criteria);
+// Then applies employee-based filtering
+$this->subscriptionEmployeeFilter->applyEmployeeFilter($criteria, $employee);
+```
+
+**2. Event-Based Integration**
+
+Key subscription events are used to inject employee data:
+
+- `SubscriptionTransformedEvent` - Fired when subscription is created from cart
+- `SUBSCRIPTION_CART_CONVERTED` - Fired when subscription cart is converted to order
+- `CheckoutOrderPlacedEvent` - Fired when renewal order is placed
+
+**3. Entity Extension Pattern**
+
+The `SubscriptionExtension` adds the employee association to subscriptions without modifying the core entity:
+
+```php
+new OneToOneAssociationField(
+ 'subscriptionEmployee',
+ 'id',
+ 'subscription_id',
+ SubscriptionEmployeeDefinition::class,
+ false
+);
+```
+
+## Database Schema
+
+### b2b_components_subscription_employee Table
+
+This table links subscriptions to the employees who created them:
+
+| Column | Type | Description |
+|--------|------|-------------|
+| `id` | BINARY(16) | Primary key |
+| `subscription_id` | BINARY(16) | Foreign key to `subscription` (UNIQUE) |
+| `employee_id` | BINARY(16) | Foreign key to `b2b_employee` |
+| `created_at` | DATETIME(3) | Creation timestamp |
+| `updated_at` | DATETIME(3) | Update timestamp |
+
+**Key characteristics:**
+
+- One-to-one relationship between subscription and subscription_employee
+- `subscription_id` has a UNIQUE constraint ensuring one employee per subscription
+- Foreign keys maintain referential integrity
+
+## Technical Flows
+
+### Initial Subscription Order Flow
+
+When an employee checks out with a subscription product, the following flow occurs:
+
+```mermaid
+sequenceDiagram
+ participant Customer as Employee Customer
+ participant Checkout as Checkout Process
+ participant Transformer as SubscriptionTransformer
+ participant TransformedSub as SubscriptionTransformedSubscriber
+ participant CartSub as SubscriptionCartConvertedSubscriber
+ participant Order as Initial Order
+
+ Customer->>Checkout: Checkout with subscription product
+ Checkout->>Transformer: transform() subscription cart
+ Transformer->>TransformedSub: dispatch SubscriptionTransformedEvent
+ TransformedSub->>TransformedSub: Add subscriptionEmployee data
+ TransformedSub->>TransformedSub: Add orderEmployee to convertedOrder
+ TransformedSub->>TransformedSub: Add organization to convertedOrder
+ Transformer->>CartSub: dispatch SUBSCRIPTION_CART_CONVERTED
+ CartSub->>CartSub: Add orderEmployee to cart
+ CartSub->>CartSub: Add organization to cart
+ CartSub->>Order: Create initial order with employee + org
+
+ Note over Order: Initial Order has:
- orderEmployee ✓
- organization ✓
+ Note over Transformer: Subscription has:
- subscriptionEmployee ✓
- convertedOrder with employee ✓
+```
+
+**Key Points:**
+
+1. `SubscriptionTransformedSubscriber` adds employee and organization data to the subscription being created
+2. `SubscriptionCartConvertedSubscriber` ensures the initial order contains employee and organization data
+3. The subscription's `convertedOrder` field stores this data for future renewal orders
+
+### Permission-Based Subscription Filtering
+
+When an employee views their subscriptions, filtering is applied based on permissions:
+
+```mermaid
+flowchart TD
+ Start[Employee loads subscriptions]
+ Start --> Decorator[SubscriptionRouteDecorator]
+ Decorator --> Filter[SubscriptionEmployeeFilter]
+ Filter --> CheckAll{Has subscription.read.all?}
+
+ CheckAll -->|Yes| NoFilter[No filter applied]
+ NoFilter --> ResultAll[View ALL subscriptions]
+
+ CheckAll -->|No| CheckOrg{Has organization_unit
.subscription.read?}
+
+ CheckOrg -->|Yes| OrgFilter[Apply OR filter]
+ OrgFilter --> OwnSubs[Own subscriptions]
+ OrgFilter --> OrgSubs[Organization subscriptions]
+ OrgSubs --> ResultOrg[View own + org subscriptions]
+ OwnSubs --> ResultOrg
+
+ CheckOrg -->|No| EmpFilter[Filter by employeeId]
+ EmpFilter --> ResultOwn[View ONLY own subscriptions]
+```
+
+**Permission Logic:**
+
+- **No filter** (`subscription.read.all`) - Employee sees all subscriptions
+- **OR filter** (`organization_unit.subscription.read`) - Employee sees own subscriptions OR subscriptions from their organization unit
+- **Default filter** - Employee sees only subscriptions they created
+
+## Developer Integration Points
+
+### Accessing Employee Data from Subscriptions
+
+To access the employee who created a subscription:
+
+```php
+use Shopware\Core\Framework\DataAbstractionLayer\Search\Criteria;
+
+// Add association when loading subscriptions
+$criteria = new Criteria();
+$criteria->addAssociation('subscriptionEmployee.employee');
+
+$subscription = $subscriptionRepository->search($criteria, $context)->first();
+
+if ($subscription->getSubscriptionEmployee()) {
+ $employee = $subscription->getSubscriptionEmployee()->getEmployee();
+ // Access employee data
+}
+```
+
+### Accessing Employee Data from Orders
+
+Employee data is stored in order extensions:
+
+```php
+// For initial or renewal orders
+$order = $orderRepository->search($criteria, $context)->first();
+
+// Check if order has employee context
+$orderEmployee = $order->getExtension('orderEmployee');
+if ($orderEmployee) {
+ $employeeId = $orderEmployee->getEmployeeId();
+}
+
+// Check if order has organization context
+$organization = $order->getExtension('organization');
+if ($organization) {
+ $organizationId = $organization->getId();
+}
+```
+
+### Event Subscribers
+
+The integration provides several event subscribers you can use as reference:
+
+**SubscriptionTransformedSubscriber** - Priority: 0
+
+Listens to: `SubscriptionTransformedEvent`
+
+Use case: Add custom data when subscription is created from cart
+
+**SubscriptionCartConvertedSubscriber** - Priority: 0
+
+Listens to: `SUBSCRIPTION_CART_CONVERTED` event
+
+Use case: Modify the initial order data during subscription checkout
+
+**SubscriptionOrderPlacedSubscriber** - Priority: 0
+
+Listens to: `CheckoutOrderPlacedCriteriaEvent` and `CheckoutOrderPlacedEvent`
+
+Use case: Add employee context to renewal orders
+
+### Adding Custom Logic
+
+To add custom B2B logic to subscriptions:
+
+1. **Create a decorator** for subscription services (follow `SubscriptionRouteDecorator` pattern)
+2. **Subscribe to subscription events** to inject your data
+3. **Use entity extensions** to add custom associations without modifying core entities
+4. **Check context state** instead of relying on event priorities for more robust integration
+
+Example decorator pattern:
+
+```php
+use Shopware\Core\System\SalesChannel\SalesChannelContext;
+
+class CustomSubscriptionServiceDecorator extends AbstractSubscriptionService
+{
+ public function __construct(
+ private readonly AbstractSubscriptionService $decorated,
+ private readonly CustomLogicService $customService
+ ) {}
+
+ public function getDecorated(): AbstractService
+ {
+ return $this->decorated;
+ }
+
+ public function someMethod(SalesChannelContext $context): void
+ {
+ // Your custom logic before
+ $this->customService->doSomething($context);
+
+ // Call decorated service
+ $this->decorated->someMethod($context);
+
+ // Your custom logic after
+ }
+}
+```
+
+## Related Documentation
+
+- [Subscription Concept](../../../../extensions/subscriptions/concept.md) - Core subscription concepts
+- [Mixed Checkout](../../../../extensions/subscriptions/guides/mixed-checkout.md) - Mixed cart checkout flow
+- [Separate Checkout](../../../../extensions/subscriptions/guides/separate-checkout.md) - Separate subscription checkout
+- [B2B Employee Management Concepts](../concepts/index.md) - Employee and role concepts
+- [Creating Permissions via Plugin](./creating-own-permissions-via-plugin.md) - How to extend permissions
+- [API Route Restriction](./api-route-restriction-for-employees.md) - Route-level permission control
+
+## Summary
+
+The B2B Employee Integration for Subscriptions provides a clean, maintainable way to add employee context to subscriptions without modifying core code. By using decorators, event subscribers, and entity extensions, the integration:
+
+- Maintains separation of concerns between modules
+- Follows Shopware architectural patterns
+- Enables permission-based subscription access
+- Preserves employee and organization context throughout the subscription lifecycle
+- Provides clear extension points for custom logic
diff --git a/products/extensions/subscriptions/guides/b2b-employee-integration.md b/products/extensions/subscriptions/guides/b2b-employee-integration.md
new file mode 100644
index 000000000..d78d919c3
--- /dev/null
+++ b/products/extensions/subscriptions/guides/b2b-employee-integration.md
@@ -0,0 +1,82 @@
+---
+nav:
+ title: B2B Employee Integration
+ position: 40
+
+---
+
+# B2B Employee Integration for Subscriptions
+
+When using Subscriptions together with B2B Components Employee Management, subscriptions can be managed and tracked in a B2B employee context.
+
+## Overview
+
+The B2B Employee Integration extends subscription functionality to support employee-based workflows in B2B scenarios. This integration enables:
+
+- **Permission-based subscription access** - Control which subscriptions employees can view based on their assigned permissions
+- **Employee tracking** - Track which employee created each subscription for audit and reporting purposes
+- **Organization context** - Maintain organization information in both initial and renewal subscription orders
+
+## When to Use
+
+This integration is relevant when you have:
+
+- A B2B store with employee management enabled
+- Subscriptions that should be managed by employees on behalf of their organization
+- Requirements for permission-based access control to subscription data
+- Need for tracking which employee initiated subscriptions
+
+## Prerequisites
+
+To use this integration, you need:
+
+- Shopware 6.7 with the **Subscriptions** extension installed
+- **B2B Components** with Employee Management module enabled
+- Employees configured with appropriate roles and permissions
+
+## Key Capabilities
+
+### 1. Permission-Based Viewing
+
+Employees can view subscriptions based on three permission levels:
+
+- **`subscription.read.all`** - View all subscriptions in the system
+- **`organization_unit.subscription.read`** - View subscriptions from their organization unit plus their own
+- **No subscription permission** - View only subscriptions they personally created
+
+### 2. Employee Context in Orders
+
+When an employee creates a subscription:
+
+- The **initial order** includes employee and organization data
+- All **renewal orders** automatically maintain this context
+- Employee information is preserved for reporting and compliance
+
+### 3. Transparent Integration
+
+The integration works seamlessly with existing subscription workflows:
+
+- Works with both [separate checkout](./separate-checkout.md) and [mixed checkout](./mixed-checkout.md) flows
+- No changes required to existing subscription products or plans
+- Employee context is automatically added when an employee is logged in
+
+## Technical Documentation
+
+For detailed technical information including architecture, event flows, database schema, and developer integration points, see:
+
+**[B2B Employee Subscription Integration Guide](../../b2b-components/employee-management/guides/subscription-integration.md)**
+
+The technical guide covers:
+
+- Architecture and integration patterns (decorators, event subscribers, entity extensions)
+- Database schema for employee-subscription relationships
+- Detailed flow diagrams for initial orders, renewals, and permission filtering
+- Code examples for accessing employee data from subscriptions and orders
+- Extension points for adding custom B2B logic
+
+## Related Documentation
+
+- [Subscription Concept](../concept.md) - Understanding subscription fundamentals
+- [Mixed Checkout](./mixed-checkout.md) - Mixed cart checkout with subscriptions
+- [Separate Checkout](./separate-checkout.md) - Separate subscription checkout flow
+- [B2B Employee Management](../../b2b-components/employee-management/index.md) - Employee and role management basics
diff --git a/products/extensions/subscriptions/guides/index.md b/products/extensions/subscriptions/guides/index.md
index 81ccdc261..ad36ecc88 100644
--- a/products/extensions/subscriptions/guides/index.md
+++ b/products/extensions/subscriptions/guides/index.md
@@ -10,3 +10,10 @@ nav:
This section will help with common topics regarding the usage of subscriptions.
Please familiarize yourself with the [concept](../concept.md) first before continuing.
+
+## Available Guides
+
+- [Separate Checkout](./separate-checkout.md) - Using the separate subscription checkout flow
+- [Mixed Checkout](./mixed-checkout.md) - Using the mixed cart checkout with subscriptions and regular products
+- [Template Scoping](./template-scoping.md) - Working with scoped templates in subscriptions
+- [B2B Employee Integration](./b2b-employee-integration.md) - Using subscriptions with B2B employee management