/Cloud-sap-rap-on-GitHub

2008 version

Primary LanguageABAPApache License 2.0Apache-2.0

Description

This repository contains sample code that helps you to create boiler plate coding for the ABAP RESTful Application Programming Model (RAP) in SAP Cloud Platform, ABAP environment.

What's new with 2102

  • all objects of a draft enabled V4 service are can now be generated and be activated
  • draft enabled V4 services can be automatically registered for the Manage Business Configuration App
  • calling the RAP Generator as an API was made more simple. It simply boils down to three lines of code
       DATA(json_string) = ''.
       DATA(rap_generator) = NEW /dmo/cl_rap_generator( json_string ).
       DATA(todos) = rap_generator->generate_bo(  ).
    
  • You can now specify a transport request that shall be used
  • The RAP Generator has moved to the namespace /DMO/ so that it cannot be edited anymore in the trial systems

Motivation

The basic idea behind the RAP Generator is to make it easier for the developer to create the complete stack of objects that are needed to implement a RAP business object. The goal is to generate most of the boiler plate coding so that the developer can start more quickly to implement the business logic.

The first data source which is supported are tables. When creating new tables for green field scenarios the use of tables with uuid based keys is recommended, so that a managed scenario can be used where no code needs to be implemented for the CRUD operations and earyl numbering can be used. The only thing that is left for the developer is to implement determinations, validations and actions.

For brownfield scenarios where existing business logic does exist to create, update and delete business data an unmanaged scenario can be generated.

As a second data source the RAP generator now also supports CDS views. This way it will be possible to create RAP business objects based on existing CDS views.

To make the use of the tool as easy as possible the input that is needed by the generator can be provided as a JSON file. A simple sample of such a JSON file that would generate a managed business object based on the two tables /dmo/a_travel_d and /dmo/a_booking_d would look like follows.

{
  "implementationType": "managed_uuid",
  "namespace": "Z",
  "suffix": "_####",
  "prefix": "RAP_",
  "package": "ZRAP_####",
  "datasourcetype": "table",
  "bindingtype": "odata_v4_ui",
  "draftenabled": true,  
  "hierarchy": {
    "entityName": "SalesOrder",
    "dataSource": "/dmo/a_travel_d",
    "drafttable": "zdtravel_d_####",
    "objectId": "travel_id",
    "uuid": "travel_uuid",
    "lastChangedAt": "last_changed_at",
    "lastChangedBy": "local_last_changed_by",
    "createdAt": "local_created_at",
    "createdBy": "local_created_by",
    "localInstanceLastChangedAt": "local_last_changed_at",
    "children": [
      {
        "entityName": "Booking",
        "dataSource": "/dmo/a_booking_d",
        "drafttable": "zdbook_d_####",
        "objectId": "booking_id",
        "uuid": "booking_uuid",
        "parentUuid": "parent_uuid",
        "localInstanceLastChangedAt": "local_last_changed_at"
      }
    ]
  }
}

How to use the RAP Generator (in the trial systems)

The package /DMO/RAP_Generator has been imported to all trial systems for your convenience.

This is a short description how the RAP Generator can be used.

  1. Make sure you have set the following option "Wrap and escape text when pasting into string literal" for your ABAP source code editor in your ADT preferences as described in my blog How to wrap long strings automatically in ADT
  2. Create an class zcl_rap_generator_console_#### in your package using the following code as a template:
CLASS zcl_rap_generator_console_#### DEFINITION
  PUBLIC
  INHERITING FROM cl_xco_cp_adt_simple_classrun
  FINAL
  CREATE PUBLIC .
  PUBLIC SECTION.
  PROTECTED SECTION.
    METHODS main REDEFINITION.
  PRIVATE SECTION.
ENDCLASS.

CLASS ZCL_RAP_GENERATOR_CONSOLE_#### IMPLEMENTATION.
  METHOD main.
    DATA(json_string) = ''.
    DATA(rap_generator) = NEW /dmo/cl_rap_generator( json_string ).
    DATA(todos) = rap_generator->generate_bo(  ).
    DATA(rap_bo_name) = rap_generator->root_node->rap_root_node_objects-service_binding.
    out->write( |RAP BO { rap_bo_name }  generated successfully| ).
    out->write( |Todo's:| ).
    LOOP AT todos INTO DATA(todo).
      out->write( todo ).
    ENDLOOP.
  ENDMETHOD.
ENDCLASS.
  1. Copy the json string shown above or one of the json strings for the different scenarios, that you can find in the folder json_templates between the two single quotes
    DATA(json_string) = ''.
  2. Replace the hastags #### that are used as a placeholder by appropriate strings so that they fit to the name of your package and the suffix that you want to use.
  3. Run the class using F9

The class inherits from the class cl_xco_cp_adt_simple_classrun which is provided by the XCO framework. This class will catch all exceptions that are thrown by the RAP Generator and it will show the call stack as you are used to it by ADT.

A much more detailed description (including screen shots) can be found in my following blog The RAP Generator.

The description of the technical details of this tool I have moved to this readme.md file instead.

Supported scenarios

The generator supports various scenarios that are listed in this table

implementation type key type datasource types Comment
managed uuid table Green field scenario with simple data structure
managed semantic key table Requires external numbering
unmanaged semantic key table Requires external numbering
managed uuid cds view no mapping can be generated
managed semantic key cds view no mapping can be generated
unmanaged semantic key cds view no mapping can be generated

JSON file parameters

The JSON file contains some mandatory properties that are needed for the generation of the repository objects. The node has a schema that contains an array called children, each of which are also node instances. This way we can model a root node including its child and grand child nodes in a way that is readable and reusable by the developer. Let’s start with the explanation of the (mandatory) properties of the business object itself.

Mandatory parameters of the root node

"implementationType"

The generator currently supports three implementation types

  • managed_uuid
  • managed_semantic_key
  • unmanaged_semantic_key

If the implementation type managed_uuid is used, the generator will generate a managed business object that uses internal numbering. It is thus required that the key fields of the nodes and therefore also the key fields of the underlying tables are of type raw(16) (UUID).

key client      : abap.clnt not null;
key uuid        : sysuuid_x16 not null;

If one of the scenarios managed_semantic_key or unmanaged_semantic_key is used, the generator expects that there is a hierarchy of tables where the header table always contains all key fields of the item table.

  • Travel
key client                : abap.clnt not null;
key travel_id             : /dmo/travel_id not null;
  • Booking
key client                : abap.clnt not null;
key travel_id             : /dmo/travel_id not null;
key booking_id            : /dmo/booking_id not null;
  • BookingSupplements
key client                : abap.clnt not null;
key travel_id             : /dmo/travel_id not null;
key booking_id            : /dmo/booking_id not null;
key booking_supplement_id : /dmo/booking_supplement_id not null;

When the implementation type managed_semantic_key is chosen, the generator will generate a business object that uses a managed implementation that requires external numbering whereas unmanaged_semantic_key will generate a business object that uses an unmanaged implementation.

“namespace”

Here you have to specify the namespace of the repository objects. This would typically be the value “Z” or your own namespace if you have registered one.

"package"

With the parameter “package” you have to provide the name of a package where all repository objects of your RAP business object will be generated in.

"datasourcetype"

The generator supports tables and CDS views as a data source. Please note that when starting from tables the generator will be able to also generate a mapping whereas a mapping has to be created manually by the developer when starting with CDS views as data sources. You have to provide one of the following values here:

  • table
  • cds_view

Optional parameters of the root node

""draftenabled"

Using the boolean parameter draftenabled you can specify that the generated RAP object supports draft.

Please note that for a draft enabled scenario you have to specifiy the names of the draft tables for each node of the compostion tree.

"transportrequest"

You can now provide the name of a transport request that shall be used for all objects that are being generated. If no transport request is specified the RAP Generator will first search for any modifiable transport that fits to the transport layer of the package which belongs to the developer.

If not such transport is found a new transport request is being created.

“suffix” and “prefix”

These are optional parameters that can be used to tweak the names of the repository objects.

The naming convention used by the generator follows the naming conventions propsed by the Virtual Data Model (VDM) used in SAP S/4 HANA. For example the name of a CDS interface view would be generated from the above mentioned properties as follows: DATA(lv_name) = |{ namespace }I_{ prefix }{ entityname }{ suffix }|. The name of the entity which is part of the repository object name is set by the property “entityName” on node level (see below).

Mandatory properties of node objects

For each node object must specify the following mandatory properties

“entityName”

Here you have to specify the name of your entity (e.g. “Travel” or “Booking”). The name of the entity becomes part of the names of the repository objects that will be generated and it is used as the name of associations (e.g. "_Travel"). Please note, that the value of “entityName” must be unique within a business object.

“dataSource” and “dataSourceType”

The generator supports the data source types “table” and "cds_view". The name of the data source is the name of the underlying table or the name of the underlying cds view.

“objectId”

With objectId we denote a semantic key field that is part of the data source (table or cds view). In our travel/booking scenario this would be the field travel_id for the Travel entity and booking_id for the Booking entity if the data source are tables and it would be travelid and bookingid if the CDS views of flight demo scenario are used. For managed scenarios the generator will generate a determination for each objectid. You also have to specify an objectid for semantic scenarios.

“uuid”, “parent_uuid”, “root_uuid”

In a managed scenario that uses keys of type uuid the tables of a child node must contain a field where the key of the parent entity is stored. Grandchild nodes and their children must in addition store the values of the key fields of the parent and the root entity. This is needed amongst others for the locking mechanism. The generator by default expects the following naming conventions for those fields

  • uuid
  • parent_uuid
  • root_uuid

If you don’t want to use the same field names in all tables and prefer more descriptive names, such as
key travel_uuid       : sysuuid_x16 not null;
and
key booking_uuid      : sysuuid_x16 not null;
    travel_uuid       : sysuuid_x16 not null;
you have to specify these field names in the definition of the node by providing values for `uuid` and `parentUuid` in the definition of the child entity and for `uuid` in the definition of the root entity.
...
  "node": {
    "entityName": "Travel",
    "dataSource": "zrap_atrav_0002",
    "dataSourceType" : "table",
    "objectId": "TRAVEL_ID",
    "uuid": "travel_uuid",
    "children": [
      {
        "entityName": "Booking",
        "dataSource": "zrap_abook_0002",
        "dataSourceType" : "table",
        "objectId": "BOOKING_ID",
        "uuid": "booking_uuid",
        "parentUuid": "travel_uuid"
      }
    ]
  }
...

"lastChangedAt", "lastChangedBy", "createdAt" and "createdBy"

In a managed scenario it is required that the root entity provides fields to store administrative data when an entity was created and changed and by whom these actions have been performed. Again the generator assumes some default values for these field names, namely:

  • “last_changed_at",
  • "last_changed_by",
  • "created_at" and
  • "created_by"

If the tables that you are using do not follow this naming convention it is possible to tell the generator about the actual field names by setting these optional properties.

A good example is the table which is used in the Flight reference draft scenario where we need the following mapping

    "lastChangedAt": "last_changed_at",
    "lastChangedBy": "local_last_changed_by",
    "createdAt": "local_created_at",
    "createdBy": "local_created_by",
    "localInstanceLastChangedAt": "local_last_changed_at",

Optional parameters for node

drafttable

When you specify that a RAP business object shall support draft using the parameter "draftenabled" : true you have to specifiy the name of the draft table that is being generated for each node using the following syntax

"drafttable": "zd_book_0000",

Optional parameters for the node objects

The follwoing parameters have been implemented so that it is possible to create RAP business objects including a mapping (if CDS views are used as a data source) and including assocations and value helps.

This is usefull if identical objects shall be created for trainings.

When using this parameters the json files will become more complicated. As a result the use of these parameters is not recommended if you want to develop a single RAP object. They will be used in workshops such as TechEd sessions, CodeJams or OpenSAP courses where there is the need to provide participants with complete RAP business objects as a starting point.

mapping

Using this parameter you can provide the mapping between the field names of the CDS view and the field names used by the legacy business logic if CDS views are used as a data source. When using tables as data sources this mapping is generated by the generator. When CDS views are used as a data source such a mapping has be created manually by the developer if it has not been set.

{
  "implementationType": "unmanaged_semantic",
  "namespace": "Z",
  "suffix": "_####",
  "prefix": "RAP_",
  "package": "ZRAP_####",
  "datasourcetype": "cds_view",
  "hierarchy": {
    "entityName": "Travel",
    "dataSource": "/DMO/I_Travel_U",
    "objectId": "TravelID",
    "persistenttable": "/dmo/travel",    
    "lastchangedat": "lastchangedat", 
    "mapping": [
      {
        "dbtable_field": "TRAVEL_ID",
        "cds_view_field": "TravelID"
      },
      {
        "dbtable_field": "AGENCY_ID",
        "cds_view_field": "AgencyID"
      },
      {
        "dbtable_field": "CUSTOMER_ID",
        "cds_view_field": "CustomerID"
      },
      {
        "dbtable_field": "BEGIN_DATE",
        "cds_view_field": "BeginDate"
      },
      {
        "dbtable_field": "BOOKING_FEE",
        "cds_view_field": "BookingFee"
      },
      {
        "dbtable_field": "TOTAL_PRICE",
        "cds_view_field": "TotalPrice"
      },
      {
        "dbtable_field": "CURRENCY_CODE",
        "cds_view_field": "CurrencyCode"
      },
      {
        "dbtable_field": "DESCRIPTION",
        "cds_view_field": "Description"
      },
      {
        "dbtable_field": "STATUS",
        "cds_view_field": "Status"
      },
      {
        "dbtable_field": "LASTCHANGEDAT",
        "cds_view_field": "Lastchangedat"
      }
    ],   
    "children": [
      {
        "entityName": "Booking",
        "dataSource": "/DMO/I_Booking_U",
        "objectId": "BookingID",
        "persistenttable": "/dmo/booking"      
      }
    ]
  }
}

“associations” and “valuehelps”

On node level it is also possible to set information to generate valuehelps and associations. These properties have been introduced mainly for setups in courses where one would like to be able that participants can generate a business object that contain exactly those associations and value help definitions that are required for the course. Though it might also be useful for other scenarios as well, you see that the complexity of your JSON file will grow and it might be simpler to code this manually in the CDS views that are generated by the RAP generator.

“associations”

Associations is an array of objects where each object represents one association. An association needs the several properties

  • "name" is the name of the association and its name must start with an underscore '_'.
  • "target" is the name of the CDS view that is the target of your associaton
  • "cardinality" here you can enter one of the following values
    • "zero_to_one" [0..1]
    • "one" [1]
    • "zero_to_n" [0..n]
    • "one_to_n" [1..n]
    • "one_to_one" [1..1]
  • "conditions" is again an array of objects with two properties
    • "projectionField" this is the field ´"$projection.AgencyID = _Agency.AgencyID"´
    • "associationField" this is the field ´"$projection.AgencyID = _Agency.AgencyID
    "associations": [
      {
        "name": "_Agency",
        "target": "/DMO/I_Agency",
        "cardinality": "zero_to_n",
        "conditions": [
          {
            "projectionField": "AgencyID",
            "associationField": "AgencyID"
          }
        ]
      },
      {
        "name": "_Customer",
        "target": "/DMO/I_Customer",
        "cardinality": "zero_to_n",
        "conditions": [
          {
            "projectionField": "CustomerID",
            "associationField": "CustomerID"
          }
        ]
      }
    ]

valueHelps

Valuehelps is also an array of objects where each object represents a value help. Each object may contain an addiitional array that contains the information for the additional binding.

  • "alias" is the alias of the value help used in the service definition.
  • "name" is the name of the CDS view used as a value help
  • "localelement" this denotes the field name in your projection view. Since this is already the CDS field name you have to be aware about the naming convertions that are used by the generator when it creates cds fields from the underlying ABAP field names, namely by using the conversion into camelCase notation.
      @Consumption.valueHelpDefinition: [{ entity : {name: '/DMO/I_Agency', element: 'AgencyID'  } }]
      AgencyID,
  • "element" this is the field name in the CDS view that is used as a value help.
      @Consumption.valueHelpDefinition: [{ entity : {name: '/DMO/I_Agency', element: 'AgencyID'  } }]
      AgencyID,
  • "additionalBinding" is again an array of objects with two properties
  • "localElement" these are the following fields
      @Consumption.valueHelpDefinition: [ {entity: {name: '/DMO/I_Flight', element: 'ConnectionID'},
                                                 additionalBinding: [ { localElement: 'FlightDate',   element: 'FlightDate'},
                                                                      { localElement: 'AirlineID',    element: 'AirlineID'},
                                                                      { localElement: 'FlightPrice',  element: 'Price', usage: #RESULT},
                                                                      { localElement: 'CurrencyCode', element: 'CurrencyCode' } ] } ]
  • "element" these are the following fields
      @Consumption.valueHelpDefinition: [ {entity: {name: '/DMO/I_Flight', element: 'ConnectionID'},
                                                 additionalBinding: [ { localElement: 'FlightDate',   element: 'FlightDate'},
                                                                      { localElement: 'AirlineID',    element: 'AirlineID'},
                                                                      { localElement: 'FlightPrice',  element: 'Price', usage: #RESULT},
                                                                      { localElement: 'CurrencyCode', element: 'CurrencyCode' } ] } ]
                                                                      
  • "usage" these are the following (optinonal) fields in a valuehelp
      @Consumption.valueHelpDefinition: [ {entity: {name: '/DMO/I_Flight', element: 'ConnectionID'},
                                                 additionalBinding: [ { localElement: 'FlightDate',   element: 'FlightDate'},
                                                                      { localElement: 'AirlineID',    element: 'AirlineID'},
                                                                      { localElement: 'FlightPrice',  element: 'Price', usage: #RESULT},
                                                                      { localElement: 'CurrencyCode', element: 'CurrencyCode' } ] } ]
                                                                      

In order to generate a value help as mentioned above the following entry would have to be added to a node object, here the booking entity.

      
    "valueHelps": [
          {
            "alias": "Flight",
            "name": "/DMO/I_Flight",
            "localElement": "ConnectionID",
            "element": "ConnectionID",
            "additionalBinding": [
              {
                "localElement": "ConnectionID",
                "element": "ConnectionID"
              },
              {
                "localElement": "CarrierID",
                "element": "AirlineID"
              },
              {
                "localElement": "ConnectionID",
                "element": "ConnectionID"
              }
            ]
          },
          {
            "alias": "Currency",
            "name": "I_Currency",
            "localElement": "CurrencyCode",
            "element": "Currency"
          }
        ]
      }
    ]

objectswithadditionalfields

When using the RAP Generator in workshops it turned out that CDS views should also contain fields that are not part of the underlying data source such as fields that are retrieved via an association.

_Customer.LastName as CustomerName,

If additional fields are added this has to be done at various locations namely

  • cds_interface_view
  • cds_projection_view
  • draft_table

One has to specifiy the field name, the alias and optionally the key word localized.

So the JSON file must contain an array objectswithadditionalfields. For each object type an additional array called "additionalfields" has to be filled that contains the additional fields for each object.

Please note that the field names for additional fields in the draft table must match the field name (or the alias name) of the field in the interface view.

 "objectswithadditionalfields": [
      {
        "object": "cds_projection_view",
        "additionalfields": [
          {
            "fieldname": "_HolidayTxt.HolidayDescription",
            "alias": "HolidayDescription",
            "localized": true
          },
          {
            "fieldname": "_DeprecationText.ConfignDeprecationCodeName",
            "alias": "DeprecationDescription",
            "localized": true
          },
          {
            "fieldname": "Criticality",
            "alias": "Criticality"
          }
        ]
      },
      {
        "object": "cds_interface_view",
        "additionalfields": [
          {
            "fieldname": "case overall_status when ' ' then 2  when 'N' then 2  when 'I' then 0   when 'P' then 0   when 'D' then 3   when 'X' then 1   else 0    end",
            "alias": "Criticality"
          }
        ]
      },
      {
        "object": "draft_table",
        "additionalfields": [
          {
            "fieldname": "Criticality",
            "builtintype": "int1"
          }
        ]
      }
    ],

Requirements

This sample code does currently only work in SAP Cloud Platform, ABAP Environment where the XCO framework has been enabled as of version 2008.

Make sure you have set the following option "Wrap and escape text when pasting into string literal" for your ABAP source code editor in your ADT preferences as described in my blog How to wrap long strings automatically in ADT

For more detailed information please also check out the following blog post: https://blogs.sap.com/2020/05/17/the-rap-generator

Download and Installation

The sample code can simply be downloaded using the abapGIT plugin in ABAP Development Tools in Eclipse when working with SAP Cloud Platform, ABAP Environment. For this you have to create a package in the Z-namespace (for example ZRAP_GENERATOR) and link it as an abapGit repository.

Known Issues

The sample code is provided "as-is".

The current version of the RAP Generator can unfortunately currently be used in the trial systems, since a few new API's of the XCO framework have not been released in the trial systems yet. It is planned to enable them with an upcoming hot fix collection.

How to obtain support

If you have problems or questions you can post them in the SAP Community using either the primary tag "SAP Cloud Platform, ABAP environment" or "ABAP RESTful Application Programming Model".

Contributing

This project is only updated by SAP employees.

License

Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, version 2.0 except as noted otherwise in the LICENSE file.