Monday, 23 November 2015

LIKE OPERATOR USE  IN AX2012
static void CON_likeoperator(Args _args)
{
    PurchLine           purchLine;
    PurchTable          PurchTable;

    //SELECT PurchLine where PurchLine.purchid like "0005%";
    while SELECT PurchId from  PurchLine where purchLine.PurchId like "*5*"
    {
        info(strFmt("%1",purchLine.PurchId));
    }
}

No comments:

Post a Comment