Hi Community
Do you know how to transfer the blob field from the job task to the job task archive using factbox?
Hi Community
Do you know how to transfer the blob field from the job task to the job task archive using factbox?
Hi Manuel,
What do you mean, using FactBox?
Hi Markborges, I use factbox to display my values from job task line to Job task archive. Something like this:
PageType = CardPart; //It will a part of application
SourceTable = “Sales Line Archive”; //seles the table where the field will searching and share will factbox
DataCaptionFields = “Document No.”, Description; //fields will afecting in long description
layout
{
area(Content) // select area where will the field appear
{
field(LongDescription; LongDescription)
{
ApplicationArea = Basic, Suite;
MultiLine = true; // multiline because is blod
ShowCaption = false;
ToolTip = 'Specifies the products or service being offered';
trigger OnValidate() //create a trigger into the field
begin
Rec.SetLongDescription(LongDescription); //rec long description
end;
trigger OnDrillDown()
begin
Page.RunModal(Page::"Arch. SQ Long Descr. FactBox", Rec);// runmodal the page long description //Create July 4 2024 ML
end;
}
}
}
trigger OnAfterGetRecord() //out side the field in the page create a tigger long description
begin
LongDescription := Rec.GetLongDescription(); //rec long description
end;
Procedure ClearItemLongDescription() //Create Dec 12 2023 ML to clear long description after deleted the line
begin
Clear(LongDescription);
end;
var
LongDescription: Text; //create variable longdescription type text