Call A Service Data Object (via JavaScript API)
When you want the data from a Service Data Object and you're working in JavaScript, the Aptify JavaScript API provides a handy interface.
Step-by-step guide
Know the Name of the Service Data Object.
var getPILQuantityDataObject = "spGetProductInventoryLedgerQuantities";
Know the parameters you need and their values.
var getPILQuantityParams = { "ProductInventoryLedgerID": 1 };
Define success and error callback functions. Of course, you can define these anonymously in the actual call to executeDataObject(), but that call will be more succinct and readable if you define them separately.
Define A Success Callbackfunction _onGetPILQuantitySuccess(data) { // data.results contains the table produced by the Service Data Object // The table is represented as a 0-indexed array of rows. // A row is represented as a JavaScript Object with properties // that have the names of the columns returned by the Service Data Object if (data && data.results.length > 0) { // Handle each row of the table } }
Define An Error Callbackfunction _onGetPILQuantityError(error) { throw ({ type: "internal_error", message: "An error occurred while calling " + getPILQuantityDataObject + " Service Data Object." }); }
Call Aptify.framework.dataObjects.executeDataObject() to execute the Service Data Object.
Best practice is to check that Aptify Web is actually online before making the call, since the Service Data Object is executed on the server side.
Execute A Service Data Objectif (Aptify.framework.utility.online()) { Aptify.framework.dataObjects.executeDataObject({ name: getPILQuantityDataObject, parameters: getPILQuantityParams, successCallback: _onGetPILQuantitySuccess, errorCallback: _onGetPILQuantityError }); } else { // Handle offline condition }
Related topics
Copyright © 2014-2017 Aptify - Confidential and Proprietary