abap2UI5/app/trans/abapXMLTemplate.js
oblomov-dev 533b863553
New frontend (#1468)
* new-frontend

* Update DebugTool.js

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update

* update config
2024-10-01 18:34:44 +02:00

19 lines
562 B
JavaScript

module.exports = function(className, description) {
return `<?xml version="1.0" encoding="utf-8"?>
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0">
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
<asx:values>
<VSEOCLASS>
<CLSNAME>${className.toUpperCase()}</CLSNAME>
<LANGU>E</LANGU>
<DESCRIPT>${className.toUpperCase()}</DESCRIPT>
<STATE>1</STATE>
<CLSCCINCL>X</CLSCCINCL>
<FIXPT>X</FIXPT>
<UNICODE>X</UNICODE>
</VSEOCLASS>
</asx:values>
</asx:abap>
</abapGit>
`;
};