‎2009 Nov 10 7:07 AM
Dear all
we are working a lot with material classification. Now we start to have problem with mass extraction of those data. I try to find a changedate for classification modification, but without success.
Does anybody know if there is this information somewhere?
thank you
Herbert
‎2009 Nov 10 7:50 AM
Have you already tried the tables for change documents: CDHDR and CDPOS? That's all I can come up with.
‎2009 Nov 10 7:50 AM
Have you already tried the tables for change documents: CDHDR and CDPOS? That's all I can come up with.
‎2009 Nov 10 12:52 PM
I can't find anything in this tables. Do I need to activate something?
‎2009 Nov 10 1:05 PM
Hi,
Check this FM:
CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
EXPORTING
* ARCHIVE_HANDLE = 0
date_of_change = date
objectclass = p_class
objectid = p_objid
* TIME_OF_CHANGE = '000000'
username = p_uname
local_time = p_time
* date_until = '99991231'
* time_until = '235959'
TABLES
i_cdhdr = lt_cdhdr
EXCEPTIONS
no_position_found = 1
wrong_access_to_archive = 2
time_zone_conversion_error = 3
OTHERS = 4
.
you will get the change date in variable "date".
Regards,
Pankaj