RunBase.canSwapBetweenCS Method [AX 2012]

Controls whether a calledFrom class that is instantiated on the server should have its prompt executed on the client.

Syntax

protected boolean canSwapBetweenCS()

Run On

Called

Remarks

If you do not want a RunBase object swapped to the client, override this method and return false.

Examples

protected boolean canSwapBetweenCS() 
{ 
    return false; 
}

See Also

RunBase Class

RunBase.prompt Method