Skip to content

Commit

Permalink
refactor: ♻️ moved customizing to own section
Browse files Browse the repository at this point in the history
  • Loading branch information
miggi92 authored Apr 24, 2024
1 parent 11387d2 commit c9d6d7f
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
6 changes: 5 additions & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,11 @@ function sidebarDocumentation() {
collapsed: false,
items: [
{ text: 'Creating a service', link: '/documentation/Creating-a-service' },
{ text: 'DPC boilerplate code', link: '/documentation/DPC-boilerplate-code' }
{ text: 'DPC boilerplate code', link: '/documentation/DPC-boilerplate-code' },
{
text: 'OData customizing', link: '/documentation/customizing/', collapsed: true,
items: []
}
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/documentation/Creating-a-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ For the boilerplate code, that has to be inserted into the OData methods you can
## Customize Your Service

Implement your odata service customizing. By calling the **ZODATA_CUST** transaction.
For a detailed documentation you can look into the [OData Customizing](./OData-Customizing) file.
For a detailed documentation you can look into the [OData Customizing](./customizing/index) file.
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
---
title: OData Customizing
description: OData Customizing
tags:
- customizing
date created: Wednesday, August 23rd 2023, 6:18:18 pm
date modified: Tuesday, September 5th 2023, 5:38:06 pm
---
# {{ $frontmatter.title }}

Expand All @@ -18,7 +14,7 @@ Transactioncode: **ZODATA_CUST**
## Create Namespace

To create a namespace, just enter the namespace you want to use and define weather it is a [global namespace](#global-namespace) or not. The name should match the name that you used in the [DPC](./definitions/DPC) and [MPC](./definitions/MPC) framework methods mention in the [Creating a service](./Creating-a-service) file ([Implement the framework MPC method](./Creating-a-service#implement-the-framework-mpc-method) / [Implementing the framework DPC methods](./Creating-a-service#implementing-the-framework-dpc-methods) )
To create a namespace, just enter the namespace you want to use and define weather it is a [global namespace](#global-namespace) or not. The name should match the name that you used in the [DPC](../definitions/DPC) and [MPC](../definitions/MPC) framework methods mention in the [Creating a service](../Creating-a-service) file ([Implement the framework MPC method](../Creating-a-service#implement-the-framework-mpc-method) / [Implementing the framework DPC methods](../Creating-a-service#implementing-the-framework-dpc-methods) )

![Create namespace](./attachments/cust_create_namespace.png)

Expand Down

0 comments on commit c9d6d7f

Please sign in to comment.