IsMDRequest function

Syntax

IsMDRequest()

Description

Use the IsMDRequest function to return a Boolean value indicating whether the request was initiated by a component from within the master/detail wrapper.

Important:

Use this function within fluid applications only.

Parameters

None.

Returns

A Boolean value.

Example

If (IsMDRequest() Or
      IsMDComponent()) Then 
   /* Some processing */
End-If;