I don't think you can do it without changing some code, because the CU 393 check for the Amount in the reminder, and if you only type some text it will not have any amount. So I guess you can do the following:
1. In the reminder lines, select Type as blank and enter some description.
2. Comment the following code in CU 393 - OnRun()
//IF ("Interest Amount" = 0) AND ("Additional Fee" = 0) AND ("Remaining Amount" = 0) THEN
//ERROR(Text000);
This will issue the reminder without any amount. However, what is the need to do something like this?
NOTE: Evaluate your situation very well before you do any changes to the base NAV codes.
Comments
1. In the reminder lines, select Type as blank and enter some description.
2. Comment the following code in CU 393 - OnRun()
//IF ("Interest Amount" = 0) AND ("Additional Fee" = 0) AND ("Remaining Amount" = 0) THEN
//ERROR(Text000);
This will issue the reminder without any amount. However, what is the need to do something like this?
NOTE: Evaluate your situation very well before you do any changes to the base NAV codes.
Chn
Thanks for you're answer, I think it's the best solutions will be comment CAL Code or generate Reminder manually in piece of paper:)