원클릭으로
abapgit-devc-object
Create an abapGit DEVC object outside SAP systems using user-defined names and repository reference files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create an abapGit DEVC 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-devc-object |
| description | Create an abapGit DEVC object outside SAP systems using user-defined names and repository reference files. |
abapGit docs: Supported Object Types | File Formats | Folders & Files
Create a DEVC (Package) object directly as abapGit-serialized repository files, outside an SAP system.
package.devc.xml — one per folder.<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
package.devc.xml (not the SAP package name).A DEVC object consists of a single file per package folder:
package.devc.xml — package metadatasrc/package.devc.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DEVC>
<CTEXT>My Custom Application</CTEXT>
</DEVC>
</asx:values>
</asx:abap>
</abapGit>
src/model/package.devc.xml<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<DEVC>
<CTEXT>My Custom Application - Data Model</CTEXT>
</DEVC>
</asx:values>
</asx:abap>
</abapGit>
| Element | Description |
|---|---|
CTEXT | Package description text |
src/ matching the desired package hierarchy.package.devc.xml file in each folder.CTEXT to a meaningful description of the package's purpose.package.devc.xml.LCL_OBJECT_DEVC.package.devc.xml (never the SAP package name).src/ that should become a package has a package.devc.xml.CTEXT is filled with a descriptive text.