|
Posted by Glenn Adams [MVP - Retail Mgmt on April 23, 2007, 12:28 pm
Please log in for more thread options
PurchaseOrder.Entry.SubDescription1 should work. Make sure you modify
the COLUMNHEADER for the TABLE these ROWs are included in. The column
header must have the same number of columns defined as the rows are
trying to fill, or the extra row entries will not display.
Glenn Adams
Tiber Creek Consulting
http://www.tibercreek.com glenn@tibercreek.com
----------------------------------------------
Please DO NOT respond to me directly but post all responses here in the
newsgroup so that all can share the information.
Chris Allsopp - Connaught House wrote:
> I'm trying to adjust our transfer received in print so that it includes the
> subdescription 1 on it. The problem is, that subdescription1 does not
> appear on the purchaseorder.entry table. If it were it would be easy. I
> guess i need to change the piece of the report shown below, where it says
> <FOR each = "PurchaseOrderEntry" but i don't know how.
>
> Help
> Chris
>
>
> <IF>
> <CONDITION> PurchaseOrder.Entries.Count > 0 </CONDITION>
> <THEN>
> <FOR each = "PurchaseOrderEntry">
> <ROW> PurchaseOrder.Entry.OrderNumber"|"
> PurchaseOrder.Entry.LookUpCode "|" PurchaseOrder.Entry.Description "|"
> PurchaseOrder.Entry.QuantityOrdered "|" PurchaseOrder.Entry.QuantityRTD "|"
> PurchaseOrder.Entry.QuantityReceived "|" PurchaseOrder.Entry.UnitPrice "|"
> PurchaseOrder.Entry.ExtendedPriceRTD "|"
> PurchaseOrder.Entry.ExtendedPriceReceived</ROW>
> </FOR>
> <EXTENDLASTROW> True </EXTENDLASTROW>
> <EXTENDLASTROWMARGIN> TotalsHeight </EXTENDLASTROWMARGIN>
> </THEN>
>
>
|