ERP Integrator V2 - Online Help
ERP Integrator V2
Questions / Feedback?

ColumnType Property

The type of the column.

Syntax

 sapclient.getColumnType(index, [callback])

Possible Values

  0 (ctCharacters), 
  1 (ctDate), 
  2 (ctPackedDecimal), 
  3 (ctTime), 
  4 (ctBinary), 
  5 (ctTable), 
  6 (ctNumber), 
  7 (ctFloat), 
  8 (ctInteger), 
  9 (ctShort), 
  10 (ctByte), 
  14 (ctNull), 
  17 (ctStructure), 
  23 (ctDecF16), 
  24 (ctDecF34), 
  28 (ctXMLData), 
  29 (ctString), 
  30 (ctXString)

Default Value

0


Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for the getColumnType([callback]) method is defined as:

function(err, data){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'data' is the value returned by the method.

The callback for the setColumnType([callback]) method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

The type of the column.

A list of valid column types is shown below:

ctCharacters (0) Character data.
ctDate (1) A date in the format YYYYMMDD.
ctPackedDecimal (2) Packed decimals are unique to the SAP system, and are treated as binary data by the class.
ctTime (3) A time in the format HHMMSS.
ctBinary (4) Raw binary data.
ctTable (5) Handle to a table in memory.
ctNumber (6) Numeric data formatted as a String.
ctDouble (7) An 8-byte floating-point number (double).
ctInteger (8) A 4-byte integer (int).
ctShort (9) A 2-byte integer (short).
ctByte (10) A 1-byte integer (byte).
ctNull (14) An unsupported data type
ctStructure (17) ABAP structure
ctDecF16 (23) 754r decimal floating point, 8 bytes
ctDecF34 (24) 754r decimal floating point, 16 bytes
ctXMLData (28) Null terminated string containing an ABAP structure with XML
ctString (29) Null terminated string
ctXString (30) Null terminated string with length property in bytes

Note that the ColumnValue property will always contain a string representation of integer or floating point data. The class will convert between this string representation and the actual integer and float data expected by the SAP system.

The size of the array is controlled by the ColumnCount property.

This property is read-only and not available at design time.

Data Type

Integer

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 2.0.6240.0