On BC Instance, set the web client address in the Client Services>Web Client Base URL
It should look like
http://demomachine01:8080/CRONUS/?company=CRONUS&dc=0
On BC Instance, set the web client address in the Client Services>Web Client Base URL
It should look like
http://demomachine01:8080/CRONUS/?company=CRONUS&dc=0
R7318
Line 34 is hardcoded to Pick List Report. Change this to your custom Report.
Add this global
Name DataType Subtype Length
WhseActPrint Codeunit Warehouse Document-Print
Change this code
IF NOT IsHandled THEN
REPORT.RUN(REPORT::"Picking List",FALSE,FALSE,WhseActivHeader);
END;
To this code
IF NOT IsHandled THEN
//REPORT.RUN(REPORT::"Picking List",FALSE,FALSE,WhseActivHeader); MOD
WhseActPrint.PrintPickHeader(WhseActivHeader); //MOD
END;
SELECT DISTINCT GLE2.[G_L Account No_], GLE.[G_L Account No_] AS BalAccount, GLE.[Source Code]
FROM dbo.[CRONUS$G_L Entry] AS GLE INNER JOIN
(SELECT DISTINCT [G_L Account No_], [Document No_]
FROM dbo.[CRONUS$G_L Entry]) AS GLE2 ON GLE.[Document No_] = GLE2.[Document No_]
GROUP BY GLE2.[G_L Account No_], GLE.[G_L Account No_], GLE.[Source Code]
HAVING (GLE2.[G_L Account No_] IN (N'5420', N'5410')) AND (NOT (GLE.[Source Code] IN (N'REVERSAL', N'PAYMENTJNL', N'CASHRECJNL')))