Skip to content

Instantly share code, notes, and snippets.

@nemethmik
Created March 31, 2020 13:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nemethmik/07282ea7ea8367b2679511c6c94aac10 to your computer and use it in GitHub Desktop.
Save nemethmik/07282ea7ea8367b2679511c6c94aac10 to your computer and use it in GitHub Desktop.
SAP B1 POEM Simple Data Interface Architecture Diagram (Plant UML)
@startuml SAP Business One - POEM Simple Data Intarface Architecture
cloud {
node "windows server" {
[B1 Data Interface Server] - b1dis_GET
[B1 Data Interface Server] -u- b1dis_POST
[B1 Data Interface Server] -d-> [B1 Data Updater Process]
database "SAP B1 Company" as sapdb {
storage ToDosTable
storage UserQueries
storage "owor, wor1, rdr1" as so
}
[B1 Data Interface Server]->ToDosTable: write
[B1 Data Interface Server]<-UserQueries : read
[B1 Data Updater Process]<-d->ToDosTable : "read & update"
[B1 Data Updater Process] -d-> so : "SQL & DI API update"
}
}
node POEM {
database pdb
}
POEM .d.> b1dis_GET : "HTTP GET/JSON"
POEM ..> b1dis_POST : "HTTP POST/JSON"
@enduml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment