Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : Y/Om8zk4NrtJDbcwE6mU/I
Finance | Project Operations, Human Resources, ...
Suggested answer

Microsoft Dynamics GP doesn't return GLTransactionByKey and GLPostedTransactionByKey

Like (0) ShareShare
ReportReport
Posted on 5 Nov 2021 11:04:28 by 63

Hello Team,

I use the following method to receive the GL Transactions: GLTransactionList

Microsoft Dynamics GP
returns the Transaction list.

For example:

<GLTransactionSummary>
<Key>
 <JournalId>1543</JournalId>
<Date>2027-05-08T00:00:00</Date>
</Key>

Then, I use methods GLTransactionByKey and GLPostedTransactionByKey to receive details by transactions.
But, Microsoft Dynamics GP always returns the following error message:

<faultstring>Business object not found.</faultstring>

For the request, I use an ID that I received from Transaction List.

Could you clarify what is the reason that Microsoft Dynamics GP doesn't return the transaction?
Categories:
  • Kiril Genov (BasicPoint Software, Ltd.) Profile Picture
    5 on 03 Oct 2024 at 09:06:09
    Microsoft Dynamics GP doesn't return GLTransactionByKey and GLPostedTransactionByKey
    Just to add my case here.
     
    When I had to use GetGLTransactionByKey I used the following key, any other resulted in BusinessObjectNotFound error
                    GLTransactionKey key = new GLTransactionKey();
      key.JournalId = journalId;                 key.Date = transactionDate;
     
     

    When I had to use GetGLPostedTransactionByKey, I used the following key, any other resulted in BusinessObjectNotFound error:
                    GLTransactionPostedKey postedKey = new GLTransactionPostedKey();
      postedKey.JournalId = journalId; postedKey.RecurringTransactionSequence = 0; postedKey.FiscalYear = transactionDate.Year; postedKey.Date = transactionDate;
    Hope this helps!
  • Suggested answer
    Derek Albaugh Profile Picture
    on 05 Nov 2021 at 15:00:48
    RE: Microsoft Dynamics GP doesn't return GLTransactionByKey and GLPostedTransactionByKey

    My GetGLTransactionList, by default, returns a list of about 13 journal entries, all with a reference of 'Computer Checks', such as journal ID 3327 through 3339.

    Using the GetGLTransactionByKey method, it returns "Source Document: PMCHK" which is the source document value in the Financial > Transaction Entry window for this journal entry.

    Then, after I posted 3327, using the GetGLPostedTransactionByKey, I was able to get the return of "Reference: Computer Checks, posted by: sa.

    **NOTE: In this last method, I had to set the transactionPostedKey.RecurringTransactionSequence = value to 0, because this wasn't a recurring journal entry, otherwise I get the Business Object Not Found message.

    What you need to look at with these Web Services methods, is start with the sample code......in the case of the GetGLPostedTransactionByKey method, the sample code is only returning this:

    MessageBox.Show("Reference: " + transaction.Reference + "  Posted by: " + transaction.PostedBy);

    When you pull up the method, you'll see something like this under 'Return Value':

    Value                                                              Type                                  Description

    GetGLPostedTransactionByKeyResult         GLTransaction                    A GL transaction object.

    If you click on GLTransaction, you'll see a list of all the properties that can be returned by this method, to include the 'Referenced' and 'PostedBy' values that it shows by default.

    This is all that the method is able to return/display. There isn't any way to change that or modify it.

    You would have to create your own customization or call the SQL data directly through your code to get information other than what the Web Services methods are able to return. This seems to be true for a majority of the questions you're asking in regards to the Web Services methods.

    Thanks

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

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,374 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,532 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Product updates

Dynamics 365 release plans
Loading complete