corrFlagGet Function [AX 2012]

Updated: November 18, 2010

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

Retrieves the state of the correction flag for a real number.


int corrFlagGet(real arg)

Parameter

Description

arg

The flag for which to retrieve the state.

A non-zero value if the flag is set; zero if it is cleared.

The following example displays 1.

static void corrFlagGetExample(Args _args)
{
    real rr;
 
    rr = corrFlagSet(0.36,2);
    print(corrFlagGet(rr));
}

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).

Community Additions

ADD
Show: