日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

微信开发系列之四 - 将SAP C4C的数据更改通知发送到微信公众号上

發布時間:2023/12/19 编程问答 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 微信开发系列之四 - 将SAP C4C的数据更改通知发送到微信公众号上 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

文章系列目錄

  • Wechat development series 1 – setup your development environment
  • Wechat development series 2 – development Q&A service using nodejs
  • Wechat development series 3 – Trigger C4C Account creation in Wechat app
  • Wechat development series 4 – Send C4C Data change notification to Wechat app
  • Wechat development series 5 – embedded your UI5 application to Wechat app
  • Wechat development series 6 – Retrieve Wechat User info via oAuth2 and display it in UI5 application
  • Wechat development series 7 – use Redis to store Wechat conversation history
  • Wechat development series 8 – Map integration
  • Wechat development series 9 – Create C4C Social Media Message and Service within Wechat app
  • Wechat development series 10 – Use Wechat app to receive Service Request reply made from C4C

In previous blog when a Wechat user subscribes the subscription Wechat account, a new individual customer is automatically created in C4C system.


So technically Wechat is the source(sender) of dataflow and our C4C system is the dataflow target ( receiver ), and the nodejs server acts as a middleware.

In this blog, let’s try the other way around: suppose any one has made changes on this automatically created account in C4C system, the corresponding Wechat user will receive a notification in his/her Wechat app. Such notification is sent by C4C and Wechat app is the receiver.

Implementation detail

(1) Since in the third blog of this series, I use the standard field “LastName” of Customer BO to store the Wechat ID of the user who has performed the subscription,

and later in C4C, any user could change this field.

As a result in this blog, I create a new extension field in common node of Customer BO to store the Wechat ID.

import AP.Common.GDT; import AP.FO.BusinessPartner.Global;[Extension] businessobject AP.FO.BusinessPartner.Global:Customer {// root node of Customer is not extendablenode Common {[Label("Wechat ID")] element WechatID:LANGUAGEINDEPENDENT_EXTENDED_Text;} }

And create a new BeforeSave.absl to copy the value of FamilyName into extension field WechatID.

import ABSL; var common = this.Common.GetFirst(); if( common.WechatID.IsInitial()) {common.WechatID = common.Person.Name.FamilyName; }

(2) Create a new OData service to expose this WechatID, mark field ObjectID, ParentObjectID and WechatID.

Test this OData Service via url:
https:///sap/c4c/odata/cust/v1/zindividualcustomer/CustomerCommonCollection?$filter=ParentObjectID%20eq%20%2700163E20C9511EE7B8975BD4AB3F60C0%27
Make sure it can return the correct value of three fields as expected:

(3) Once the account is changed in C4C, a notification should be sent from C4C to our nodejs server. This automatic notification mechanism could be achieved via C4C OData event notification. See another of my blog Leverage C4C Odata notification to monitor C4C Opportunity change in CRM system for detail.

The setting below means whenever a change on Customer BO occurs in C4C, a change notification will be sent to the endpoint automatically:
https://wechatjerry.herokuapp.com/c4c
So far all development / configuration in C4C side is done.

(4) In nodejs server implementation, create a new field in config object:

  • field name: indivudualCustomerNewurl
  • field value: https:///sap/c4c/odata/cust/v1/zindividualcustomer/CustomerCommonCollection?$filter=
    Since the endpoint I configure in C4C system is: https://wechatjerry.herokuapp.com/c4c
    And when a given account is changed in C4C, a HTTP post with the following kind of payload will be sent to this endpoint:
{“businessObject”:CUSTOMER,”businessObjectId”:00163E20C9511EE7B8975BD4AB3F60C0″,”event”:””,”odataServiceEndpoint”:”https://<your tenant>/sap/byd/odata/v1/zindividualcustomer/CustomerCommonCollection(00163E20C9511EE7B8975BD4AB3F60C0’)}

So in nodejs server, I have to react to this Post request.

Main logic is implemented in module notifyWechatUser, which uses the guid of changed Customer BO instance as an input parameter.

Inside the implementation of notifyWechatUser, which consists of two steps:

function notifyWechatUser(uuid,res){console.log("begin to read uuid: " + uuid);_getAccount(uuid).then(function(wechatID){res.status(200).end();sendMessage(wechatID, "Dear user, A kind reminder: your C4C account is changed in the system.");}); }

(1) call _getAccount to get the WechatID stored on Common node of Customer BO via OData call.
(2) sendMessage to send a hard coded sentence to the corresponding Wechat user.

Implementation of _getAccount

function _getAccount(uuid) {var AccountBOguid = uuid;var detailODataUrl = config.indivudualCustomerNewurl;var parentID = 'ParentObjectID eq \'' + AccountBOguid + '\'';detailODataUrl = detailODataUrl + encodeURI(parentID);var getOptions = {url: detailODataUrl,method: "GET",json:true,headers: {"content-type": "application/json",'Authorization': 'Basic ' + new Buffer(config.credential).toString('base64')}};return new Promise(function(resolve,reject){var requestC = request.defaults({jar: true});console.log("request with url: " + detailODataUrl);requestC(getOptions,function(error,response,body){var wechatID = body.d.results[0].WechatID;console.log("wechat id: " + wechatID);resolve(wechatID);}); // end of requestC}); }?

Implementation of sendMessage

var config = require("../../config.js"); var request = require("request");function printObject(oData){for( var a in oData){console.log("key: " + a);console.log("value: " + oData[a]);if( typeof oData[a] === "object"){printObject(oData[a]);}} }function sendWCMeaasge(toUser,sMessage){console.log("begin to send message to user: " + toUser + " with message: " + sMessage);var options = {url:"https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" +config.accessToken, method: "POST",json:true,headers: {"content-type": "application/json"},body:{"touser":toUser,"msgtype":"text","text":{"content":sMessage}}};request(options,function(error,response,data){console.log("error? " + error);console.log("response: " + response);console.log("data: " + data);console.log("response...............................................");//printObject(response);console.log("data.....................................................");console.log("Status message: " + response.statusMessage);console.log("Data: " + data.errmsg);});}module.exports = sendWCMeaasge;

Final achievement

As soon as I subscribe the test Wechat account by scanning QRCode, a new account 1000443 is created in C4C system.

When this account is changed in the system:

The corresponding Wechat user successfully received the notification sent by C4C in the Wechat app:

要獲取更多Jerry的原創文章,請關注公眾號"汪子熙":

總結

以上是生活随笔為你收集整理的微信开发系列之四 - 将SAP C4C的数据更改通知发送到微信公众号上的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。