원클릭으로
abapgit-intf-object
Create an abapGit INTF object outside SAP systems using user-defined names and repository reference files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create an abapGit INTF 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-intf-object |
| description | Create an abapGit INTF object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats | Test Repo
Create an INTF (Interface) object directly as abapGit-serialized repository files, outside an SAP system.
<interface_name>.intf.abap and <interface_name>.intf.xml — all lowercase.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_INTF" serializer_version="v1.0.0">
An INTF object consists of two files:
<name>.intf.abap — interface source code<name>.intf.xml — interface metadatasrc/zif_foo_processor.intf.abapINTERFACE zif_foo_processor
PUBLIC.
METHODS process
IMPORTING
input TYPE string
RETURNING
VALUE(result) TYPE string
RAISING
zcx_foo_error.
ENDINTERFACE.
src/zif_foo_processor.intf.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_INTF" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<VSEOINTERF>
<CLSNAME>ZIF_FOO_PROCESSOR</CLSNAME>
<LANGU>E</LANGU>
<DESCRIPT>Processor Interface</DESCRIPT>
<EXPOSURE>2</EXPOSURE>
<STATE>1</STATE>
<UNICODE>X</UNICODE>
</VSEOINTERF>
</asx:values>
</asx:abap>
</abapGit>
src/zif_foo_constants.intf.abapINTERFACE zif_foo_constants
PUBLIC.
TYPES:
BEGIN OF ty_config,
key TYPE char30,
value TYPE string,
END OF ty_config,
tt_config TYPE STANDARD TABLE OF ty_config WITH KEY key.
CONSTANTS:
BEGIN OF status,
active TYPE char1 VALUE 'A',
inactive TYPE char1 VALUE 'I',
END OF status.
ENDINTERFACE.
src/zif_foo_constants.intf.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_INTF" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<VSEOINTERF>
<CLSNAME>ZIF_FOO_CONSTANTS</CLSNAME>
<LANGU>E</LANGU>
<DESCRIPT>Application Constants</DESCRIPT>
<EXPOSURE>2</EXPOSURE>
<STATE>1</STATE>
<UNICODE>X</UNICODE>
</VSEOINTERF>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
CLSNAME | Interface name (uppercase, max 30 chars) |
LANGU | Original language (E = English) |
DESCRIPT | Short description |
EXPOSURE | 2 = public |
STATE | 1 = active |
UNICODE | X = Unicode checks active |
<name>.intf.abap with the INTERFACE definition.<name>.intf.xml with VSEOINTERF metadata.CLSNAME to the uppercase interface name.LCL_OBJECT_INTF.CLSNAME in XML matches the filename (uppercase vs lowercase)..intf.abap has INTERFACE ... ENDINTERFACE. block.EXPOSURE is 2 for public interfaces.