Environment
AppManager 6.x
AppManager 7.0.x
General_EventLog Knowledge Script
Situation
Resolution
For example:
Modify the Knowledge Script parameter limit from 80 to 255.
Find the line below within the file General_EventLog.qml
<Param name="Category">
<Desc>Event category filter</Desc>
<Delim>,</Delim>
<Type>String</Type>
<Size>80</Size>
<ReqInput>0</ReqInput>
<Parent>FDR_EVENTFILTERS</Parent>
<Folder>0</Folder>
<NoQuote>0</NoQuote>
</Param>
To
<Param name="Category">
<Desc>Event category filter</Desc>
<Delim>,</Delim>
<Type>String</Type>
<Size>255</Size>
<ReqInput>0</ReqInput>
<Parent>FDR_EVENTFILTERS</Parent>
<Folder>0</Folder>
<NoQuote>0</NoQuote>
</Param>
The number 80 was the only thing changed in the above line of code. This value shouldn't be increased beyond 255.