In static content region I have number field - P10_SOMEFIELD.
I populate this field with
apex_util.set_session_state('P10_SOMEFIELD', l_something );
(l_something is number). I apply format mask ''999999999D9999999999', Appearance properties - does not work. I still have .9 for decimals. Should be '0.9'.
OK, I try another method. In PL/SQL i insert:
apex_util.set_session_state('P10_SOMEFIELD', TO_NUMBER(l_something,'999999999D9999999999'));
and remove format mask in field property - Appearance. Does not work.
What is wrong with that?