Hi
What the below code will do
PLine.SETFILTER("Contract No.",'%1',"No.");
PLine1.COPY(PLine);
Thanks
*This post is locked for comments
Hi
What the below code will do
PLine.SETFILTER("Contract No.",'%1',"No.");
PLine1.COPY(PLine);
Thanks
*This post is locked for comments
PLine.SETFILTER("Contract No.",'%1',"No.");
- This will filter Contract No of Pline with NO.
PLine1.COPY(PLine);
- THis will copy all filtered record of Pline that you did above in the first line to Pline1.
Hi,
PLine.SETFILTER("Contract No.",'%1',"No.");
The above line will filter out and select all the records where 'Contract No.' of your PLine table is equal to 'No.' of the other table.
PLine1.COPY(PLine);
The above line will copy records of PLine table which are filtered out using setfilter and place them in the 'PLine1' table.
Hi Jsshivalik,
Check this article on msdn: [View:https://msdn.microsoft.com/en-us/library/dd338735(v=nav.90).aspx]
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,269 Super User 2024 Season 2
Martin Dráb 230,198 Most Valuable Professional
nmaenpaa 101,156