custtable c1,c2;
dicttable d = new dicttable(tablenum(custtable));
dictfield f;
int i;
boolean areTheSame = true;
;
 
c1 = custtable::find('4001');
c2 = custtable::find('4001');
 
for(i=1;i<=d.fieldCnt();i++)
{
       f = new dictfield(tablenum(custtable),d.fieldCnt2Id(i));
       if (f.isSystem()==false)
       {
              if (c1.(d.fieldCnt2Id(i))!=c2.(d.fieldCnt2Id(i)))
              {
                     areTheSame = false;
                     break;
              }
       }
}

相关文章:

  • 2021-09-30
  • 2022-02-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2021-11-18
猜你喜欢
  • 2021-11-22
  • 2021-11-28
  • 2022-01-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案