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


Cockpit Cockpit Object· Table: OCPT
Represents a cockpit, which is a personalized work center where you can view, search, organize, and perform your regular work and related activities. Source table: OCPT.
   Parent: Cockpits Service CockpitsService Service· Table: OCPT

Cockpits Params CockpitsParams Collection
A collection of CockpitParams objects.
   Parent: Cockpits Service CockpitsService Service· Table: OCPT

Cockpits Service Data Interfaces CockpitsServiceDataInterfaces Enumeration
CockpitsService data interfaces.
   Parent: Cockpits Service CockpitsService Service· Table: OCPT


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