Was this helpful?
Message not found
 
Error Code
2
Error Message
Error during execute: Message not found: <Variable_Name>
Description
This error message is displayed when you create global variables from the Configuration tab instead of component property.
Cause/Solution
Cause: A global variable has been created from the Configuration tab instead of component property.
Solution:
Initialize the DJMessage in the process:
'===== Start DataConnect Generated Script =====
Set <Variable_Name> = FindMessage("<Variable_Name>")
If <Variable_Name> is Nothing Then
Set <Variable_Name> = new DJMessage ("<Variable_Name>")
End If
'===== End DataConnect Generated Script =====
 
At the end of the process, re-initialize the DJMessage to avoid any error during multiple re-run of the same process.
 
Set <Variable_Name> = Nothing
Related Information
Last modified date: 07/26/2024