BlueCielo Meridian Enterprise 2018 VBScript API Reference

AIMS_UpdateChangeManagement function

Invoked when a user saves changes to a Meridian Explorer detail page that has the Enable feedback functionality option enabled.

Syntax

Function AIMS_UpdateChangeManagement (Remarks As String, RequestType As String)

Parameters

Name

Description

Remarks

The value that the user entered for the Remarks (Custom.ChangeManagementRemarks) property.

RequestType

The value that the user entered for the Request type (Custom.ChangeManagementRequestType) property.

Remarks

Use this function to modify the values that are saved by the user's input or to set other properties as demonstrated in the following example.

Example

Function AIMS_UpdateChangeManagement(remarks, requestType)
    Document.ChangeManagementRemarks = remarks
    Document.ChangeManagementRequestType = requestType 
    Document.ApplyPropertyValues
 
    Call Document.Log(CStr(User.Name + " : " + requestType))
 
    AIMS_UpdateChangeManagement = ""
End Function