zoukankan      html  css  js  c++  java
  • Resolve raise system red hand problem on the Open vendor transactions editing

    AP - > Vendor detail - > Functions - > Open transactions editing - > Is marked

    Problem description
    I am not able to select invoices on open transaction editing form of  Accounts Payable payment journal. its triggering error message "This transaction has been marked for settlement by another user"  with Red hand stop symbol for all vendors and for all transactions.

    Resolve as below,you can delete the record from SpecTrans

    wrote by Jimmy Dec. 16th 2010

     

    resolved Red hand
    static void Jimmy_ClearSpecTrans(Args _args)
    {
    SpecTrans SpecTrans,delSpecTrans;
    ;

    print tableid2name(
    212);//LedgerJournalTrans

    select firstonly SpecTrans
    where SpecTrans.RefTableId == tablenum(VendTransOpen)
    && SpecTrans.RefRecId == 5637193902;


    print SpecTrans.RecId;
    print tablenum(VendTransOpen);
    delete_from delSpecTrans
    where delSpecTrans.RecId == SpecTrans.RecId
    && delSpecTrans.RefTableId == SpecTrans.TableId
    && delSpecTrans.RefCompany == SpecTrans.dataAreaId;

    pause;
    // 5637190813
    }



  • 相关阅读:
    西瓜书的读书笔记
    Tensorflow-gpu在windows10上的安装(anaconda)
    php 设置报错等级
    PHP 类型比较表
    PHP中的定界符格式
    php进制转换函数
    php魔法常量
    php中双$$与多$$
    php引用传值
    CSS3过渡效果实现菜单划出效果
  • 原文地址:https://www.cnblogs.com/Fandyx/p/1908268.html
Copyright © 2011-2022 走看看