Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Changedate information on Classification

Former Member
0 Likes
569

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

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
532

Have you already tried the tables for change documents: CDHDR and CDPOS? That's all I can come up with.

3 REPLIES 3
Read only

Sm1tje
Active Contributor
0 Likes
533

Have you already tried the tables for change documents: CDHDR and CDPOS? That's all I can come up with.

Read only

Former Member
0 Likes
532

I can't find anything in this tables. Do I need to activate something?

Read only

Former Member
0 Likes
532

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