ワンクリックで
abapgit-susc-object
Create an abapGit SUSC object outside SAP systems using user-defined names and repository reference files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create an abapGit SUSC 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-susc-object |
| description | Create an abapGit SUSC object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats
Create a SUSC (Authorization Object Class) object directly as abapGit-serialized repository files, outside an SAP system.
<object_name>.susc.xml — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_SUSC" serializer_version="v1.0.0">
A SUSC object consists of a single file:
<name>.susc.xml — authorization object class metadatasrc/zfoo.susc.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_SUSC" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<TOBC>
<OCLSS>ZFOO</OCLSS>
</TOBC>
<TOBCT>
<LANGU>E</LANGU>
<OCLSS>ZFOO</OCLSS>
<CTEXT>Flight Management - Authorization Class</CTEXT>
</TOBCT>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
TOBC > OCLSS | Authorization object class name (uppercase, max 4 chars) |
TOBCT > LANGU | Language key (E = English) |
TOBCT > OCLSS | Same class name as in TOBC |
TOBCT > CTEXT | Description text |
<name>.susc.xml in the appropriate src/ subfolder.OCLSS to the uppercase object name (max 4 chars).LCL_OBJECT_SUSC.OCLSS in XML matches the filename (uppercase vs lowercase).