Hello all,
I wanted to ask how I can get ship to details on Sales Pro Forma Report.
I was trying to duplicate the code from the base code using Format Address Code unit, I think I am doing something wrong as it is not working.
Can you please tell me a better way to get Ship-To Details onto the report.
reportextension 50100 ProformaInvExt extends /Standard Sales - Pro Forma Inv/
{
dataset
{
add(Header)
{
column(ShipToAddress1; ShipToAddr[1])
{
}
column(ShipToAddress2; ShipToAddr[2])
{
}
column(ShipToAddress3; ShipToAddr[3])
{
}
column(ShipToAddress4; ShipToAddr[4])
{
}
column(ShipToAddress5; ShipToAddr[5])
{
}
column(ShipToAddress6; ShipToAddr[6])
{
}
column(ShipToAddress7; ShipToAddr[7])
{
}
column(ShipToAddress8; ShipToAddr[8])
{
}
}
}
var
ShipToAddr: array[8] of Text[100];
ShowShippingAddr: Boolean;
trigger OnPreReport()
var
FormatAddress: Codeunit /Format Address/;
begin
ShowShippingAddr := FormatAddress2.SalesHeaderShipTo(ShipToAddr, CustomerAddress, Header);
end;