Krishna
2 years agoValued Contributor
Confirmation Entities or Calculation Entities from Import using Extender ?
Hi - I am trying to get the confirmation entities from all of my Import Channel under my WF Profile. using extender BR but I am not able to find an instance to call the function. Any help would be appreciated ?
I was able to get the Confirmed entitles at the WF Profile Level and the below is the code.
Dim A As String = String.Empty
Dim wfClusterPk As WorkflowUnitClusterPk = BRApi.Workflow.General.GetWorkflowUnitClusterPk(si,"Total_Corporate","Actual","2023M1")
Dim objList As List(Of BaseNameIntPairInfo) = BRApi.Workflow.Metadata.GetProfileConfirmationEntities(si,wfClusterPk)
For Each cent As BaseNameIntPairInfo In objList
A = cent.Name
brapi.ErrorLog.LogMessage(si,A)
Next