Article Details
Id:9970
Product:finPOWER Connect
Type:NEW
Version:1.05.05
Opened:03/04/2012
Closed:02/05/2012
Released:08/05/2012
Job: J009371

Logs; Read Only External sources added

The following External Sources have been added for Logs:

  • ExternalReadOnlyA = 1000
  • ExternalReadOnlyB = 1001
  • ExternalReadOnlyC = 1002
  • ExternalReadOnlyD = 1003
  • ExternalReadOnlyE = 1004
  • ExternalReadOnlyF = 1005
  • ExternalReadOnlyG = 1006
  • ExternalReadOnlyH = 1007
  • ExternalReadOnlyI = 1008
  • ExternalReadOnlyJ = 1009

Logs with these sources cannot be edited.

By default, Logs with these sources cannot be deleted.

The following permission keys have been added to allow deletion of Logs with these sources:

  • Account.Logs.DeleteExternalReadOnly
  • Client.Logs.DeleteExternalReadOnly
  • SecurityStmt.Logs.DeleteExternalReadOnly
  • SecurityItem.Logs.DeleteExternalReadOnly
  • User.Logs.DeleteExternalReadOnly

Read-Only Logs must be created by Script or other external code. An example is shown below:

Dim ClientLog As finClientLog

ClientLog = gISBL.CreateClientLog()
With ClientLog
  .ClientId = "C10000"
  .SourceSet(isefinLogSource.ExternalReadOnlyA)
  .Subject = "Test Read-Only Log"
  Main = .Save()
End With