In this article
...
Type | Format | Number of Views | Examples of Upstream and Downstream Snaps | Description | ||
---|---|---|---|---|---|---|
Input | Document | Min: 0 |
| Document that conforms to the input view schema of the Snap. The document attributes are matched to the SAP BAPI metadata, and the matching attributes are provided to the BAPI program at execution, and any non-matching attributes are ignored.
| ||
JSON Splitter Output Mapper | Any document processing Document | Min: 1 |
| Document which represents the record structure of the retrieved BAPI output definition. The documents are populated using the result data of each BAPI call for each document passed into this Snap. If the Snap has no input document, only one output document result is created. |
Document
Min: 1
Max: 1
Error | Error handling is a generic way to handle errors without losing data or failing the Snap execution. You can handle the errors that the Snap might encounter while running the Pipeline by choosing one of the following options from the When errors occur list under the Views tab. Learn more about Error handling in Pipelines.
|
Snap Settings
Field Name | Field Type | Description | |||||||
---|---|---|---|---|---|---|---|---|---|
Label* Default Value: SAP Execute | String | Specify a unique and meaningful name for the Snap. | |||||||
BAPI List configuration | Use this field set to configure the list of BAPIs to return. This field set contains the following fields. | ||||||||
BAPI List config key Default Value:OBJECTTYPE | Dropdown list | Select a key to configure the BAPI list that is being returned. The available options are:
| |||||||
BAPI List config value | String | Define a value to configure the BAPI list that is being returned. Learn more about object types. | |||||||
BAPI* Default Value: N/A | String/Expression/Suggestion | Specify the BAPI on the SAP server to be executed. This is the ABAP name. | |||||||
Start Stateful Call Sequence Default Value: Deselected | Checkbox | Select this checkbox to create a stateful session for calling one (or more) BAPIs. Note | A Session ID is required if you want to create a stateful call sequence. info Ensure to select this checkbox for the Snap where you define your first BAPI call in the Pipeline. Do not select the Commit after BAPI execute checkbox for this Snap, to extend the stateful session and call more BAPIs using this Pipeline (downstream to this Snap). 'Sequence' implies that the output from a BAPI call is needed for the next BAPI call to run. | ||||||
Commit after BAPI execute Default Value: Deselected | Checkbox | Select this checkbox to end the stateful session and commit when no exception is raised; else otherwise, the BAPI controls the commits. Info | Ensure to select this checkbox for the Snap where you define your last BAPI call in the Pipeline. Do not select the Start Stateful Call Sequence checkbox for this Snap. Do not select both Start Stateful Call Sequence and Commit after BAPI execute checkboxes for all other BAPI calls between the first and last calls in the sequence. For example, the Second BAPI call in a 3-call sequence and the second, Third, and Fourth BAPI calls in a 5-call sequence. | ||||||
Session ID Default Value: [None] N/A | String/Expression | Specify the string to identify a specific session. All Snaps in a specific stateful call sequence must be in the same session ID, and there should be only call sequence running in a session at a time. If you do not provide any session ID, the Snap runs in its own session. | |||||||
Date conversion format Default Value: yyyyMMdd | String/Expression | Specify the format to convert string input values into SAP date/datetime fields in SimpleDateFormat. | |||||||
Output date time as Text Default Value: Deselected | Checkbox | Select to output date and time as a String data type instead of a DateTime object. | |||||||
Error handling | Use this field set to define the error path and values for handling errors. If any error paths and their error values match a corresponding value in the output document, then the document is routed to the error view (if enabled), or the Snap fails (if the error view is disabled). If you do not define the error handling, the Snap will not by default fail or route anything to the error view if the RETURN[*].TYPE value is 'E'. | ||||||||
Error path Default Value: $RETURN[*].TYPE | String/Expression | Specify the error path to which the errors should route. | |||||||
Error value Default Value: E | String/Expression | Specify the value for the error. | |||||||
Max request attempts* Default Value: 3 | Integer | Specify the maximum number of SAP connection attempts to make in case of a failure. When you specify 0, the Snap makes infinite connection attempts. | |||||||
Request retry interval Default value: 5 | Integer | Specify the time in seconds to wait before retrying the request. | |||||||
Route errors Default value: Deselected | Checkbox | Select this checkbox to write configuration errors to the error view. If the error is non-recoverable, the errors (especially connection errors such as exception handling) are routed to the error view with relevant information. | |||||||
Reload Function Metadata Default value: Deselected | Checkbox | Select this checkbox to reload the metadata (latest schema) for the current BAPI function before executing the BAPI function. Note | the metadata (latest schema) for the current BAPI function before executing the BAPI function.
| ||||||
Round to SAP decimal*
Default state: Deselected | Checkbox | Select this checkbox to round the decimal value to match the number of decimal places defined in the SAP target field. This prevents a conversion error if the number of decimal places exceeds the value defined in SAP.
Input Value Rounded Value If you deselect this checkbox and the Snap tries to write a decimal value that either exceeds the length or the number of decimal places defined in the SAP packed decimal field, a conversion error is displayed. | |||||||
Snap Execution Default value: Execute only | Dropdown list |
|
...
The following examples demonstrate how to retrieve data, insert data in SAP using the applicable BAPI, and how to display an error.
Expand | ||
---|---|---|
| ||
In the first example we will read a list of all sales orders in SAP by Sales Organization and Customer using BAPI_SALESORDER_GETLIST and then split the data by Sales Order # (SD_DOC), format the data to Excel and ultimately write the data to SLDB. We will start with a JSON Generator Snap which provides Customer and Organization ID which is input for the Mapper Snap where we map the relevant details such as CUSTOMER_NUMBER and SALES_ORGANIZATION to prepare as your input data. The SAP Execute Snap is configured to use BAPI_SALESORDER_GETLIST. I have renamed the Snap "SAP Execute - BAPI" for the purposes of this example. The results are returned from SAP, which match the input criteria (Sales Organization and Customer). Next, we split the data by Sales Order using a JSON Splitter. The JSON Splitter can use the SALES_ORDERS path to split the incoming document into individual output documents for each sales order and then write the results to an Excel file using Excel Formatter. |
...
Expand | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||
The following Pipeline demonstrates a sequence of 3 BAPI calls on service notifications using an SAP instance. In this example Pipeline, a Mapper (Feed Notification Data) is used to prepare the sample attributes for the notification. The output displays the notification attributes.
|
Downloads
Note |
---|
Important Steps to Successfully Reuse Pipelines
|
...