I am trying to use a display method to show the description on a report of an enum I thought that it would simply be:
display str dspType()
{
if ProdJournalRoute.ScrapType::All
return “All”;
if ProdJournalRoute.ScrapType::a
return “A”;
}
I keep getting a syntax error. Does anyone have any suggestions?