Frends.Sap.ODataRequest / 2.0.0
Summary
Reaches an SAP system through the OData services it publishes, sending the request and handing back the raw response. Being a pass-through, it covers whatever entity sets the service exposes rather than one fixed operation.
Typical use — reading or writing SAP business data from a Process without a Task per entity, and the usual route into SAP where no RFC-based Task fits
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| Method | Method |
GET |
GET |
The HTTP Method to be used. Possible values:
|
| HostAddress | String |
https://example.com |
https://example.com |
Host address. |
| Port | Int32 |
44301 |
44301 |
Port to connect. |
| ServiceName | String |
FAP_APPROVEBANKPAYMENTS_SRV |
PAYMENTS |
Service name. |
| EntitySetName | String |
C_AbpPaymentBatch |
A_Set |
Entity set name. |
| QueryString | String |
– | $skip=1&$paramAbc=valueXyz |
Query string part of the request. |
| Format | Format |
JSON |
JSON |
The format for communication. Possible values:
|
| Message | String |
– | { "Body": "Message" } |
The message text to be sent with the request. |