Summary for this thread:
1. Install SP or hotfix roll up ?
Or:
2. You need to change in GeneratePayments() of class: VendOutPaym_NLClieOp03:
   queryRun.reset();
        while (queryRun.next())
        {
            if (batchSerialNumber <  9999) // Max. number of batches
            {
                ledgerJournalTrans = queryRun.get(tablenum(LedgerJournalTrans));
/*                if (!this.parmBankAccountID()
                    ||( ledgerJournalTrans.OffsetAccount == this.parmBankAccountID()
                    && ledgerJournalTrans.OffsetAccountType == LedgerJournalACType::Bank))
  */
                 if (!this.parmBankAccountID()
                    || this.isOffsetAccountValid(ledgerJournalTrans))
                {
                    if (!ledgerJournalTrans.PaymSpec)
                    {
                        checkFailed(strfmt("@SYS54965", ledgerJournalTrans.Voucher,ledgerJournalTrans.PaymMode));
                        throw error("@SYS18447");
                    }
                    vendOutPaymRecord = CustVendOutPaymRecord::construct(ledgerJournalTrans.PaymMode,
You cannot compile this class in user layer. I believe you need developer license in you environment (Nice for MS and partners: NOT for customers). Work around for license policy:
I created an export project in my dev with full dev license and imported the file in my acceptance and then imported it after testing to production.
Thank you Dennis for your kind help in resolving this matter.
J.
P.s. search gives also class 'CustOutPaym_NLClieOp03' which looks like a copy (OO design ???). This bug is suspect to multiple places in code due to bad OO design.
===Hi,
I have filled a payment journal with payment which must be done. I notice next:
Suggestions AX development team:
1. Invoice number clearly visible in the sublines of 'create payment proposal' so that selection is easier by invoice.
2. I wonder if my vendor account no and invoice can be generated automatically to the payment text of the bank ?
3. Bank account nummer is set to a bank account, but the number does not show up in the payment overview
However, I am not able to create a Clieop file which can be uploaded to my bank. It says: 0 records found. I toggles Payment Status to 'none' or 'sent', but still empty. What I also noted is that no bank account number and payment id are filled in the Payments overview. Is that the problem maybe?
Any help appreciated.
J.