Skip to main content
Question

Percentage Format not working in LOVs

  • November 20, 2025
  • 0 replies
  • 21 views

Forum|alt.badge.img+1
  • Do Gooder (Customer)

Hi everyone

 

I try to implement an LOV on ProjectList where you can select numeric values defined in a basic data table. The values should be presented as percentage. The values in the basic data table are defined from 0 to 1 (e.g. 0.75).

It works:

  • in edit-mode of the List/Table
  • in the Selector (combo box)

It doesn’t work:

  • in the default mode for List/Table

LOV
   lov CProForProjRef with CRealProbProjSelector {
      label = "Real. Pro. Proj.";
      search = RealProbProj;
      format = percentage;
   }

Selector
@Override
selector CRealProbProjSelector for CRealProbProj {
   static RealProbProj {
      format = percentage;
   }
}

Is this a bug or do I missing something?

Thanks in advance
Matthias