pageextension 50000 "XXX" extends "XXXX" { layout { movefirst(General;"Balance (LCY)") } }or you can create the field, and set a different name like:
pageextension 50000 "XXX" extends "XXXX" { layout { addfirst(General) { field("PREFIX-Balance (LCY)"; Rec."Balance (LCY)") { ApplicationArea = All; } } } }
Answers
or you can create the field, and set a different name like:
Both ways have Pros and Cons,
Moving base app fields:
Pros:
- Do not add more load to page
- Field is not display multiple time
- Page look cleaner
Cons:
- If MS remove the field from the page, your extension will break