Aug 28, 2016

Get the common table field's value in X++ (X++로 Common 테이블 필드값 받아오기)

static void GetFieldValue(Common                  _Common)
{
    Common                  _SelectCommon = _Common;
   
   //Return field's value
    info(strFmt("%1",_Common.getFieldValue("Field name")));
}

No comments:

Post a Comment