Trying to add Qty. to Ship and its label from Sales Line Table 37 to Subform - line on Sales Order Conf. Report 1305 Word with the code below. After publishing the report extention I go to report ayout in BC and copy report 1305 and export this - but Qty. to Ship fields have not been transferred - I assume the fields already exist in Sales Line table 37. Would appreciate some help
reportextension 50100 SalesLine1305Ext extends "Standard Sales - Order Conf."
{
dataset
{
add(Line)
{
column(Qty__to_Ship; "Qty. to Ship")
{
}
column(Qty__to_Ship_Lbl; Line.FieldCaption("Qty. to Ship"))
{
}
}
}
var
myInt: Integer;