Views:
TypeRead/writeAuthorAvailability
Data providerWriteFinbourneProvided with LUSID

Providing you have access control permissions, you can use the Lusid.Property.Writer property provider to write a Luminesce SQL query that upserts or deletes one or more properties to or from either:

  • Portfolios
  • Portfolio groups
  • Instruments
  • Persons
  • Legal entities

Note: For transactions, use the dedicated Lusid.Portfolio.Txn.Property.Writer property provider. For other entities, configure its entity provider to 'inline' properties into the Luminesce catalog first.

You must construct a valid table of data to write, one property per record. Lusid.Property.Writer lists the fields (columns) available to populate with values for each record, and has a set of parameters to help you construct a valid table.

Your query can use the WriteAction field to perform one of the following operations:

  • Upsert a property; that is, add a property to an entity if it doesn't exist, and update the value if it does. This is the default operation if you omit WriteAction.
  • Delete a property.

See also: Lusid.Property

Basic usage

@table_of_data = <select-statement>;
select * from Lusid.Property.Writer where toWrite = @table_of_data;

Query parameters

Lusid.Property.Writer has parameters that help you construct a valid table of data to write.

Note: The toWrite parameter is mandatory and used to actually write the table of data into LUSID.

You must identify the parent entity for each property. Note that identifiers for different entity types have different components:

Entity typeComponents of identifier
LegalEntity, PersonidTypeScope, idTypeCode, code
InstrumentidentifierType, identifierValue, scope (if not in the default scope)
Portfolio and PortfolioGroupscope, code

For more information, consult this table of entities and their identifiers.

Use the following data fields in the select statement for toWrite to identify each property in the table of data to write unambiguously:

Data fieldStatusExplanation
DomainRequiredThe type of the parent entity. Must be a string that is one of the supported entity types, for example either Portfolio, PortfolioGroup, LegalEntityPerson or Instrument.
EntityScopeRequired for all except Instrument. If omitted for Instrument, uses the default instrument scope.

Part of the identifier for the parent entity. The origin of this value depends on the entity type:

Entity typeOrigin of field value
LegalEntity, PersonidTypeScope
Instrument (optional)scope
Portfolio and PortfolioGroupscope
EntityIdTypeRequired for LegalEntity and Person. If omitted for Instrument, defaults to LusidInstrumentId

Part of the identifier for the parent entity. The origin of this value depends on the entity type:

Entity typeOrigin of field value
LegalEntity, PersonidTypeCode
Instrument (optional)identifierType
Portfolio and PortfolioGroupN/A. Do not specify this field.
EntityIdRequired

Part of the identifier for the parent entity. The origin of this value depends on the entity type:

Entity typeOrigin of field value
LegalEntity, Personcode
InstrumentidentifierValue
Portfolio and PortfolioGroupcode
PropertyScope, PropertyCodeRequiredThe scope and code of the property, as defined by the underlying property type.
ValueRequired if upserting

The property value. Note this is a text field, so you should supply the value as a string, for example 'true' as Value or '10.5' as Value or '2020-01-01' as Value. Providing it is meaningful to do so, Luminesce automatically casts the value to the data type of the underlying property type, or raises a write error if not. For more information, and for nuances of writing time-variant and multi-value properties, see this article.

To list available parameters, their data types, default values, and an explanation for each, run the following query using a suitable tool:

select FieldName, DataType, ParamDefaultValue, Description from Sys.Field where TableName = 'Lusid.Property.Writer' and FieldType = 'Parameter';

Data fields

Lusid.Property.Writer lists the fields you can populate in your table of data to write.

Note: Some of these fields are mandatory to specify in your query; see the section above.

To list all available fields, their data types, whether fields are considered 'main', and an explanation for each, run the following query using a suitable tool:

select FieldName, DataType, IsMain, IsPrimaryKey, SampleValues, Description from Sys.Field where TableName = 'Lusid.Property.Writer' and FieldType = 'Column';

Write errors

We recommend examining the results of every write query using one or more of the WriteErrorWriteErrorCode and WriteErrorDetail fields.

For each record in the table of data to write, Lusid.Property.Writer returns an error code. If the operation is successful, the error code is 0. If unsuccessful, a positive error code and explanation help you discover why LUSID considers the operation invalid.

Examples

Note: For more example Luminesce SQL queries, visit our Github repo. For more information on nuances of writing different kinds of property to LUSID entities, see this article.

Example 1: Add a property to an instrument

In this example, LUSID adds a SIC code property to an instrument. The query defaults to the default instrument scope since no EntityScope is specified. The underlying property type has a numeric data type, so Luminesce automatically casts the (meaningful) string specified for Value to a number.

@table_of_data = select 'LUID_00003DDE' as EntityId, 'Instrument' as Domain, 'Finbourne-Examples' as PropertyScope, 
'SICCode' as PropertyCode, '7010' as Value, 'upsert' as WriteAction;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;

Example 2: Add a property to a legal entity

In this example, LUSID adds a SIC code property to a legal entity with a 3-stage property key of LegalEntity/InternationalBanks/BankId. The query specifies the second stage in the property key as the EntityScope, the third stage in the property key as the EntityIdType and the label value as the EntityId.

@table_of_data = select 'LegalEntity' as Domain, 'InternationalBanks' as EntityScope, 'BankId' as EntityIdType, 'AcmeInc' as EntityId, 
'Finbourne-Examples' as PropertyScope, 'SICCode' as PropertyCode, '7010' as Value, 'upsert' as WriteAction;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;

Example 3: Add a time-variant property effective from a particular date

In this example, LUSID adds a time-variant property representing an address to a person entity effective from a particular date. If omitted for time-variant properties, EffectiveFrom defaults to the current date when the query runs. Note the underlying property type must have a Lifetime of TimeVariant

@table_of_data = select 'Person' as Domain, 'PortfolioManagers' as EntityScope, 'ManagerId' as EntityIdType, 'PortMan1' as EntityId, 
'Finbourne-Examples' as PropertyScope, 'WorkAddress' as PropertyCode, '1 Main Street' as Value, #2022-01-01# as EffectiveFrom, 'upsert' as WriteAction;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;

Example 4: Delete a property from an entity

In this example, the explicit use of 'Delete' as WriteAction deletes a property for an instrument; you can omit the Value.

@table_of_data = select 'LusidInstrumentId' as EntityIdType, 'LUID_00003DDE' as EntityId, 'Instrument' as Domain, 'Finbourne-Examples' as PropertyScope,
'SICCode' as PropertyCode, 'delete' as WriteAction;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;

Example 5: Add a multi-value property to an entity

In this example, multiple values are specified for a portfolio property by using a comma-separated list. Note the underlying property type must have a ConstraintStyle of Collection

@table_of_data = select 'Portfolio' as Domain, 'Manager' as PropertyScope, 'Name' as PropertyCode, 'Finbourne-Examples' as EntityScope,
'FR-Equities' as EntityId, 'Joe Bloggs,Jane Doe,Matt Smith' as Value;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;

Example 6: Add multiple property values to multiple entities

In this example, five SIC code properties are added to five different instruments at the same time using the default WriteAction

@vals = values
('LUID_00003DDE', '7010'),
('LUID_00003DCK', '4711'),
('LUID_00003DCH', '6190'),
('LUID_00003DCS', '3600'),
('LUID_00003DD1', '4772');
@table_of_data = select 'Instrument' as Domain, 'Finbourne-Examples' as PropertyScope, 'SICCode' as PropertyCode, 
'LusidInstrumentId' as EntityIdType, column1 as EntityId, column2 as Value from @vals;
select * from Lusid.Property.Writer where ToWrite = @table_of_data;