1

Hello, please, change these var to protected var:

1.Report 1309 "Standard Sales - Return Rcpt."

Current:

var

ShipToAddr: array[8] of Text[100];

Should be:

protected var

ShipToAddr: array[8] of Text[100];

2.Report 6636 "Purchase - Return Shipment"

Current:

var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

Should be:

protected var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

3.Report 407 "Purchase - Credit Memo"

Current:

var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

Should be:

protected var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

4.Report 408 "Purchase - Receipt"

Current:

var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

Should be:

protected var

ShipToAddr: array[8] of Text[100];

CompanyInfo: Record "Company Information";

Additional context

This is necessary to enable the ability to set parameters in procedure

GetCompanyAddr(... var CompanyInfo: Record "Company Information", var CompanyAddr: array[8] of Text[100]) to improve the functionality required to perform tasks.

Category: Development
STATUS DETAILS
Needs Votes
Ideas Administrator

Thank you for this suggestion! Currently this is not on our roadmap. We are tracking this idea and if it gathers more votes and comments we will consider it in the future. Best regards, Business Central Team