Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics GP (Archived)

GP10 - How can we generate a list of Customer Notes

(0) ShareShare
ReportReport
Posted on by

Hello,

Is there a way to either generate a smartlist of customers who have notes on their customer card, or generate a list (smartlist or other) at least identifying which customers have notes?

We want to review the information in this field and looking for the best way.

Thank you for your suggestions.

Maria.

*This post is locked for comments

  • Mahmoud Saadi Profile Picture
    Mahmoud Saadi 32,738 on at
    RE: GP10 - How can we generate a list of Customer Notes

    You are most welcome Frandz

  • RE: GP10 - How can we generate a list of Customer Notes

    Awesome. Thank you very much !!

    (I wasn't sure which table the actual note was stored in).

  • Verified answer
    Mahmoud Saadi Profile Picture
    Mahmoud Saadi 32,738 on at
    RE: GP10 - How can we generate a list of Customer Notes

    Pretty simple and straight forward script can get you to this piece of information.

    -- The script below will retrieve the customers with notes only.  In case the customer doesn't have an associated note, it won't be retrieved by the script below.

    CREATE VIEW Customer_Notes AS
    SELECT  A.CUSTNMBR AS Customer_Number ,
            A.CUSTNAME AS Customer_Name ,
            A.CUSTCLAS AS Customer_Class ,
            A.STMTNAME AS Statement_Name ,
            A.SHRTNAME AS Short_Name ,
            A.ADDRESS1 AS Customer_Address ,
            A.COUNTRY AS Country ,
            A.CITY AS City ,
            ISNULL(CONVERT(VARCHAR(MAX),B.TXTFIELD), '') AS Note
    FROM    dbo.RM00101 AS A
            LEFT OUTER JOIN SY03900 AS B ON A.NOTEINDX = B.NOTEINDX
            WHERE ISNULL(CONVERT(VARCHAR(MAX),B.TXTFIELD), '') <> ''
    GO

    GRANT SELECT ON Customer_Notes TO DYNGRP

    Once you create the view, you can proceed either with the smart list builder, designer.

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

Daivat Vartak – Community Spotlight

We are honored to recognize Daivat Vartak as our March 2025 Community…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Kudos to the February 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... 292,516 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 231,407 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans