I've added a requestpage section to my report module in my AL extension (see below) containing a Boolean field. It is displaying OK to the user as a slider control that they can switch on or off. My question is: How can I see this user selection value inside the .rdl report in MS Report Builder.
requestpage
{
layout
{
area(Content)
{
group(Options)
{
Caption = 'Options';
field("Show Detail"; gblnShowDetail)
{
ApplicationArea = Basic, Suite;
Caption = 'Show Detail';
ToolTip = 'Show Detail';
}
}
}
}
var
gblnShowDetail: Boolean;