bool SaveDba(OdId tOb)
tOb. Moniker of opened business application instance.
The SaveDba operation saves changes in business application.
To execute the operation, in the tOb field specify moniker of opened business application instance.
The operation results in the logical True if changes were saved successfully.
Below is the example of saving business application changes. The request contains moniker of opened business application instance. The response contains whether changes were saved successfully.
{
"SaveDba" :
{
"tOb" :
{
"id" : "EMMHJHJLCLPAGOAECIKJAHOPCNJHGJDEKIODNPHMALBNJDDP!M!S!CBPKMIAKLCLPAGOAEHNHNGELNMKNCKMNEEIHLOAJKJEAJIHDJ"
}
}
}
{
"SaveDbaResult" : "1"
}
public static bool SaveDba(string moniker)
{
var somClient = new SomPortTypeClient(); // Proxy object for operation execution
// Operation execution parameters
var tSave = new SaveDba()
{
// Create object moniker
tOb = new OdId() { id = moniker }
};
// Save changes
var result = somClient.SaveDba(tSave);
return result;
}
See also: