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
    }



  • 相关阅读:
    程序猿节日快乐!
    Haxe UI框架StablexUI的使用备忘与心得(一)
    sudo fdisk -l
    Win7下硬盘安装fedora17
    盎司
    arm-linux工具
    GSM900TCP/UDP连接
    STC51几种简单的延时函数
    STC51六中中断配置点亮一个LED
    LCD1602小程序
  • 原文地址:https://www.cnblogs.com/Fandyx/p/1908268.html
Copyright © 2011-2022 走看看