Announcements
No record found.
pageextension 50100 "Source Page Ext" extends "Source Page" { actions { addafter(ActionItems) { action(InsertRecordsAction) { ApplicationArea = All; trigger OnAction() begin InsertRecordsFunction(); end; } { Image = InsertRecords; Caption = 'Insert Records'; } } } } codeunit 50100 "Source Page Codeunit" { procedure InsertRecordsFunction() var SourcePageRecord: Record "Source Table"; DestinationPageRecord: Record "Destination Table"; begin SourcePageRecord.RESET; SourcePageRecord.SETRANGE("Field", 'FilterValue'); IF SourcePageRecord.FINDSET THEN BEGIN REPEAT DestinationPageRecord.INIT; DestinationPageRecord."Field" := SourcePageRecord."Field"; DestinationPageRecord.INSERT; UNTIL SourcePageRecord.NEXT = 0; END; end; }
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
Thanks to all of our 2025 Community Spotlight stars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 1,857 Super User 2026 Season 1
YUN ZHU 1,047 Super User 2026 Season 1
Dhiren Nagar 959 Super User 2026 Season 1