Skip to main content
Answer

Souce column in AP641000 Check with Remiitance

  • July 21, 2025
  • 2 replies
  • 39 views

dgodsill97
Varsity I
Forum|alt.badge.img+3

Any know where this column value comes from?  It is used on Visible settings in the remittance area. When I this field is printed in the Balance Due column,  The DAC is APPrintCheckDetailWithAdjdDoc and there are no incoming or outgoing references.  Looking at the data the only value is A.

wnen not I this field is printed in the Balance Due column

 

 

 

Best answer by lauraj46

Hi ​@dgodsill97 ,

The DAC APPrintCheckDetailWithAdjdDoc is a projection, and the Source field is derived from APPrintCheckDetail.source.  

#region

Source public abstract class source : PX.Data.BQL.BqlString.Field<source> { }

[PXDBString(1, IsFixed = true, IsKey = true, BqlField = typeof(APPrintCheckDetail.source))]

public string Source { get; set; }

#endregion

It might require some data exploration to figure out what the values represent.  See post below:

Hope this helps!

Laura

2 replies

lauraj46
Captain II
Forum|alt.badge.img+8
  • Captain II
  • Answer
  • July 22, 2025

Hi ​@dgodsill97 ,

The DAC APPrintCheckDetailWithAdjdDoc is a projection, and the Source field is derived from APPrintCheckDetail.source.  

#region

Source public abstract class source : PX.Data.BQL.BqlString.Field<source> { }

[PXDBString(1, IsFixed = true, IsKey = true, BqlField = typeof(APPrintCheckDetail.source))]

public string Source { get; set; }

#endregion

It might require some data exploration to figure out what the values represent.  See post below:

Hope this helps!

Laura


dgodsill97
Varsity I
Forum|alt.badge.img+3
  • Author
  • Varsity I
  • July 22, 2025

Thanks.