- Más nuevo
- Más votos
- Más comentarios
The error you're encountering is a MissingPropertyException in the TRANREPT Groovy script. Specifically, the error message indicates that there is "No such property: procName for class: functions" at line 27 of your TRANREPT.groovy file.
This is a common issue when running the transaction report in AWS Blu Age modernized applications. The error occurs because the script is trying to access a variable named "procName" that hasn't been defined in the functions class.
To resolve this issue, you need to add a definition for the procName variable in your TRANREPT Groovy script. You can do this by adding the following line of code above the location where the error is occurring (around line 27 of the TRANREPT.groovy file):
def procName = 'TRANREPT'
This will initialize the procName variable with the value 'TRANREPT', which should resolve the MissingPropertyException you're seeing.
If you continue to experience issues after making this change, you might also need to check for other missing properties in the script. Similar errors have been reported with the "programResults" property, which can be fixed by adding:
Map programResults = [:]
Make sure you're using the correct version of the TRANREPT script that matches your Blu Age velocity version. You can refer to the AWS Blu Age workshop documentation for the correct script version.
Sources
AWS Blu Age L3 Workshop: Unable to execute the groovy script "TRANREPT" | AWS re:Post
Error while generating transaction report | AWS re:Post
Contenido relevante
- preguntada hace 24 días
- preguntada hace 24 días
- preguntada hace 4 meses
