Here I am getting character on note while copying it from sales order to Enquiry Page
How can remove that?
Here is my conversion code:
procedure GetWorkDescription(SourceRecordLink: Record "Record Link") Note: Text
var
MyInStream: InStream;
begin
Clear(Note);
SourceRecordLink.Calcfields(Note);
If SourceRecordLink.Note.HasValue() then begin
SourceRecordLink.Note.CreateInStream(MyInStream);
MyInStream.Read(Note);
end;
end;
Is anything can be done here so that I can remove that symbol?
Please help very urgent.
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,228 Super User 2024 Season 2
Martin Dráb 230,056 Most Valuable Professional
nmaenpaa 101,156