Interface ITransactionCodeAllocateToTransaction
The system entity for a transaction code allocate to transaction entity, which holds settings for automatically creating a new transaction for entites that are being allocated to
See https://web.lemonedge.com/help/transaction-codes/ for more information
Inherited Members
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.TransactionCodeAllocateToTransaction, "dbo.LT_TransactionCodeAllocateToTransactions", "TransactionCodeAllocateToTransaction", IsStandingDataEntity = true)]
[DefaultEntityIcon(ImageType.TransactionCode)]
public interface ITransactionCodeAllocateToTransaction : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
FormulaForEntityID
When using a SQL Wrapper as the source, this is the formula to use to get the entity id for this field.
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("This is the formula to use to get the entity id for this field.")]
string FormulaForEntityID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FormulaForInstrumentID
When using a SQL Wrapper as the source, this is the formula to use to get the instrument id for this field.
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("This is the formula to use to get the instrument id for this field.")]
string FormulaForInstrumentID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FormulaForPathID
When using a SQL Wrapper as the source, this is the formula to use to get the path id for this field.
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("This is the formula to use to get the path id for this field.")]
string FormulaForPathID { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FormulaForTransactionDate
When using a SQL Wrapper as the source, this is the formula to use to get the transaction date for this field.
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("This is the formula to use to get the transaction date for this field.")]
string FormulaForTransactionDate { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LedgerID
Links to ILedger. The Ledger to use for recording this new Transaction against
Declaration
[EntityProperty(SQLType.UniqueIdentifier, true)]
[EntityRelationship(EntityID.Ledger, "ID", SingleJoinType.ZeroToOne, "ILedger", "New Blending Transactions", DeleteWithRelationship = true, PartOfParentSet = false, LinkToItemInSet = false, InheritPermissions = false)]
[EntityDescription("The ledger to use when creating a new transaction for this transaction, if null it uses the ledger setup in the transaction code.")]
Guid? LedgerID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
TargetTransactionCodeID
[Key] Links to ITransactionCode. The target transaction code to create a transaction with
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionCode, "ID", SingleJoinType.One, "TransactionCode", "ITransactionCodeProcessor", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = false)]
Guid TargetTransactionCodeID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
TransactionCodeID
[Key] Links to ITransactionCode. The parent transaction code this processor is a member of
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.TransactionCode, "ID", SingleJoinType.One, "TransactionCode", "ITransactionCodeProcessor", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true)]
Guid TransactionCodeID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |