SAP Cloud Platform integration上建立一個最簡單的iFlow
登入SAP CPI控制檯,點選這個鉛筆圖示進入工作區域:
選擇一個已經存在的content package:
在這個content package裡建立一個新的iFlow:
預設生成的iFlow模型如下。刪除Sender,因為在這個最簡單的iFlow裡,我們採用timer方式觸發:
刪除Sender後如下圖所示:
選擇一個Timer作為iFlow觸發器:
將tinmer拖拽到integration process區域,選擇Scheduler屬性,設定成Run Once-執行一次。
再拖拽一個Content Modifier到integration process區域,切換到message body,維護一個Hello World:
將start timer同content modifier連線起來:
新增一個groovy script:
點選script步驟的create標籤:
本地新建一個文字檔案,將下列groovy程式碼貼上進去,另存為test.groovy:
import com.sap.gateway.ip.core.customdev.util.Message; import java.util.HashMap; def Message processData(Message message) { def body = message.getBody(java.lang.String) as String; def messageLog = messageLogFactory.getMessageLog(message); if(messageLog != null) { messageLog.addAttachmentAsString("Log current Payload:", body, "text/plain"); } return message; }
將本地groovy檔案上傳到script步驟裡:
再將Content modifier同Groovy Script連線起來,最近進行部署。
部署成功後,到operation檢視檢視剛剛部署的iFlow的執行情況。點選tile “All Integration Flows”:
狀態:成功執行
在attachment區域能看到之前用groovy script儲存的附件:
messageLog.addAttachmentAsString("Log current Payload:", body, "text/plain");
這個最簡單的iFlow展示到此就成功了:
要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2668890/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何在SAP Cloud Platform上進行第一個integration flow開發CloudPlatform
- 如何建立SAP Cloud Platform Process Integration runtime服務CloudPlatform
- 通過一個具體的例子,講解 SAP Cloud Platform Integration(CPI) 的使用方法CloudPlatform
- SAP Kyma(Extension Factory on SAP Cloud Platform)的架構簡介CloudPlatform架構
- SAP Cloud Platform 上CPI的初始化工作CloudPlatform
- 如何在SAP Cloud Platform ABAP程式設計環境裡建立一個employeeCloudPlatform程式設計
- 如何建立最簡單的 SAP Kyma FunctionFunction
- SAP整合技術(十三)SAP Cloud IntegrationCloud
- Hyperledger Fabric on SAP Cloud PlatformCloudPlatform
- 在Google Cloud platform上建立Kubernetes cluster並使用GoCloudPlatform
- SAP HANA Cloud 學習教程之一: 如何在 SAP BTP 上建立 SAP HANA Cloud 例項Cloud
- 最簡單的物件建立物件
- 如何部署Docker映象到SAP Cloud PlatformDockerCloudPlatform
- 使用Gardener在Google Cloud Platform上建立Kubernetes叢集GoCloudPlatform
- 一個簡潔且強大的狀態管理庫 - iFlow
- 最簡單的dockerfile使用教程 - 建立一個支援SSL的Nginx映象DockerNginx
- 如何在 SAP BTP 上使用 Integration Suite 消費 S/4HANA Cloud APIUICloudAPI
- 使用Gradle建立一個最簡單的Spring Boot專案GradleSpring Boot
- Oracle 10g 手工建立一個最簡單的資料庫Oracle 10g資料庫
- 建立一個簡單的小程式
- SAP Cloud Platform上Destination屬性為odata_gen的具體用途CloudPlatform
- 一個最簡單的 Github workflow 例子Github
- 一個最簡單的計算器
- 一個最簡單的web componentsWeb
- 27 行程式碼開發一個最簡單的 SAP ALV 報表行程
- 最簡單的一個powershell的指令碼指令碼
- 如何使用SAP Cloud Application Studio建立一個PDF formCloudAPPORM
- 使用SAP WebIDE進行SAP Cloud Platform Business Application開發WebIDECloudPlatformAPP
- 一個最簡單的WebSocket hello world demoWeb
- 一個最簡單的類JQuery封裝jQuery封裝
- 一個最簡單的XML檔案(轉)XML
- 使用SAP Cloud Platform Leonardo機器學習的測試控制檯CloudPlatform機器學習
- 建立最簡單的物件(c 原始碼)物件原始碼
- 啟動一個最簡單的Java main程式時,有多少個執行緒被建立JavaAI執行緒
- SAP與Apple合作再升級,將推出SAP Cloud Platform SDK for iOSAPPCloudPlatformiOS
- 最簡單的nginx教程 - 如何把一個web應用部署到nginx上NginxWeb
- UICollectionView(二)實現一個最簡單的UICollectionViewUIView
- 使用SAP Cloud Platform Leonardo機器學習提取圖片的特徵向量CloudPlatform機器學習特徵