biuan SAP® BUSINESS ONE SDK
API Determination Criterias Service / Get Data Interface From XML String

Description

Creates an object from XML.

Syntax

Visual Basic
Public Function GetDataInterfaceFromXMLString( _
   ByVal bstrXMLString As String _
) As Object

Parameters

bstrXMLString

The XML with which to create the object.

Remarks

The XML can be created using an object's ToXMLString method.

The XML defines the object and its data.

Example

Create object from XML string (C#)
public void AddFromXMLString(Hashtable Properties) { //Store GeneralData object as XML SAPbobsCOM.GeneralService oGeneralService; SAPbobsCOM.GeneralData oGeneralData; SAPbobsCOM.GeneralData oGeneralDataXML; string XMLString; oGeneralService = cConnection.Instance.DICompanyService.GetGeneralService(UDOID); oGeneralData = (GeneralData)oGeneralService.GetDataInterface(GeneralServiceDataInterfaces.gsGeneralData); foreach (DictionaryEntry Pair in Properties) oGeneralData.SetProperty(Pair.Key.ToString(), Pair.Value.ToString()); XMLString = oGeneralData.ToXMLString(); //Retrieve XML string and create GeneralData object from the XML oGeneralDataXML = (GeneralData)oGeneralService.GetDataInterfaceFromXMLString(XMLString); oGeneralService.Add(oGeneralDataXML); }

See Also

Related information


Determination Criteria DeterminationCriteria Object· Table: ODMC
The available determination criteria are predefined (you cannot define additional determination criteria): Item Group Item Code Warehouse Code Business Partner Group Ship-to Country Ship-to State You can activate and...
   Parent: Determination Criterias Service DeterminationCriteriasService Service· Table: ODMC

Determination Criteria Params Collection DeterminationCriteriaParamsCollection Collection
A collection of DeterminationCriteriaParams objects.
   Parent: Determination Criterias Service DeterminationCriteriasService Service· Table: ODMC

Determination Criterias Service Data Interfaces DeterminationCriteriasServiceDataInterfaces Enumeration
DeterminationCriteriasService data interfaces.
   Parent: Determination Criterias Service DeterminationCriteriasService Service· Table: ODMC


SAP® Business One is the trademark(s) or registered trademark(s) of SAP AG in Germany and in several other countries. Contact
This website is not affiliated with, maintained, authorized, endorsed or sponsored by SAP AG or any of its affiliates