Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Glue tables are the main target for data replication in Glue, they represent a folder/structure outside of SAP where to replicate data.

...

Resource GET /glue-tables serve to obtain details about Glue tables. It supports the following input parameters passed in the body of the HTTP request (JSON format only): 

Parameter name 

Description 

Usage 

Type

tableName 

Filtering based on Glue table name 

Optional 

Array input

package 

Filtering based on the SAP development package 

Optional 

Array input

author 

Filtering based on the author 

Optional 

Array input

storageID 

Filtering based on storage ID 

Optional 

Array input

All input parameters are case insensitive. 

Example of REST API call: 

GET

http://servername:portnumber/dvd/glue/api/v3_1/glue-tables?sap-client=

800

clientnumber

JSON body: 

Code Block
languagejson
{
  "tableName": ["ZAP_1", "ZAD_TEST"],
  "package": ["$TMP", "ZAD_TEST"],
  "author": ["APOLTANO", "ADZIRBIK"],
  "storageID": ["$T_ORACLE", "ZAP_TB_A2"]
}

...

 Functionality is implemented in the SAP class /DVD/GL_EXT2_API_TABLES_V3