Notifications
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.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 2,785
Jainam M. Kothari 1,007 Super User 2025 Season 2
YUN ZHU 948 Super User 2025 Season 2