一键导入
abapgit-pinf-object
Create an abapGit PINF object outside SAP systems using user-defined names and repository reference files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create an abapGit PINF 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-pinf-object |
| description | Create an abapGit PINF object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats
Create a PINF (Package Interface) object directly as abapGit-serialized repository files, outside an SAP system.
<object_name>.pinf.xml — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_PINF" serializer_version="v1.0.0">
A PINF object consists of a single file:
<name>.pinf.xml — package interface metadatasrc/zfoo_public.pinf.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_PINF" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<PINF>
<ATTRIBUTES>
<INTF_NAME>ZFOO_PUBLIC</INTF_NAME>
<DESCRIPT>Public API - Flight Management</DESCRIPT>
</ATTRIBUTES>
<ELEMENTS>
<SCOMELDTLN>
<INTF_NAME>ZFOO_PUBLIC</INTF_NAME>
<ELEM_TYPE>CLAS</ELEM_TYPE>
<ELEM_KEY>ZFOO_CL_FLIGHT_API</ELEM_KEY>
</SCOMELDTLN>
<SCOMELDTLN>
<INTF_NAME>ZFOO_PUBLIC</INTF_NAME>
<ELEM_TYPE>INTF</ELEM_TYPE>
<ELEM_KEY>ZFOO_IF_FLIGHT</ELEM_KEY>
</SCOMELDTLN>
</ELEMENTS>
</PINF>
</asx:values>
</asx:abap>
</abapGit>
src/zfoo_main.pinf.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_PINF" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<PINF>
<ATTRIBUTES>
<INTF_NAME>ZFOO_MAIN</INTF_NAME>
<DESCRIPT>Main Public Interface</DESCRIPT>
</ATTRIBUTES>
<ELEMENTS>
<SCOMELDTLN>
<INTF_NAME>ZFOO_MAIN</INTF_NAME>
<ELEM_TYPE>PINF</ELEM_TYPE>
<ELEM_KEY>ZFOO_PUBLIC</ELEM_KEY>
</SCOMELDTLN>
</ELEMENTS>
</PINF>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
INTF_NAME | Package interface name (uppercase) |
DESCRIPT | Short description |
ELEMENTS > SCOMELDTLN | Each exposed element |
ELEM_TYPE | Object type (CLAS, INTF, TABL, PINF, etc.) |
ELEM_KEY | Object name (uppercase) |
<name>.pinf.xml in the same folder as the owning package.devc.xml.INTF_NAME to the uppercase object name.ELEMENTS using SCOMELDTLN entries.ELEM_TYPE=PINF to reference sub-package interfaces.LCL_OBJECT_PINF.INTF_NAME in XML matches the filename (uppercase vs lowercase).ELEM_KEY entries reference objects that exist in the project.