Use the Sales Order Completion (SOC) Business Blueprint to Predict Missing Sales Order Fields
- How to predict missing fields in sales order documents using your machine learning model
- How to
undeployand delete your model - How to delete datasets and dataset schemas
- Step 1
In the service key you created for Data Attribute Recommendation in the previous tutorial: Use Free Tier to Set Up Account for Data Attribute Recommendation and Get Service Key or Use Trial to Set Up Account for Data Attribute Recommendation and Get Service Key, you find a section called
swagger(as highlighted in the image below) with three entries, calleddm(data manager),mm(model manager) andinference.
For the following step, copy the URL of the Swagger UI for
inferenceand open it in a browser tab. The Swagger UI for inference allows you to classify new data using your machine learning model that you have created in Use the Sales Order Completion (SOC) Business Blueprint to Train a Machine Learning Model.-
To be able to use the Swagger UI endpoints, you need to authorize yourself. In the top right corner, click Authorize.

-
Get the
access_tokenvalue created in the previous tutorial: Get OAuth Access Token for Data Attribute Recommendation Using Any Web Browser, then add Bearer (with capitalized “B”) in front of it, and enter in the Value field.Bearer <access_token> -
Click Authorize and then click Close.

-
- Step 2
To get the machine learning model predictions, proceed as follows:
-
Expand the endpoint
POST /models/{modelName}/versions/1by clicking on it. Then click Try it out.
-
Fill the parameter
modelNamewith the name of your machine learning model (soc_tutorial_model). -
In the parameter
body, you have to provide the data that needs to be predicted. According to the dataset schema that you have created in Use the Sales Order Completion (SOC) Business Blueprint to Upload Data to Data Attribute Recommendation with Swagger UI, the machine learning model takes the training fields such asSALESORDERTYPEandSALESORGANIZATIONas input and predictsSALESGROUPandSALESOFFICE. Replace the text in the parameterbodywith the following:JSONCopy{ "topN":3, "objects":[ { "objectId":"optional-identifier-1", "features":[ { "name":"SALESORDERTYPE", "value":"SOT_1" }, { "name":"SALESORGANIZATION", "value":"SOO_1" }, { "name":"DISTRIBUTIONCHANNEL", "value":"DC_1" }, { "name":"ORGANIZATIONDIVISION", "value":"OD_1" }, { "name":"MATERIAL", "value":"M_1" } ] }, { "objectId":"optional-identifier-2", "features":[ { "name":"SALESORDERTYPE", "value":"SOT_1" }, { "name":"SALESORGANIZATION", "value":"SOO_3" }, { "name":"DISTRIBUTIONCHANNEL", "value":"DC_1" }, { "name":"ORGANIZATIONDIVISION", "value":"OD_3" }, { "name":"MATERIAL", "value":"M_1" } ] } ] } -
Click Execute to send the above input to the service to get predictions for missing fields in sales order documents.

In the response of the service, you find the probability and the values for
SALESGROUPandSALESOFFICE. The probability represents how certain the model is about its prediction. The higher the probability the more confident the model is that the prediction is actually correct. If the probability is close to 1, the model is very certain. The service provides one main prediction and two alternative predictions for eachSALESGROUPandSALESOFFICE.
JSONCopy{ "id": "3f5eafdb-fc3c-432a-731a-092df6188d1b", "predictions": [ { "labels": [ { "name": "SALESGROUP", "results": [ { "probability": 0.987675786, "value": "SG_1" }, { "probability": 0.0066182106, "value": "SG_3" }, { "probability": 0.005706057, "value": "SG_2" } ] }, { "name": "SALESOFFICE", "results": [ { "probability": 0.9880228043, "value": "SO_1" }, { "probability": 0.0082320822, "value": "SO_2" }, { "probability": 0.0037451275, "value": "SO_3" } ] } ], "objectId": "optional-identifier-1" }, { "labels": [ { "name": "SALESGROUP", "results": [ { "probability": 0.9952125549, "value": "SG_1" }, { "probability": 0.003377331, "value": "SG_2" }, { "probability": 0.0014101767, "value": "SG_3" } ] }, { "name": "SALESOFFICE", "results": [ { "probability": 0.9940330386, "value": "SO_3" }, { "probability": 0.005349447, "value": "SO_2" }, { "probability": 0.0006174785, "value": "SO_1" } ] } ], "objectId": "optional-identifier-2" } ], "processedTime": "2023-05-08T12:14:08.175907", "status": "DONE" }You have successfully used a machine learning model to predict missing fields in sales order documents. Feel free to adapt the examples above and retry the prediction.
Choose the feature that is NOT used in the inference request of this tutorial.
-
- Step 3
Now that you have learned the whole process about how to use the Sales Order Completion (SOC) Business Blueprint from the Data Attribute Recommendation service, it’s time to clean up. This way, the technical limits won’t get in your way when trying out other Data Attribute Recommendation tutorials. See Technical Constraints and Free Tier Option Technical Constraints.
First,
undeployyour model. For that, go back to the Swagger UI formmand:-
Expand the endpoint
DELETE /deployments/{deploymentId}by clicking on it. Then click Try it out.
-
Fill the parameter
deploymentIdwith the ID of your deployment. Use theGET /deploymentsendpoint in case you no longer have the deploymentidin hand.
If the response code is
204, the model has been successfullyundeployed.
You have successfully
undeployedyour model, but the model is not yet deleted. Instead it isn’t in production which means that you cannot make inference requests. You can deploy it again at any time using thePOST /deploymentsendpoint. -
- Step 4
Once
undeployed, you can delete your model.-
Expand the endpoint
DELETE /models/{modelName}by clicking on it. Then click Try it out.
-
Fill the parameter
modelNamewith the name of your machine learning model (soc_tutorial_model). Use theGET /modelsendpoint in case you no longer have the modelnamein hand.
If the response code is
204, the model has been successfully deleted.
-
- Step 5
Now that the model is deleted, you can delete the training job that created the model.
-
Expand the endpoint
DELETE /jobs/{jobId}by clicking on it. Then click Try it out.
-
Fill the parameter
jobIdwith the ID of your training job. Use theGET /jobsendpoint in case you no longer have the jobidin hand.
If the response code is
204, the training job has been successfully deleted.
-
- Step 6
To clear the uploaded data, you can now delete the dataset as the associated training job is already deleted. For that, go back to the Swagger UI for
dmand:-
Expand the endpoint
DELETE /datasets/{id}by clicking on it. Then click Try it out.
-
Fill the parameter
idwith the ID of your dataset. Use theGET /datasetsendpoint in case you no longer have the datasetidin hand.
If the response code is
204, the dataset has been successfully deleted.
-
- Step 7
If you do not need your dataset schema anymore, you can delete it as well.
-
Expand the endpoint
DELETE /datasetSchemas/{id}by clicking on it. Then click Try it out.
-
Fill the parameter
idwith the ID of your dataset schema. Use theGET /datasetSchemasendpoint in case you no longer have the dataset schemaidin hand.
If the response code is
204, the dataset schema has been successfully deleted.
Congratulations, you have completed this tutorial.
-