[Extensibillity Request] - page 99000765 "Routing Lines" - SetEditable
Nobody has claimed this yet.
- Dominant language
- AL
- Stars
- 683
- Forks
- 459
- Avg merge
- 3d 26m
- Merged PRs (30d)
- 633
Description
Why do you need this change?
Hello, would it be possible to remove local from this procedure so that we can reuse this procedure in page ext ?
procedure SetEditable()
begin
UnitCostPerEditable := Rec.Type = Enum::"Capacity Type Routing"::"Work Center";
end;
Describe the request
I need to have the local tag on this procedure removed so it is possible to use the procedure instead of duplicating it.
Before change:
local procedure SetEditable()
begin
UnitCostPerEditable := Rec.Type = Enum::"Capacity Type Routing"::"Work Center";
end;
}
After Change:
procedure SetEditable()
begin
UnitCostPerEditable := Rec.Type = Enum::"Capacity Type Routing"::"Work Center";
end;
}
Provide an implementation (optional)
- I will provide the implementation for this extensibility request
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Locate page 99000765, "Routing Lines," and inspect its SetEditable procedure. Confirm how the page extension should call it, remove the local visibility modifier, and verify that the procedure remains usable from the extension without duplicating the logic.
Written by the indexing model from the issue text.
Assessment
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 72/100