ERPConnect.AbapString
Namespace: ERPConnect
Assembly: ERPConnectStandard20.dll
Contains methods for parsing string representations of ABAP values
Inheritance
Inherited Members
object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Methods
Parse(string, AbapType)
Parses an ABAP string representation
Parameters
value
string
The string representation
abapType
AbapType
The ABAP type of the representation
Returns
The typed value of the string representation
ParseBoolean(string)
Parses a string representation of an ABAP boolean
Parameters
value
string
The string representation of the ABAP boolean
Returns
The typed value of the string representation
ParseByteSequence(string)
Parses a string representation of an ABAP byte sequence
Parameters
value
string
The string representation of the ABAP byte sequence
Returns
byte[]
The typed value of the string representation
ParseFloatingPoint(string)
Parses a string representation of an ABAP floating point value
Parameters
value
string
The string representation of the ABAP floating point value
Returns
The typed value of the string representation
ParsePackedNumber(string)
Parses a string representation of an ABAP packed number
Parameters
value
string
The string representation of the ABAP packed number
Returns
The typed value of the string representation
ParseSignedInteger(string)
Parses a string representation of an ABAP signed integer
Parameters
value
string
The string representation of the ABAP signed integer
Returns
The typed value of the string representation
ParseSignedNumericCharacter(in string)
Parses the SNUMC conversion exit.
Parameters
value
string
The string representation of the SNUMC conversion exit
Returns
The signed integer corresponding to the string representation
ParseUnsignedInteger(string)
Parses a string representation of an ABAP unsigned integer
Parameters
value
string
The string representation of the ABAP unsigned integer
Returns
The typed value of the string representation
ReplaceStar(string, string)
Replaces the star in string representation of SAP table values which are too big for RFC_READ_TABLE
Parameters
value
string
The string representation of the SAP table value
starReplacement
string
The replacement for the star
Returns
The string representation where the star has been replaced
TryParseTime(string, out TimeSpan)
Try to parse a string representation of an ABAP TIMS (time)
Parameters
value
string
The string representation of the ABAP Time (TIMS)
timeSpanVal
TimeSpan
If the parser succeeds, this variable shall contain a TimeSpan between 00:00:00 and 23:59:59, otherwise TimeSpan.Zero
Returns
True if the parser succeeds, false otherwise