ワンクリックで
abapgit-tobj-object
Create an abapGit TOBJ object outside SAP systems using user-defined names and repository reference files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create an abapGit TOBJ 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-tobj-object |
| description | Create an abapGit TOBJ object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats
Create a TOBJ (Table Maintenance Object / View Maintenance Dialog) object directly as abapGit-serialized repository files, outside an SAP system.
<object_name>.tobj.xml — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_TOBJ" serializer_version="v1.0.0">
S suffix in OBJECTTYPE.A TOBJ object consists of a single file:
<name>.tobj.xml — table maintenance object metadatasrc/zfoo_config.tobj.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_TOBJ" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<OBJH>
<OBJECTNAME>ZFOO_CONFIG</OBJECTNAME>
<OBJECTTYPE>S</OBJECTTYPE>
<CLIDEP>X</CLIDEP>
<OBJCATEG>CUST</OBJCATEG>
<OBJTRANSP>2</OBJTRANSP>
<IMPORTABLE>3</IMPORTABLE>
</OBJH>
<OBJT>
<LANGUAGE>E</LANGUAGE>
<OBJECTNAME>ZFOO_CONFIG</OBJECTNAME>
<OBJECTTYPE>S</OBJECTTYPE>
<DDTEXT>Flight Management - Configuration</DDTEXT>
</OBJT>
<OBJS>
<OBJS>
<OBJECTNAME>ZFOO_CONFIG</OBJECTNAME>
<OBJECTTYPE>S</OBJECTTYPE>
<TABNAME>ZFOO_CONFIG</TABNAME>
<DDIC>X</DDIC>
<PRIM_TABLE>X</PRIM_TABLE>
</OBJS>
</OBJS>
<TOBJ>
<TDDAT>
<TABNAME>ZFOO_CONFIG</TABNAME>
<CCLASS>ZACO</CCLASS>
</TDDAT>
<TVDIR>
<TABNAME>ZFOO_CONFIG</TABNAME>
<AREA>ZFOO_CONF_MAINT</AREA>
<TYPE>1</TYPE>
<LISTE>0001</LISTE>
<BASTAB>X</BASTAB>
</TVDIR>
</TOBJ>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
OBJH > OBJECTNAME | Table/view name (uppercase) |
OBJH > OBJECTTYPE | S = single table, V = view |
OBJH > CLIDEP | X = client-dependent |
OBJH > OBJCATEG | CUST = customizing, APPL = application data |
OBJH > OBJTRANSP | 2 = transported via customizing request |
OBJT > DDTEXT | Description text |
OBJS > TABNAME | Database table name |
OBJS > PRIM_TABLE | X = primary table in the maintenance view |
TOBJ > TDDAT > CCLASS | Customizing class |
TOBJ > TVDIR > AREA | Function group for the maintenance dialog (FUGR) |
TOBJ > TVDIR > TYPE | 1 = one-step dialog |
TOBJ > TVDIR > LISTE | Screen number for overview (0001) |
<name>.tobj.xml in the appropriate src/ subfolder.OBJECTNAME and TABNAME to the target table.AREA to the function group that hosts the maintenance dialog.LCL_OBJECT_TOBJ.OBJECTNAME in XML matches the filename (uppercase vs lowercase).AREA references an existing FUGR function group.TABNAME references an existing TABL table.