admin
2025-01-22 7e31442f0e9b07764e9c6a9680d3d4aeba5fe1de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Quintiq file version 2.0
#parent: #root
Method ReceiveMetadataRequestSetInterestDeleted (owning NamedValueTree nvt_i, LibDEF_System requestor_i, LibDEF_IntegrationEvent event_i)
{
  Description: 'Receive a Metadata message for requesting a SetInterest to be deleted for certain Set.'
  TextBody:
  [*
    LibDEF_Util::EventLog( event_i, "Receiving Set Interest deleted request" );
    
    setTypeGUID := LibDEF_DataAccessor::GetMetadataHeaderPropertyAsString( nvt_i, LibDEF_DataAccessor::HEADER_SETTYPEGUID() );
    setGUID     := LibDEF_DataAccessor::GetMetadataHeaderPropertyAsString( nvt_i, LibDEF_DataAccessor::HEADER_SETGUID()     );
    
    actionFeedbackText := "Set Interest cannot be deleted. ";
    
    setMeta := this.FindSetMeta( setTypeGUID, setGUID, actionFeedbackText, event_i );
    
    if( not isnull( setMeta ) )
    {
      // Get the interested System's System-level SetInterest
      systemInterest := select( setMeta, SetInterestFromSystem, systemInt, systemInt.SystemInterestedIn() = requestor_i );
      
      if( not isnull( systemInterest )
          // only delete if there isn't interest from set type level
          and not setMeta.SetTypeMeta().IsInterestedFromSystem( requestor_i ) )
      { 
        systemInterest.Delete();
      }
    
      // Inform the requestor about the successful deletion of interest subscription
      this.SendMetadataSuccessSetInterestDeleted( &nvt_i, requestor_i, event_i );
    }
    else
    {
      LibDEF_Util::EventLogError( event_i,
                                  actionFeedbackText,
                                  actionFeedbackText + "The Set with GUID '" + setGUID + "' is not found in the DataBroker." );
    }
  *]
}