Apr 27, 2014

Like operator in AX





static void Job1(Args _args)
{
    TrvExpTrans trvexp;
    ;
    while select trvexp where  trvexp.Description like "Ai??are"
    {
        info(trvexp.ExpNumber + "------" + trvexp.Description);
    } 


}

No comments: