biuan SAP® BUSINESS ONE SDK
API Credit Lines Service / Get Data Interface From XML File

Description

Creates an object from an XML file.

Syntax

Visual Basic
Public Function GetDataInterfaceFromXMLFile( _
   ByVal bstrFileName As String _
) As Object

Parameters

bstrFileName

The path and name of the XML file with which to create the object.

Remarks

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

The XML file defines the object and its data.

Example

Create object from XML file (C#)
public void AddFromXMLFile(Hashtable Properties, String Path) { //Store GeneralData object as XML SAPbobsCOM.GeneralService oGeneralService; SAPbobsCOM.GeneralData oGeneralData; SAPbobsCOM.GeneralData oGeneralDataXML; 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()); oGeneralData.ToXMLFile(Path); //Retrieve XML and create GeneralData object from the XML oGeneralDataXML = (GeneralData)oGeneralService.GetDataInterfaceFromXMLFile(Path); oGeneralService.Add(oGeneralDataXML); }

See Also

Related information


Credit Lines Params CreditLinesParams Collection
A data collection of CreditLineParams objects.
   Parent: Credit Lines Service CreditLinesService Service· Table: OCRH

Credit Lines Service Data Interfaces CreditLinesServiceDataInterfaces Enumeration
CreditLinesService data interfaces.
   Parent: Credit Lines Service CreditLinesService Service· Table: OCRH


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