Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
SerhiiKorniichuk1 opened this issue Mar 15, 2024 · 1 comment
Labels
request-for-external Request for exposing a function for extension development ships-in-future-update Fix ships in a future update

Comments

@SerhiiKorniichuk1
Copy link

SerhiiKorniichuk1 commented Mar 15, 2024

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

@AleksandricMarko AleksandricMarko added the request-for-external Request for exposing a function for extension development label Mar 15, 2024
@JesperSchulz JesperSchulz added the ships-in-future-update Fix ships in a future update label Apr 17, 2024
@JesperSchulz
Copy link
Contributor

Thanks for reporting this. We agree, and we’ll publish a fix asap, either in an update for the current version or in the next major release. Please do not reply to this, as we do not monitor closed issues. If you have follow-up questions or requests, please create a new issue where you reference this one.

Build ID: 18615.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
request-for-external Request for exposing a function for extension development ships-in-future-update Fix ships in a future update
Projects
None yet
Development

No branches or pull requests

3 participants