web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

How to edit LedgerJournalTrans posted line custom field in x++?

(0) ShareShare
ReportReport
Posted on by 1,813

Hii,

We have a custom field for PurchID in our LedgerJournalTrans table and displayed on LedgerJournalTransVendPaym Form. This customization is working ok.

This customization is up to LedgerJournalTrans level only.

Now we want to update PurchID for already posted payment journals. I can do it from SQL update statement successfully, but need to do it in a form on button click in x++;

When I try to update from Form button click in x++ it gives following error.

"Cannot edit a record in Journal lines (LedgerJournalTrans). Journal batch number: VVX-002658, VPJ-000234.

The SQL database has issued an error."

        while select forupdate ledgerJournalTrans where ledgerJournalTrans.JournalNum == journalNum && ledgerJournalTrans.Voucher == voucher
        {
            if(ledgerJournalTrans)
            {
            ttsbegin;
                ledgerJournalTrans.PurchId = purchId;
                ledgerJournalTrans.PurchNote = poNote;
                ledgerJournalTrans.update();
            ttscommit;
            }
        }


Please guide, how to update  ledgerJournalTrans line custom field only.

Thanks,

*This post is locked for comments

I have the same question (0)
  • Verified answer
    Chaitanya Golla Profile Picture
    17,225 on at

    Hi,

    Please try the following code.

    while select ledgerJournalTrans where ledgerJournalTrans.JournalNum == journalNum && ledgerJournalTrans.Voucher == voucher

           {            

                   ledgerJournalTrans.reread();

                   ttsbegin;

                   ledgerJournalTrans.selectforupdate(true);

                   ledgerJournalTrans.PurchId = purchId;

                   ledgerJournalTrans.PurchNote = poNote;

                   ledgerJournalTrans.update();

                   ttscommit;          

           }

    Thanks,

    Chaitanya Golla

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Joris dG Profile Picture

Joris dG 5

#2
Andrew Jones a1x Profile Picture

Andrew Jones a1x 2

#3
Basit Profile Picture

Basit 1

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans