ワンクリックで
abapgit-srvd-object
Create an abapGit SRVD object outside SAP systems using user-defined names and repository reference files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create an abapGit SRVD object outside SAP systems using user-defined names and repository reference files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run ATC syntax check on the SAP system to detect syntax errors after git pull.
Trigger an abapGit repository pull on the SAP system to sync the current codebase.
Run ABAP Unit tests on the remote SAP system via ADT.
Prompt and workflow for generating conventional commit messages using a structured XML format. Guides users to create standardized, descriptive commit messages in line with the Conventional Commits specification, including instructions, examples, and validation.
Detailed guidance on which test layer(s) to update and how to write tests for different kinds of changes in the ZASIS project.
Reference guide for the ZASIS exception handling pattern — class hierarchy, message class, T100 integration, how to raise exceptions, and rules for adding new exceptions.
| name | abapgit-srvd-object |
| description | Create an abapGit SRVD object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats
Create a SRVD (Service Definition) object directly as abapGit-serialized repository files, outside an SAP system.
<object_name>.srvd.<extension> — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_SRVD" serializer_version="v1.0.0">
A SRVD object consists of two files:
<name>.srvd.srvdsrv — service definition source<name>.srvd.xml — metadatasrc/zfoo_ui_flight.srvd.srvdsrv@EndUserText.label: 'Flight Management Service'
define service ZFOO_UI_FLIGHT {
expose ZFOO_C_FLIGHT as Flight;
}
src/zfoo_ui_flight.srvd.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_SRVD" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<SRVD>
<NAME>ZFOO_UI_FLIGHT</NAME>
<TYPE>SRVD/SRV</TYPE>
<DESCRIPTION>Flight Management Service</DESCRIPTION>
<LANGUAGE>EN</LANGUAGE>
<MASTER_LANGUAGE>EN</MASTER_LANGUAGE>
<SOURCE_URI>./zfoo_ui_flight/source/main</SOURCE_URI>
<SOURCE_TYPE>ABAP_SOURCE</SOURCE_TYPE>
<SOURCE_ORIGIN_DESCRIPTION>ABAP Development Tools</SOURCE_ORIGIN_DESCRIPTION>
<SRVD_SOURCE_TYPE>S</SRVD_SOURCE_TYPE>
<SRVD_SOURCE_TYPE_DESC>Definition</SRVD_SOURCE_TYPE_DESC>
</SRVD>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
NAME | Service definition name (uppercase) |
TYPE | Always SRVD/SRV |
DESCRIPTION | Short description |
SOURCE_URI | ./<lowercase_name>/source/main |
SRVD_SOURCE_TYPE | S = Definition |
<name>.srvd.srvdsrv with the define service source.<name>.srvd.xml with SRVD metadata.expose lists all CDS consumption views to expose via OData.SOURCE_URI to ./<lowercase_name>/source/main.LCL_OBJECT_SRVD.NAME in XML matches the filename (uppercase vs lowercase)..srvdsrv uses define service ... { expose ... } syntax.