biuan SAP® BUSINESS ONE SDK
API KP Is 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


KPI KPI Object· Table: OKPI
A KPI set is a parameter set that you can define or modify parameters for dashboards. Source table: OKPI.
   Parent: KP Is Service KPIsService Service· Table: OKPI

KP Is Params KPIsParams Collection
A collection of KPIParams objects.
   Parent: KP Is Service KPIsService Service· Table: OKPI

KP Is Service Data Interfaces KPIsServiceDataInterfaces Enumeration
KPIsService data interfaces.
   Parent: KP Is Service KPIsService Service· Table: OKPI


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