could you tell me what these code mean??thanks.

AndyPengAndyPeng Member Posts: 10
edited 2006-04-28 in Dynamics AX
#macrolib.AviFiles

#if.never
#define.CurrentVersion(1)
#define.version1(1)
#localmacro.CurrentList

accountID,
chequeNum,
transDate
#endmacro
#endif
Andy.Peng
Best Regard!

Comments

  • Kossykh_ArtyomKossykh_Artyom Member Posts: 4
    This code is macro functions of X++

    //Loads a macro library AOT-Macros-AviFiles
    #macrolib.AviFiles

    //Tests if the macro variable 'never' has as given value. Includes the //statements between #IF and #ENDIF

    #if.never

    //This statement defines a macro variables 'CurrentVersion' and 'version', //which can be used as a constant or to make macros perform differently //according to the macro variable value.
    #define.CurrentVersion(1)
    #define.version(1)

    //Declares a local macro (header) CurrentList.


    #localmacro.CurrentList

    accountID,
    chequeNum,
    transDate
    #endmacro

    #endif
Sign In or Register to comment.