With the POST command, you can insert new entries, for example create time receipt, sales order or many other transactions, or you can do a login in BSL, and the POST command supports additional parameters.
Example: Postman - create a login
1. Choose "POST" as command
2. In Body you must insert the JSON string
You can define additional parameter in the URL String.
The following parameters are allowed:
Parameter |
Description |
---|---|
ProgramId='x' |
Name/ID of the ProgramID Use this if you want to work with a parameter which was defined in a WEB Program or if you need the Print solution. |
AppId='x' |
Name/ID of App Use this if you want to work with a parameter which was defined in a WEB Program or if you need the Print solution. |
async=true |
Use asynchronous mode. For more information see asynch property. |
Beas WEB Server is a single process. Transactions in SAP B1 takes time. While the transaction is running, the WEB Server cannot work on other requests.
Concept: The Beas WEB Server returns only a request ID and sends the POST command to the Beas Common Service. This does not take time and the Beas WEB Service can answer subsequent requests. The WEB client can use the RequestAnswerService to ask if the transaction is executed and can delete the request with DEL RequestAnswerService. For more information see asynch property.