Release version: 5.42
Once enabled, the holdings history procedure calculates how many trusts and securities it owns on a daily basis.
To enable the stored procedure
CREATE PROCEDURE [dbo].[GetDailyPositionSummary]
(
@ValueDate DATE
)
AS
SET NOCOUNT ON;
SELECT
[ValueDate] ,
[ClientID] ,
[Category] ,
[AssetID] ,
[AssetCode] ,
[AssetDescription] ,
[AssetCcy] ,
[ClientBaseCcy] ,
[MIBaseCcy] ,
[BookCostInSourceCcy] ,
[BookCostInClientBaseCcy] ,
[BookCostInMIBaseCcy] ,
[MarketValueInSourceCcy] ,
[MarketValueInClientBaseCcy] ,
[MarketValueInMIBaseCcy] ,
[FXRateAssetCcyToClientBaseCcy] ,
[FXRateAssetCcyToMIBaseCcy] ,
[Price] ,
[PriceDate] ,
[Units]
FROM
[dbo].[DailyPositionSummary];
RETURN 0;
GO
To enable the system property
- Click Settings > Lists > Application configuration > System properties.
- Locate and double-click the Custom post end-of-day procedure system property.
- In Value, enter FNB_PostEndOfDay.
- Click Save and close.
Comments
0 comments
Please sign in to leave a comment.