ictorch / icsap
library to consume sap webservices
v0.2.0
2023-01-24 13:23 UTC
Requires
- php: >=7.4
README
library to consume sap service layer
Usage
// get data form sap $sapClient = (new SapClientFactory())(); $query = http_build_query([ '$select'=>"CardCode,CardName", '$filter'=>"CardType eq 'cSupplier'" ]); $response = $this->sapClient->fetch("BusinessPartners?$query", HTTP_GET, [], ["Prefer" => "odata.maxpagesize=100"]);
// put data to sap $sapClient = (new SapClientFactory())(); try { $response = $this->sapClient->fetch("Items", HTTP_POST, [ "ItemCode" => "i001", "ItemName" => "Item1", "ItemType" => "itItem" ]); } catch (\SapException $e) { print_r($e->getJsonErrors()); }