📚 SAP Business One SDK Help

GetDataInterfaceFromXMLFile Method
See Also 
bstrFileName

Specifies the path and file name of the XML data.

Description

Retrieves the Data Interface schema from XML file.

Syntax

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

Parameters

bstrFileName

Specifies the path and file name of the XML data.

Example

To use the GetDataInterfaceFromXMLFile method, use the following code:

string str = "<?xml version='1.0' encoding='UTF-16'?><UserMenu/>";

object umi = ums.GetDataInterfaceFromXMLString(str);

Example

See Also