IsStandardSearchEnabled function
Syntax
IsStandardSearchEnabled()
Description
Use the IsStandardSearchEnabled function to return a Boolean value indicating whether the search type is set to Standard for the current component.
Important:
Use this function within fluid applications only.
Parameters
None.
Returns
A Boolean value.
Example
If (IsMDSearchEnabled() Or
IsStandardSearchEnabled()) Then
PT_WORK.PT_BUTTON_SUBMIT.Visible = False;
/* Some additional processing */
Else
PT_WORK.PT_BUTTON_BACKS.Visible = False;
If &tfld <> Null Then
&tfld.Visible = False;
End-If;
End-If;
Related Topics