You are on page 1of 2

Community

(http://www.sap.com/)
(https://community.sap.com)

Ask a Question (https://answers.sap.com/questions/ask.html) Write a Blog Post (https://blogs.sap.com/wp-admin/post-new.php)

Not what you're looking for? Search community questions.

Former Member

SAP Notes date implemented report


Jan 06, 2011 at 10:41 AM | 1.2k Views
0

Hi Gurus,
Is there a way on how to quickly get the dates when the SAP Notes were implemented?

We have tried
1. Using note browser - however, we need to click each notes then to the note log and get the date.
2. Using query tool - BUT we don't know the table for note log, any idea?

ABAP Development (/tags/833755570260738661924709785639136)

Comment Alert Moderator Actions

Follow RSS Feed

Related questions
How to nd badi "Evaluate Ee Contrib" when running tcode PC00_M10_CALC_SIMU? (https://answers.sap.com/questions/9702461/how-to- nd-badi-evaluate-ee-contrib-when-running.html)
By Chandra Ralla ( https://people.sap.com/palanisamy.singaram) , Dec 06, 2012
Cannot create PR from ME51n. (https://answers.sap.com/questions/662662/cannot-create-pr-from-me51n.html)
By MANOJKUMAR KOTTI ( https://people.sap.com/manoj.kotti) , Oct 16, 2018
SAP notes 2604677 can't be implemented (https://answers.sap.com/questions/12910733/sap-notes-2604677-cant-be-implemented.html)
By Anita Ari n ( https://people.sap.com/anita.ari n) , Nov 20, 2019

4 Answers

Votes | Newest | Oldest

Raymond Giuseppi (/users/1270/raymondgiuseppi.html)


(/users/1270/raymondgiuseppi.html)
Jan 06, 2011 at 03:35 PM

SAP Notes implementations are transported, so


2 - Check table [E070A|http://www.sdn.sap.com/irj/scn/advancedsearch?query=e070a (http://www.sdn.sap.com/irj/scn/advancedsearch?
query=e070a)+] "Change & Transport System: Attributes of a Request" where ATTRIBUTE is "SAPNOTE" (development system)

- In E070-AS4DATE you will get the release date of the request.


- You can nd log of transport date via FM [TR_READ_GLOBAL_INFO_OF_REQUEST|http://www.sdn.sap.com/irj/scn/advancedsearch?
query=tr_read_global_info_of_request (http://www.sdn.sap.com/irj/scn/advancedsearch?query=tr_read_global_info_of_request)+] (quality and
productive systems)
SNOTE has some tables to manage its log and process, check tables
- CWBNTSTXT Note Short Text
- CWBNTHEAD Header Table for Notes in Customer Systems
- CWBNTCUST Customer Attributes for a Note
- CWBNTMSG SAP Notes: Message Log (look SCWN message class to nd suitable messages to track)
Also check FM like SCWB_NOTE_READ
Also don't forget that a Note can be deimplemented, and some notes contain only manual implementation task...
Regards,
Raymond
Comment Alert Moderator Share
1 Comment

Shekhar Gupta (/users/570405/shekhargupta3.html)

Oct 07, 2013 at 06:52 AM (/comments/10337051/view.html)


Thanks Raymond.
This information turned very useful.
Regards
shekhar

Like 0 Share Alert Moderator

Thomas Zloch (/users/3144/thomaszloch.html)


(/users/3144/thomaszloch.html)
Jan 06, 2011 at 12:30 PM

I did not nd anything suitable in the CWBN* tables, the closest match I think is table SMODILOG, where you can nd the note numbers in column
1 MOD_NAME and a timestamp of the modi cation.
There is only entries in SMODILOG when development objects have been changed by the note implementation, and there can be many entries for
a single note.
Thomas
Comment Alert Moderator Share

Former Member

Jan 06, 2011 at 12:49 PM

Check the below table


0 CWBNTMSG
Prabhudas
Comment Alert Moderator Share

Former Member

Apr 12, 2016 at 10:42 PM

I was searching for a way to nd which notes have been implemented ordered by date and based on the helpful information provided by Raymond
0 I put the following SQL statement together:
select ea.REFERENCE, e.AS4DATE, n.STEXT
FROM SAPSR3.E070 e JOIN SAPSR3.E070A ea ON e.TRKORR = ea.TRKORR
JOIN SAPSR3.CWBNTSTXT n ON n.NUMM = ea.REFERENCE
WHERE ea.ATTRIBUTE = 'SAPNOTE'
ORDER BY e.AS4DATE
Works on my Oracle and ASE test systems, for IBM the schema owner has to changed.
Sebastian
Comment Alert Moderator Share

Your answer
Before answering

You should only submit an answer when you are proposing a solution to the poster's problem. If you want the poster to clarify the question or provide more information, please
leave a comment instead, requesting additional details. When answering, please include speci cs, such as step-by-step instructions, context for the solution, and links to useful
resources. Also, please make sure that you answer complies with our Rules of Engagement.

Rules of Engagement (https://www.sap.com/community/resources/rules-of-engagement.html)

Please provide a distinct answer and use the comment option for clarifying purposes.

You might also like