Change protection level of variables ShipToAddr and CompanyInfo in Report 1309 "Standard Sales - Return Rcpt.", Report 6636 "Purchase - Return Shipment", Report 407 "Purchase - Credit Memo", Report 408 "Purchase - Receipt" #26118
Labels
request-for-external
Request for exposing a function for extension development
ships-in-future-update
Fix ships in a future update
Describe the request
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.
Internal work item: AB#507529
The text was updated successfully, but these errors were encountered: