Hi experts,
My customer have very strange reqiremement that whenever he open document page i.e customer card,Item card,Sales/Purchase invoice, it should always open in read-only mode.
unless he click on standard button to make that editable .
what do you guys think is it possible ???
Thanks for you interest
Hi, you can just use new Permission Exclusion (Exclude in Permission Set) feature.
Or The page mode that the page was opened in (Editable of the page)
Hope this helps as well.
Thanks.
ZHU
Hi,
This is in built feature. For this you should go for customization solution.
Regards
Amit Sharma
You can not fulfill this request without doing customization.
This is a typical request from a new BC customer. And in my experience they will stop asking for this once they get used to the system.
hi
I believe that the customer always accesses the various Cards from a List: e.g. Customer List - > Customer CArd
and in the list you have the option to view the card in view or Modify mode.
if you try to launch the page directly in the browser, e.g. by pasting the link:
businesscentral.dynamics.com/.../YOUENVIROMENT
you will see that the page is not editable:
the only alternative is to apply customisation as advised above
check my answer if it helped you, thanks
DAniele
Also this is still not working
currpage.editable := true;
currpage.update;
Customer requrements was to use standard edit action (picture attached above). they dont want custom action.
Then you can provide a button and on that button's OnAction trigger please do
currpage.editable := true;
currpage.update;
You are right it works but it makes page non-editable permanently. we can't change it back to editable.
Hi,
you can try this if it works for you.
trigger OnAfterGetRecord()
begin
CurrPage.Editable := false;
end;
André Arnaud de Cal...
291,969
Super User 2025 Season 1
Martin Dráb
230,842
Most Valuable Professional
nmaenpaa
101,156