microsoft / microsoft/BCApps

[Extensibillity Request] - page 99000765 "Routing Lines" - SetEditable

Open Beginner friendly
#11,124 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Approved ext-ready-to-implement request-for-external Team: SCM
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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.