ワンクリックで
abapgit-auth-object
Create an abapGit AUTH object outside SAP systems using user-defined names and repository reference files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create an abapGit AUTH 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-auth-object |
| description | Create an abapGit AUTH object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats | Test Repo
Create an AUTH (Authorization Check Field) object directly as abapGit-serialized repository files, outside an SAP system.
<object_name>.auth.xml — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_AUTH" serializer_version="v1.0.0">
An AUTH object consists of a single file:
<name>.auth.xml — authorization field metadatasrc/zfoo_carrier.auth.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_AUTH" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<AUTHX>
<FIELDNAME>ZFOO_CARRIER</FIELDNAME>
<ROLLNAME>ZFOO_CARRIER_ID</ROLLNAME>
<CHECKTABLE>ZFOO_FLIGHT</CHECKTABLE>
</AUTHX>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
FIELDNAME | Authorization field name (uppercase, max 10 chars) |
ROLLNAME | Referenced data element |
CHECKTABLE | Check table for the field (optional) |
<name>.auth.xml in the appropriate src/ subfolder.FIELDNAME to the uppercase object name.ROLLNAME and optionally a CHECKTABLE.LCL_OBJECT_AUTH.FIELDNAME in XML matches the filename (uppercase vs lowercase).ROLLNAME references a valid data element.