For our packing slip I want to have 2 designs. 1 default design and 1 other
design for a specific customer. The thing that differs from the two design is
the header with the company logo. For a specific customer I print the packing
slip with his logo.
Can anybody tell me whats the best way to do this? I searched and saw that
you can have multiple designs in a report, but how can I tell ax to choose
always design 1 except for that customer.
Submitted via EggHeadCafe - Software Developer Portal of Choice
ObjectDumper LINQ To Export Collection Via .NET Reflection
http://www.eggheadcafe.com/tutorials/aspnet/21737599-5a63-4672-a32c-a36cca282a3f/objectdumper-linq-to-export-collection-via-net-reflection.aspx
Gr,
"xie Jimmy" wrote:
> .
>
Here's one way to do it:
1) Create a copy of the SalesPackingSlip Report.
2) Create a new output menu item that calls the new report.
3) Modify CustPackingSlipJour.printJournal method to call the second report
based off of the current company you are in:
salesPackingSlipMenu = new
MenuFunction(menuitemoutputstr(salesPackingSlip),MenuItemType::Output);
if(curext() == 'xxx')
{
salesPackingSlipMenu = new
MenuFunction(menuitemoutputstr(SalesPackingSlip2),MenuItemType::Output);
}
...
...
...