Hi gurus,
My jdev is 12.2.1.2.
I have VO based on EO with Attribute ConfirmFlag with default value "Y" - means yes
<ViewAttribute
Name="ConfirmFlag"
IsNotNull="true"
PrecisionRule="true"
EntityAttrName="ConfirmFlag"
EntityUsage="P13PrivateMotivation"
AliasName="CONFIRM\_FLAG"
DefaultValue="Y"/>
and on the page it presented as selectBooleanCheckbox in table row

<af:selectBooleanCheckbox value="#{row.bindings.ConfirmFlag.inputValue}"
label="#{row.bindings.ConfirmFlag.label}"
shortDesc="#{bindings.P13PrivateMotivationView1.hints.ConfirmFlag.tooltip}"
id="sbc1" autoSubmit="true"/>
My pageDef
<button IterBinding="P13PrivateMotivationView1Iterator" id="ConfirmFlag" DTSupportsMRU="false" StaticList="true">
\<AttrNames>
\<Item Value="ConfirmFlag"/>
\</AttrNames>
\<ValueList>
\<Item Value="Y"/>
\<Item Value="N"/>
\</ValueList>
\</button>
When I create new row on the page selectBooleanCheckbox unchecked but ConfirmFlag = "Y".

If I will redeploy my app I will see selectBooleanCheckbox checked.

Why after creating new row with ConfirmFlag = "Y" selectBooleanCheckbox is unchecked?
Thanks