Dear All,
This article is intended for database admins, consultants, customers & partners to enable the OdataAdapter & configure in your SDI Project
Right-click on Remote Sources. Choose Add Remote Source
Here you can define the Source Name (arbitary), the Adapter will be the OdataAdapter
Select Credentials Mode : Technical User which supports currently Basic Authentication and in future it will support Client Credentials.
Customers on GCP or Commissions on Hyperscaler will have to wait for HANA SP07 to get upgraded to make use of Odata Adapter. Alternative Solution - After you insert the data to stage tables, Run V&T Manually |
Note : Credentials is your SAP Commissions RestAPI User ( Refer the SAP Commissions Blogs on RestAPI)
Click Create
Check the remote objects to make sure configuration has been successful and to complete the validation below.
Also you can CREATE REMOTE SOURCE using below statement in your webIDE
CREATE REMOTE SOURCE "Odata_Pipeline"
ADAPTER "ODataAdapter" AT LOCATION DPSERVER
CONFIGURATION '<?xml version="1.0" encoding="UTF-8"?>
<ConnectionProperties name="UI">
<PropertyEntry name="URL">https://<TENANTID>.callidusondemand.com:443/TrueComp-SaaS/CommissionsService.svc</PropertyEntry>
<PropertyEntry name="proxyserver"></PropertyEntry>
<PropertyEntry name="proxyport"></PropertyEntry>
<PropertyEntry name="truststore"></PropertyEntry>
<PropertyEntry name="isfiletruststore"></PropertyEntry>
<PropertyEntry name="supportformatquery">true</PropertyEntry>
<PropertyEntry name="requireCSRFheader"></PropertyEntry>
<PropertyEntry name="CSRFheadername"></PropertyEntry>
<PropertyEntry name="CSRFheaderfetchvalue"></PropertyEntry>
<PropertyEntry name="supportdatefunctions"></PropertyEntry>
<PropertyEntry name="shownavigationproperties"></PropertyEntry>
<PropertyEntry name="supportEncodingGzip"></PropertyEntry>
<PropertyEntry name="followRedirects"></PropertyEntry>
<PropertyEntry name="extraconnectionparameters"></PropertyEntry>
<PropertyEntry name="verifyServerCertificate"></PropertyEntry>
</ConnectionProperties> '
WITH CREDENTIAL TYPE 'PASSWORD' USING
'<CredentialEntry name="password">
<user>enter your username</user>
<password>enter your password here </password>
</CredentialEntry>';
you will have to create a Virtual table by connecting to your remote source to load the data into table.
CREATE VIRTUAL TABLE "EXT"."VT_Pipeline" at "Odata_Pipeline"."<NULL>"."<NULL>"."PipelineRuns";
you can preview your Virtual table if that’s displaying all the Pipeline fields (Table : CS_PLRUN)
References
SAP Commissions – Smart Data Integration[SDI] – Part 1
SAP Commissions – Smart Data Integration[SDI] – Part 2
SAP Commissions – Smart Data Integration[SDI] – Part 3
SAP Commissions – Smart Data Integration[SDI] – Part 4
SAP Commissions – Smart Data Integration[SDI] – Part 5
SAP Commissions – Smart Data Integration[SDI] – Part 6
SAP Commissions – Smart Data Integration[SDI] – Part 7a
SAP Commissions – Smart Data Integration[SDI] – Part 7b
SAP Commissions – Smart Data Integration[SDI] – Part 7c
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
11 | |
11 | |
6 | |
4 | |
4 | |
3 | |
3 | |
2 | |
2 | |
2 |