Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


ColumnDatatypeFor Use By IntegratorRequiredDescriptionExample
InboundSKBIGINT
  


NorthScope internal use
 

CreatedDATETIME
  


Date/Time column used for timestamp of integration.
 

LastProcessedDATETIME
  


NorthScope internal use
 

SourceSystemVARCHAR(25)YesYesCharacter field used to identify the integrator. Must be a valid value.ABC System Name
SourceTransIDVARCHAR(25)YesNoCharacter field that the integrator can use to identify their transaction.XFR123587
InboundStatusENINT
  


Enumeration field used to track the status of the record. (Defaults to 1 which is New)
 

TransactionTypeVARCHAR(25)YesYesCharacter field used to identify the transaction type of the record.IMTransfer
FormatVARCHAR(10)YesYesCharacter field used to identify the format of the incoming data.XML
DataVARCHAR(MAX)YesYesCharacter field to hold the actual data sent across.
 

ErrorTextVARCHAR(MAX)
 
 


NorthScope internal use
 

OutputTextVARCHAR(MAX)
  


NorthScope internal use
 

CompanyIDVARCHAR(20)
  


NorthScope internal use
 

LastUserVARCHAR(110)
  


NorthScope internal use
 


Example Insert Statement:

INSERT INTO dbo.ERPx_INTEG_Inbound
([Created], [SourceSystem], [SourceTransID], [InboundStatusEN], [TransactionType], [Format], [Data])

Select Statement:

SELECT GETDATEVALUES( GETDATE(),
ABC[Your System Name' Here],
[Your Transaction Number 'XFR123587'Here],
1,
[Corresponding NorthScope Transaction 'IMTransfer'Type],
'XML',
[Your XML Data Here]
)