SAP Cloud Application Programming Model Getting Started (CAP): Unterschied zwischen den Versionen

Aus MattWiki
K (Matt verschob die Seite SAP HANA CAP Development with CLI nach SAP HANA CAP Development, ohne dabei eine Weiterleitung anzulegen)
Keine Bearbeitungszusammenfassung
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
This article describes how to build CDS projects and according artefacts.
This article describes how to build Cloud Application Programming Model projects (CAP projects) and according artefacts with Core Data Services (CDS).


Source: ABAP Freak Show Ep. 1 - HANA Cloud and the Business Application Studio
Source: ABAP Freak Show Ep. 1 - HANA Cloud and the Business Application Studio
Zeile 6: Zeile 6:


For local native development see [[SAP HANA Local Native Development]]
For local native development see [[SAP HANA Local Native Development]]
All-in-one Quick Start: https://github.com/SAP-samples/cloud-cap-walkthroughs/blob/master/exercises-node/intro/README.md
More Repositories: https://github.com/SAP-samples/cloud-cap-samples --> Use opensap*-Branches


== Installation of Prerequisites==
== Installation of Prerequisites==
Zeile 19: Zeile 23:


== Create CDS Project ==
== Create CDS Project ==
cds init bookshop
or


  cds init MyCDSProject --add hana, mta
  cds init MyCDSProject --add hana, mta
== Start Service ==
cds watch
This also monitors changes to the underlying files and restarts when a file has changed.


[[Category:SAP]]
[[Category:SAP]]
[[Category:HANA]]
[[Category:HANA]]

Version vom 13. April 2021, 08:16 Uhr

This article describes how to build Cloud Application Programming Model projects (CAP projects) and according artefacts with Core Data Services (CDS).

Source: ABAP Freak Show Ep. 1 - HANA Cloud and the Business Application Studio

https://www.youtube.com/watch?v=a3WPQwmpbvI&list=PLoc6uc3ML1JR38-V46qhmGIKG07nXwO6X&index=71

For local native development see SAP HANA Local Native Development

All-in-one Quick Start: https://github.com/SAP-samples/cloud-cap-walkthroughs/blob/master/exercises-node/intro/README.md

More Repositories: https://github.com/SAP-samples/cloud-cap-samples --> Use opensap*-Branches

Installation of Prerequisites

Relevant Tools from SAP

npm i -g @sap/cds
npm i -g @sap/cds-dk

Additional 3rd Party Tools1

npm i -g hana-cli

Create CDS Project

cds init bookshop

or

cds init MyCDSProject --add hana, mta

Start Service

cds watch

This also monitors changes to the underlying files and restarts when a file has changed.