Hi
I tried to get to CustInvoiceLine data source in FreeTextInvoiceEntity, the top data source is CustInvoiceTable. I assume getBuffer() in DataEntityDataSourceRuntimeContext can only get to the top level data source, which is CustInvoiceTable in this case, how could I get to CustInvoiceLine so I can populate more vales using event?

public static void FreeTextInvoiceEntity_onMappedEntityToDataSource(Common _sender, DataEventArgs _eventArgs)
{
DataEntityContextEventArgs entityContextEventArgs = _eventArgs as DataEntityContextEventArgs;
DataEntityRuntimeContext entityCtx = entityContextEventArgs.parmEntityContext();
DataEntityDataSourceRuntimeContext dataSourceCtx = entityContextEventArgs.parmEntityDataSourceContext();
CustInvoiceTable custInvoiceTable = dataSourceCtx.getBuffer();
// How to get to CustInvoiceLine from here?????
}