Dear christelle m ,
Thank you for quick reply
page 50106 CutBackProcessWorksheetPage
{
PageType = Worksheet;
ApplicationArea = All;
UsageCategory = Administration;
SourceTable = CutBackProcessTable;
Caption = 'Cutback Process';
layout
{
area(Content)
{
field("Batch Name"; "Batch Name")
{
ApplicationArea = All;
}
field("PostingDate"; "Posting Date")
{
ApplicationArea = All;
}
repeater(CutbackProcess)
{
field("Posting Date"; "Posting Date")
{
ApplicationArea = All;
}
field("Account Category"; "Account Category")
{
ApplicationArea = All;
}
field("Bill Code"; "Bill Code")
{
ApplicationArea = All;
}
field("Partner"; "Partner")
{
ApplicationArea = All;
}
field("License"; "License")
{
ApplicationArea = All;
}
field("Percentage"; "Percentage")
{
ApplicationArea = All;
}
field("Account"; "Account")
{
ApplicationArea = All;
}
field("Account Description"; "Account Description")
{
ApplicationArea = All;
}
field("AFE"; "AFE")
{
ApplicationArea = All;
}
field("Amount"; "Amount")
{
ApplicationArea = All;
}
field("Posted"; "Posted")
{
ApplicationArea = All;
}
}
}
}
actions
{
area(Processing)
{
group(Setup)
{
action("Calculate")
{
Caption = 'Calculate';
Promoted = true;
PromotedCategory = Process;
PromotedOnly = true;
PromotedIsBig = true;
// RunObject = page "CutBackBatchPage";
ApplicationArea = All;
trigger OnAction()
begin
// Message('Please select the batch name ');
end;
}
action("Post")
{
Caption = 'Post';
Promoted = true;
PromotedCategory = Process;
PromotedOnly = true;
PromotedIsBig = true;
ApplicationArea = All;
trigger OnAction()
begin
end;
}
action("Print")
{
Caption = 'Print';
Promoted = true;
PromotedCategory = Process;
PromotedOnly = true;
PromotedIsBig = true;
ApplicationArea = All;
trigger OnAction()
begin
end;
}
action("Post and Print")
{
Caption = 'Post and Print';
Promoted = true;
PromotedCategory = Process;
PromotedOnly = true;
PromotedIsBig = true;
ApplicationArea = All;
trigger OnAction()
begin
end;
}
action("fetch")-----------------------------------------here am using fetch button where i can use your code
{
caption = 'Fetch';
Promoted = true;
PromotedCategory = Process;
PromotedOnly = true;
PromotedIsBig = true;
ApplicationArea = All;
trigger OnAction()
begin
end;
}
}
}
}
}