I Make New Scene I need List Subitem Input type , I make new DAC. I try to check the Subitem but no value if I press f3 Any . why is this even though the table subitem has a value ?
This My new Screen

Thi table
My Sub item many value

This My DAC Code
using PX.Data;
using PX.Objects.CS;
using PX.Objects.IN;
using PX.Objects.PO;
using System;
namespace Car
{
[Serializable]
[PXCacheName("DetailDAC")]
public class DetailDAC: IBqlTable
{
#region DocumentID
[PXDBString(30, IsUnicode = true, InputMask = "")]
[PXUIField(DisplayName = "Document ID")]
public virtual string DocumentID { get; set; }
public abstract class documentID : PX.Data.BQL.BqlString.Field<documentID> { }
#endregion
#region InventoryID
[PXDBInt]
[PXUIField(DisplayName = "Inventory ID")]
[PXSelector(
typeof(Search<InventoryItem.inventoryID>),
typeof(InventoryItem.inventoryCD),
typeof(InventoryItem.descr),
SubstituteKey = typeof(InventoryItem.inventoryCD),
DescriptionField = typeof(InventoryItem.descr)
)]
public virtual int? InventoryID { get; set; }
public abstract class inventoryID : PX.Data.BQL.BqlString.Field<inventoryID> { }
#endregion
#region SubItemID
[PXDBInt]
[PXUIField(DisplayName = "Sub Item")]
[SubItem(
typeof(INSubItem.subItemID))]
public abstract class subItemID : PX.Data.BQL.BqlInt.Field<subItemID> { }
public virtual int? SubItemID { get; set; }
#endregion
}