Plant code like with CDHDR and CDPOS

Hi Expert
I have created a report to see the changes made for the following document from CDHDR and CDPOS tables and cluster respectively
I want to know where I can find the Plant code in these above tables and if so how can i link with the above tables
I need to display the report with range by plant code, document no, udate and parameter username
regards

hi,
check this code
TABLES : MARC.
DATA :BEGIN OF GI_MARC OCCURS 0,
      MATNR LIKE MARC-MATNR,
      WERKS LIKE MARC-WERKS,
      DISPO LIKE MARC-DISPO,
      END OF GI_MARC.
DATA : CHAR TYPE I,
       COUNT TYPE I,
       VAR TYPE I.
DATA : BEGIN OF GI_FINAL OCCURS 2000,
       MATNR LIKE MARC-MATNR,
       DISPO LIKE MARC-DISPO,
       USERNAME LIKE CDHDR-USERNAME,
       UDATE LIKE CDHDR-UDATE,
       UTIME LIKE CDHDR-UTIME,
       TCODE LIKE CDHDR-TCODE,
       TABNAME LIKE CDPOS-TABNAME,
       TABKEY  LIKE CDPOS-TABKEY,
       FNAME  LIKE CDPOS-FNAME,
       VALUE_NEW  LIKE CDPOS-VALUE_NEW,
       VALUE_OLD   LIKE CDPOS-VALUE_OLD,
       CHANGENR LIKE CDHDR-CHANGENR,
       END OF GI_FINAL.
DATA : MATNR LIKE MARC-MATNR,
       DISPO LIKE MARC-DISPO,
       USERNAME1 LIKE CDHDR-USERNAME,
       UDATE1 LIKE CDHDR-UDATE,
       UTIME LIKE CDHDR-UTIME,
       TCODE LIKE CDHDR-TCODE,
       CHANGENR LIKE CDHDR-CHANGENR.
DATA : GI_CDHDR LIKE CDHDR OCCURS 0 WITH HEADER LINE.
DATA : GI_CDPOS LIKE CDPOS OCCURS 0 WITH HEADER LINE.
DATA : OBJECTCLAS LIKE CDHDR-OBJECTCLAS VALUE 'MATERIAL',
       OBJECTID LIKE CDHDR-OBJECTID,
       USERNAME LIKE CDHDR-USERNAME VALUE 'RSS-SPE',
       UDATE LIKE CDHDR-UDATE VALUE '20070101',
       CHANGE_IND LIKE CDHDR-CHANGE_IND VALUE 'U'.
type-pools: slis.
data: gt_slis_fcat type slis_t_fieldcat_alv.
data: gt_fieldcat type slis_t_fieldcat_alv.
*data: gt_fieldcatall type slis_t_fieldcat_alv.
data: g_repid like sy-repid.
data: gs_layout type slis_layout_alv.
gs_layout-zebra             = 'X'.
gs_layout-colwidth_optimize = 'X'.
SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-110.
SELECT-OPTIONS :  P_DISPO FOR MARC-DISPO.
SELECT-OPTIONS : RECORDS FOR CHAR.
SELECTION-SCREEN : END OF BLOCK B1.
START-OF-SELECTION.
perform process_data.
perform f_fieldcat_init using gt_fieldcat[].
perform alv_display tables gi_final using gt_fieldcat[].
form process_data.
  SELECT MATNR WERKS DISPO FROM MARC INTO TABLE GI_MARC
                            WHERE DISPO IN P_DISPO
                            AND WERKS = '1011'." Becoz we hav to chk the
the changes made in the material while extendin tht matrl frm 1011 to
*other plant.
  IF NOT GI_MARC[] IS INITIAL.
    IF NOT RECORDS-LOW IS INITIAL .
      IF NOT RECORDS-HIGH IS INITIAL.
        DESCRIBE TABLE GI_MARC LINES COUNT.
        IF RECORDS-HIGH < COUNT.
          DELETE GI_MARC FROM RECORDS-HIGH TO COUNT.
        ENDIF.
        IF RECORDS-LOW <> 1.
          IF RECORDS-LOW <> 0.
            DELETE GI_MARC FROM 1 TO RECORDS-LOW.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.
  ENDIF.
  LOOP AT GI_MARC.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
      EXPORTING
        INPUT              = GI_MARC-MATNR
     IMPORTING
       OUTPUT             = GI_MARC-MATNR
EXCEPTIONS
  LENGTH_ERROR       = 1
  OTHERS             = 2
    IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    OBJECTID = GI_MARC-MATNR .
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
      EXPORTING
  ARCHIVE_HANDLE                   = 0
       DATE_OF_CHANGE                   = UDATE
        OBJECTCLASS                      = OBJECTCLAS
        OBJECTID                         = OBJECTID
  TIME_OF_CHANGE                   = '000000'
       USERNAME                         = USERNAME
  LOCAL_TIME                       = ' '
  DATE_UNTIL                       = '99991231'
  TIME_UNTIL                       = '235959'
      TABLES
        I_CDHDR                          = GI_CDHDR
     EXCEPTIONS
       NO_POSITION_FOUND                = 1
       WRONG_ACCESS_TO_ARCHIVE          = 2
       TIME_ZONE_CONVERSION_ERROR       = 3
       OTHERS                           = 4
    IF SY-SUBRC <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'ARCH_ANA_PROGRESS_INDICATOR'
         EXPORTING
              TEXT = 'Processing'.
    IF NOT GI_CDHDR[] IS INITIAL.
      LOOP AT GI_CDHDR.
      MOVE GI_MARC-MATNR TO GI_FINAL-MATNR.
      MOVE GI_MARC-DISPO TO GI_FINAL-DISPO.
      MOVE GI_CDHDR-USERNAME TO GI_FINAL-USERNAME.
      MOVE GI_CDHDR-UDATE TO GI_FINAL-UDATE.
      MOVE GI_CDHDR-TCODE TO GI_FINAL-TCODE.
      MOVE GI_CDHDR-CHANGENR TO GI_FINAL-CHANGENR.
        VAR = 1.
        CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
          EXPORTING
            INPUT              = GI_FINAL-MATNR
            IMPORTING
           OUTPUT             = GI_FINAL-MATNR
         EXCEPTIONS
           LENGTH_ERROR       = 1
           OTHERS             = 2
        IF SY-SUBRC <> 0.
        ENDIF.
        OBJECTID = GI_FINAL-MATNR ."to ensure that objid is in proper
*format
        SELECT *
               FROM CDPOS
               INTO TABLE GI_CDPOS
          PACKAGE SIZE 100
          FOR ALL ENTRIES IN GI_cdhdr
               WHERE OBJECTID = OBJECTID
                 AND CHANGENR = GI_CDHDR-CHANGENR
                 AND OBJECTCLAS = OBJECTCLAS
                 AND CHNGIND =  CHANGE_IND." only those values will b
*takn which have been modified nd nt created
        IF SY-SUBRC = 0.
          LOOP AT GI_CDPOS.
      MOVE GI_MARC-MATNR TO GI_FINAL-MATNR.
      MOVE GI_MARC-DISPO TO GI_FINAL-DISPO.
      MOVE GI_CDHDR-USERNAME TO GI_FINAL-USERNAME.
      MOVE GI_CDHDR-UDATE TO GI_FINAL-UDATE.
      MOVE GI_CDHDR-TCODE TO GI_FINAL-TCODE.
      MOVE GI_CDHDR-CHANGENR TO GI_FINAL-CHANGENR.
            MOVE GI_CDPOS-TABNAME TO GI_FINAL-TABNAME.
            MOVE GI_CDPOS-TABKEY TO GI_FINAL-TABKEY.
            MOVE GI_CDPOS-FNAME TO GI_FINAL-FNAME.
            MOVE GI_CDPOS-VALUE_NEW TO GI_FINAL-VALUE_NEW.
            MOVE GI_CDPOS-VALUE_OLD TO GI_FINAL-VALUE_OLD.
              APPEND GI_FINAL.
              CLEAR GI_FINAL.
           ENDIF.
            VAR = VAR + 1.
   ENDSELECT.
          ENDLOOP.
        ENDIF.
      ENDLOOP.
          CALL FUNCTION 'ARCH_ANA_PROGRESS_INDICATOR'
         EXPORTING
              TEXT = 'Processing'.
    ENDIF.
  ENDLOOP.
  endform.
form f_fieldcat_init using lt_fieldcat type slis_t_fieldcat_alv.
  data: ls_fieldcat type slis_fieldcat_alv.
   clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'MATNR'.
  ls_fieldcat-seltext_l    = 'Material number'.
ls_fieldcat-tabname      = 'GI_final'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'DISPO'.
  ls_fieldcat-seltext_l    = 'mrp controller'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'USERNAME'.
  ls_fieldcat-seltext_l    = 'Username'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'CHANGENR'.
  ls_fieldcat-seltext_l    = 'Change Number'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'UDATE'.
  ls_fieldcat-seltext_l    = 'modified date'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'UTIME'.
  ls_fieldcat-seltext_l    = 'MODIFIED TIME'.
  append ls_fieldcat to lt_fieldcat.
clear ls_fieldcat.
ls_fieldcat-fieldname    = 'UDATE'.
ls_fieldcat-seltext_l    = 'MODIFIED DATE'.
append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TCODE'.
  ls_fieldcat-seltext_l    = 'TRANSACTION CODE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TABNAME'.
  ls_fieldcat-seltext_l    = 'TABLE NAME'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'TABKEY'.
  ls_fieldcat-seltext_l    = 'TABLE KEY'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'FNAME'.
  ls_fieldcat-seltext_l    = 'FNAME'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'FVALUE'.
  ls_fieldcat-seltext_l    = 'FVALUE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'VALUE_NEW'.
  ls_fieldcat-seltext_l    = 'NEW VALUE'.
  append ls_fieldcat to lt_fieldcat.
  clear ls_fieldcat.
  ls_fieldcat-fieldname    = 'VALUE_OLD'.
  ls_fieldcat-seltext_l    = 'OLD VALUE'.
  append ls_fieldcat to lt_fieldcat.
endform.                    " f_fieldcat_init
form alv_display tables  gi_final using gt_fieldcat .
  call function 'REUSE_ALV_LIST_DISPLAY'
   exporting
  I_INTERFACE_CHECK              = ' '
  I_BYPASSING_BUFFER             =
  I_BUFFER_ACTIVE                = ' '
   I_CALLBACK_PROGRAM             = ' Material list '
  I_CALLBACK_PF_STATUS_SET       = ' '
  I_CALLBACK_USER_COMMAND        = ' '
  I_STRUCTURE_NAME               =
     is_layout                      = gs_layout
     it_fieldcat                    = gt_fieldcat
  IT_EXCLUDING                   =
  IT_SPECIAL_GROUPS              =
  IT_SORT                        =
  IT_FILTER                      =
  IS_SEL_HIDE                    =
  I_DEFAULT                      = 'X'
  I_SAVE                         = ' '
  IS_VARIANT                     =
  IT_EVENTS                      =
  IT_EVENT_EXIT                  =
  IS_PRINT                       =
  IS_REPREP_ID                   =
  I_SCREEN_START_COLUMN          = 0
  I_SCREEN_START_LINE            = 0
  I_SCREEN_END_COLUMN            = 0
  I_SCREEN_END_LINE              = 0
IMPORTING
  E_EXIT_CAUSED_BY_CALLER        =
  ES_EXIT_CAUSED_BY_USER         =
    tables
      t_outtab                       = gi_final
EXCEPTIONS
  PROGRAM_ERROR                  = 1
  OTHERS                         = 2
  if sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  endif.
endform.
regards
siva

Similar Messages

  • Reg : CDHDR and CDPOS.......

    HiAll,
    I need to capture the date at the schedule line level which was changed at sometime.
    I know that I have to go to CDHDR and CDPOS tables to capture the changes.
    But in order to access those tables, we need the object and key some fields .
    For schedule lines what are the values do we need to pass?
    Any suggestions are helpful.
    Thanks and Regards
    Abhilash.

    Hi Dude,
    REPORT z_alv_cdhdr_cdpos.
    *This ALV report displays tables CDHDR and CDPOS *
    TYPE-POOLS slis. " Global ALV types
    * constants
    CONSTANTS : c_x VALUE 'X',
    c_eb9 TYPE syucomm VALUE '&EB9',
    c_refresh TYPE syucomm VALUE '&REFRESH'.
    * types
    TYPES :BEGIN OF ty_s_cdhdr.
    INCLUDE TYPE cdhdr.
    TYPES :checkbox TYPE xfeld,
    END OF ty_s_cdhdr,
    BEGIN OF ty_s_cdpos.
    INCLUDE TYPE cdpos.
    TYPES : checkbox TYPE xfeld,
    END OF ty_s_cdpos.
    * internal tables
    DATA : gs_cdhdr TYPE cdhdr, " Change document header
    * Layout for ALV
    gs_layout TYPE slis_layout_alv,
    * Change document header
    t_cdhdr TYPE TABLE OF ty_s_cdhdr.
    * selection screen design
    SELECT-OPTIONS : s_objcls FOR gs_cdhdr-objectclas OBLIGATORY,
    s_objtid FOR gs_cdhdr-objectid,
    s_chngnr FOR gs_cdhdr-changenr,
    s_usrnam FOR gs_cdhdr-username DEFAULT sy-uname,
    s_udate FOR gs_cdhdr-udate DEFAULT sy-datum,
    s_time FOR gs_cdhdr-utime,
    s_tcode FOR gs_cdhdr-tcode,
    s_plncnr FOR gs_cdhdr-planchngnr,
    s_chngno FOR gs_cdhdr-act_chngno,
    s_wsplnd FOR gs_cdhdr-was_plannd,
    s_chngid FOR gs_cdhdr-change_ind.
    SELECTION-SCREEN SKIP.
    PARAMETERS p_max TYPE numc3 OBLIGATORY DEFAULT '200'.
    * start-of-selection .
    START-OF-SELECTION.
    PERFORM f_read_data.
    * end-of-selection .
    END-OF-SELECTION.
    PERFORM f_display_cdhdr.
    *Form f_read_data
    FORM f_read_data.
    *Read Change document header
    SELECT * INTO TABLE t_cdhdr
    UP TO p_max ROWS
    FROM cdhdr
    WHERE objectclas IN s_objcls
    AND objectid IN s_objtid
    AND changenr IN s_chngnr
    AND username IN s_usrnam
    AND udate IN s_udate
    AND utime IN s_time
    AND tcode IN s_tcode
    AND planchngnr IN s_plncnr
    AND act_chngno IN s_chngno
    AND was_plannd IN s_wsplnd
    AND change_ind IN s_chngid.
    ENDFORM. " F_READ_DATA
    *Form f_display_cdhdr
    FORM f_display_cdhdr.
    DATA :ls_event_exit TYPE slis_event_exit,
    lt_event_exit TYPE slis_t_event_exit.
    gs_layout-zebra = c_x.
    gs_layout-colwidth_optimize = c_x.
    gs_layout-group_change_edit = c_x.
    gs_layout-allow_switch_to_list = c_x.
    gs_layout-box_fieldname = 'CHECKBOX'.
    *Activate 'More' button
    CLEAR ls_event_exit.
    ls_event_exit-after = c_x.
    ls_event_exit-ucomm = c_eb9. " More
    APPEND ls_event_exit TO lt_event_exit.
    *Activate refresh button
    CLEAR ls_event_exit.
    ls_event_exit-after = c_x.
    ls_event_exit-ucomm = c_refresh. " Refresh
    APPEND ls_event_exit TO lt_event_exit.
    *Display ALV
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-cprog
    i_callback_user_command = 'USER_COMMAND'
    i_callback_pf_status_set = 'PF_STATUS_SET'
    i_structure_name = 'CDHDR'
    is_layout = gs_layout
    it_event_exit = lt_event_exit
    i_save = 'A'
    TABLES
    t_outtab = t_cdhdr.
    ENDFORM. " F_DISPLAY_CDHDR
    *FORM USER_COMMAND *
    FORM user_command USING u_ucomm TYPE syucomm
    us_selfield TYPE slis_selfield. "#EC CALLED
    *Macro definition
    DEFINE m_sort.
    add 1 to ls_sort-spos.
    ls_sort-fieldname = &1.
    ls_sort-up = c_x.
    append ls_sort to lt_sort.
    END-OF-DEFINITION.
    DATA :
    ls_cdhdr TYPE ty_s_cdhdr,
    ls_sort TYPE slis_sortinfo_alv,
    lt_sort TYPE slis_t_sortinfo_alv,
    *Change document items
    lt_cdpos TYPE TABLE OF ty_s_cdpos.
    CASE u_ucomm.
    WHEN '&IC1' OR c_eb9.
    PERFORM check_marked USING us_selfield.
    *Read Change document items
    LOOP AT t_cdhdr INTO ls_cdhdr WHERE checkbox = c_x.
    SELECT * APPENDING TABLE lt_cdpos
    FROM cdpos
    WHERE objectclas = ls_cdhdr-objectclas
    AND objectid = ls_cdhdr-objectid
    AND changenr = ls_cdhdr-changenr.
    ENDLOOP.
    m_sort 'CHANGENR'.
    *Display ALV
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = sy-cprog
    i_structure_name = 'CDPOS'
    is_layout = gs_layout
    it_sort = lt_sort
    i_save = 'A'
    TABLES
    t_outtab = lt_cdpos.
    WHEN c_refresh.
    PERFORM f_read_data.
    us_selfield-refresh = c_x.
    ENDCASE.
    ENDFORM. " USER_COMMAND
    *Form CHECK_MARKED
    *What has been marked in t_cdhdr
    FORM check_marked USING us_selfield TYPE slis_selfield.
    FIELD-SYMBOLS :
    TYPE ty_s_cdhdr.
    READ TABLE t_cdhdr TRANSPORTING NO FIELDS
    WITH KEY checkbox = c_x.
    IF NOT sy-subrc IS INITIAL AND
    NOT us_selfield-tabindex IS INITIAL.
    READ TABLE t_cdhdr INDEX us_selfield-tabindex ASSIGNING .
    -checkbox = c_x.
    ENDIF.
    ENDFORM. " CHECK_MARKED
    *FORM PF_STATUS_SET *
    FORM pf_status_set USING ut_extab TYPE slis_t_extab. "#EC CALLED
    *Display 'Refresh' button and 'More' button
    DELETE ut_extab WHERE fcode = c_refresh
    OR fcode = c_eb9.
    SET PF-STATUS 'STANDARD_FULLSCREEN' OF PROGRAM 'SAPLKKBL'
    EXCLUDING ut_extab.
    ENDFORM. " PF_STATUS_SET
    * how to use the function module
    *--- how to use the function module CHANGEDOCUMENT_READ_HEADERS
    REPORT zchange_headers .
    DATA: BEGIN OF it_cdhdr OCCURS 0.
    INCLUDE STRUCTURE cdhdr.
    DATA: END OF it_cdhdr.
    PARAMETERS: begdate LIKE cdhdr-udate ,
    enddate LIKE cdhdr-udate ,
    begtime LIKE cdhdr-utime ,
    endtime LIKE cdhdr-utime .
    INITIALIZATION .
    begdate = sy-datum .
    enddate = sy-datum .
    begtime = '000001' .
    endtime = '235959'.
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
    EXPORTING
    date_of_change = begdate
    objectclass = 'EINKBELEG' "Object Class T-Code: SCDO
    time_of_change = begtime
    username = sy-uname
    date_until = enddate
    time_until = endtime
    TABLES
    i_cdhdr = it_cdhdr
    EXCEPTIONS
    no_position_found = 1
    wrong_access_to_archive = 2
    time_zone_conversion_error = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF sy-subrc = 0.
    LOOP AT it_cdhdr.
    WRITE:/ it_cdhdr-objectclas,
    it_cdhdr-objectid,
    it_cdhdr-changenr,
    it_cdhdr-username,
    it_cdhdr-udate,
    it_cdhdr-utime,
    it_cdhdr-tcode.
    ENDLOOP.
    ENDIF.

  • Price change in Schedule agreement but not updated in CDHDR and CDPOS

    Hi Experts
    We have change price in  SA ,please see the below screen shot. But these changes not update in CDHDR and CDPOS. We can see current rate in ME33L.
    Please guide how to update these changes.
    Regards
    Parkash Chand

    Generally in standard, the changes logs are saved into table CDPOS and CDHDR.
    Its working fine in my system.
    Can you see the changes log with regards to document number by running program RSSCD200.
    Go to SE38 or SA38, enter the program RSSCD200 then press execute.
    Enter * in object class and enter the document number
    Then press execute. You can find more details into the wiki content Steps to enable logging of changes in change documents - Code Gallery - SCN Wiki

  • CDHDR and CDPOS tables are not updated

    Hi,
    When I am trying to change (or delete) Project definitions or WBS elements (changed all its related data which have change document ticked in its data element) those changes are not captured in CDHDR and CDPOS tables.
    Here in our system PROJ object class exists in SCDO t-code and has all its generated programs, but still not able to find changes in CDHDR and CDPOS tables.
    Can anybody plz let me know if I am missing anything or PROJ is not the appropriate object class or does BASIS team need to do any configuration to capture change documents in CDHDR or CDPOS tables because I do not see not even one record with PROJ object class in those tables.
    Appriciated for quick response.
    Regards,
    M, Manohar

    Hi Manohar,
    Even we have project system in my project.We are able to see the changes and we did not done any settings for that.Just check with your basis people else raise an oss note.I did not see any sap notes also related to that.
    Regards,
    Madhu.

  • Use of CDHDR and CDPOS Table in Query

    Hi all,
    I am having requirement where i need to fetch the data from the CDHDR and CDPOS by passing the release indicator from EKKO.
    I would like to know whether the performance will b the issue with this as the CDHDR and CDPOS are the tables which consist of Huge data.
    Pls let me know what will b the impact on performance and other things..
    Regards
    KK

    Hi,
    Pls chk this links, might be helpful;
    https://forums.sdn.sap.com/click.jspa?searchID=5749799&messageID=1456945
    Re: Delta - Records changed directly in table
    Generic delta queue for CDHDR
    LBWE, delta extraction without BW
    http://www.sap123.com/showthread.php?t=47
    Regards
    CSM Reddy

  • Problem in updating  table's CDHDR and CDPOS

    Hello Expert's ,
    I have created one z' transaction code to update the  VIEW  name ZV_PO which is the combination of three tables: EKKO, EKPO and EKKN. These tables are getting updated with the changed values. But one thing the sap standard tables CDHDR and CDPOS are not getting updated .
    Can any one please tell me , whether updating on VIEW's will not make update in the sap standard tables CDHDR and CDPOS as the activition log will not be there in VIEW's compared to table's and how to make it the changes reflected in the table's CDHDR and CDPOS.
    Points will be rewarded 100%.
    Thanks in advance .
    Ashok
    Edited by: ASHOK on Mar 17, 2008 11:56 AM

    Hi Thomas,
    Thanks for your reply . Can you please little bit brief about view maintanance and the transaction SCDO object EINKBELEG.
    When i looked into the transaction SCDO  i could seen the following tables ,
    EKEK
    EKES
    EKET
    EKKN
    EKKO
    EKPA
    EKPO
    KONVC
    Kindly Liitle brief about your solution .
    Assured Points 100% !
    Thanks in advance for your support!
    With Best Regards,
    Ashok

  • How to use CDHDR and CDPOS tables

    Hello Gurus,
    How can the data be extracted from CDHDR and CDPOS tables ?
    For example, I want to find the changes for the material master, what is the object need to be given in the OBJECT value etc..
    I tried to use restricting the transaction MM02 and the date valid from and to, but it is taking longer time.
    Appreciate, if you can provide the objects which can be used to track the changed data like Production orders etc..
    Thanks
    Aadhya

    Hi Aadhya,
    For the Change Document Object (OBJECTCLAS), you can use the following item:
    MATERIAL = material master
    ORDER = production order/maintenance order
    EINKBELEG = purchasing document
    VERKBELEG = sales document
    The Object Value (OBJECTID) is usually the object's number, such as material number, production order number, etc.
    Get the Document Number (CHANGENR) and go to CDPOS to see the changes detail.
    Regards,
    Julian

  • To fetch from CDHDR and CDPOS using FM CHANGEDOCUMENT_READ_RANGES

    Hi all,
    Please let me know how to fetch the Details from  CDHDR and CDPOS using Function Module  CHANGEDOCUMENT_READ_RANGES. If possible Clear me with an Example. It has to fetch the datas of Table KNVV
    KNV1 etcc.... Separately for the Corresponding Table Selected In Report..
    With regards,
    Sudhakar Govndaraj.

    Hi Sudhakar,
    cdhdr-objectclas = 'MATERIAL'.
      cdhdr-objectid   = t_mara-matnr.
      CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
        EXPORTING
          date_of_change    = cdhdr-udate
          objectclass       = cdhdr-objectclas
          objectid          = cdhdr-objectid
          time_of_change    = cdhdr-utime
          username          = cdhdr-username
        TABLES
          i_cdhdr           = icdhdr
        EXCEPTIONS
          no_position_found = 1
          OTHERS            = 2.
      CHECK sy-subrc EQ 0.
      DELETE icdhdr WHERE change_ind EQ 'I'.
      CHECK NOT icdhdr[] IS INITIAL.
      LOOP AT icdhdr.
        CHECK icdhdr-udate IN period.
        CHECK icdhdr-username IN name.
        CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
          EXPORTING
            changenumber      = icdhdr-changenr
          IMPORTING
            header            = cdhdr
          TABLES
            editpos           = icdshw
          EXCEPTIONS
            no_position_found = 1
            OTHERS            = 2.
        CHECK sy-subrc EQ 0.
        LOOP AT icdshw.
          CHECK icdshw-text_case EQ space.
          MOVE-CORRESPONDING icdshw TO itab.
          MOVE-CORRESPONDING icdhdr TO itab.
          MOVE icdshw-tabkey+3 TO itab-matnr.
          APPEND itab.
        ENDLOOP.
      ENDLOOP.
    Please refer the blog
    /people/erwan.lebrun/blog/2007/03/09/documents-how-to-track-changes-through-abap
    Edited by: Rahul Babukuttan on Nov 26, 2010 11:38 AM

  • How to Update CDHDR and CDPOS for a ZTable.

    Hi Gurus,
    I have created a change document to update tables CDHDR and CDPOS ,which updates these tables when i insert a new record to my ZTABLE.Insertion of a new record is working fine,but when i update a existing record the CHANGEID COLUMN in CDPOS table is 'D'.
    Can anyone expalin be why this is happening.
    Regards,
    Venu.

    Hi Gautam,
    Below is the code i have written. i guess, i have passed write values, if not let me know.
    Hope u have worked on it.if possible can u send me the code.
    CALL FUNCTION 'MAKTX_WRITE_DOCUMENT'
            EXPORTING
              objectid                      = 'MAKTX'
              tcode                         = 'Z100'
              utime                         = sy-uzeit
              udate                         = sy-datum
              username                      = sy-uname
      PLANNED_CHANGE_NUMBER         = ' '
      object_change_indicator       = 'U'
      PLANNED_OR_REAL_CHANGES       = ' '
      NO_CHANGE_POINTERS            = ' '
             upd_icdtxt_maktx              = 'U'
             upd_zchg_doc                  = 'U'
            TABLES
              icdtxt_maktx                  = itab3
              xzchg_doc                     = itab1     "New Values
              yzchg_doc                     = itab2     "Old Values
    Regards,
    Venu.

  • Question on CDHDR and CDPOS

    Hi,
    Currently we have a generic datasource on CDHDR for a limited TCODE.
    Now the requirement is to include the line items as well.
    When I use document number to fetch the line items. It has one to many relationship.
    Could you please advise what should be the solution to get the informaiton from both CDHDR and CDPOS..
    Thanks in advance
    Muiz

    Hi,
    There are two way to do that.
    1:  Create a data base view on both the table. And use the view for creating the generic DS in RSO2.
    2:  Create a FM base generic data source. In the FM you can use join condition to fetch the data from Both the table.
    3:  Query base generic data source is not advisable here.
    Thanks

  • Why do CDHDR and CDPOS have not logged my changes

    CDHDR and CDPOS record numbers are still the same after I changed a material's characteristic value in MM02 (Classification tab).
    They are supposed to have a new logged record, aren't they? or
    Did I read data from the wrong table?
    Any help would be appreciated

    Hi,
    Change document are only created if the fields is set for change document.
    This you set at DATA ELEMENT level. If you go to any table, take any field, double click the data element of that field. On the data element displat screen on the definition tab, you will see a block "Attribute". In this "Attribute" block, there is a field call "Change Document".
    The change documents for table fields are only created if this "change document" flag is set. Check the documentation of this flag ( change document ) for more information.
    Also, check transaction SCDO. It might help.
    Regards,
    RS

  • New Tax Code Creation with CST and Service Tax

    Hi
    I want to know the complete procedure of new tax code creation with CST and Service Tax. I want to know the steps for calculation of % of that Tax Code.
    Kindly help me out.
    Thanks
    Kshipra G

    Hi Expert,
    Before creating a Tax Code, Create two Condition Types(T-Code: OBYZ) for CST and Service Tax, which need to Select the below Items
    Cond. class -  D - Taxes
    Calculat.type -  A - Percentage
    Cond.category - D - Tax
    and while creating a Tax Procedure just select the Condition Type of CST and Service Tax and provide the Account Key for both Condition Types.
    Assign the GL Accounts to the Account Keys in T-Code: OB40.
    Create a Tax Code in T-Code: FTXP, which is to be assigned in T-Code: FV11.
    Maintain the percentage in T-Code: FV11, with your Key Combination and
    Try this procedure, which will help you...
    Regards,
    GK
    SAP

  • Merging BSEG ,CDHDR and CDPOS.

    How can i merge BSEG which is a cluster table,CDHDR and CDPOS(Cluster Table)??

    >
    sumanth reddy wrote:
    YOU CAN MERGE THE FIELDS  THROUGH INNER JOIN.
    BSEG is a cluster table so u can not use an inner join on it.
    кu03B1ятu03B9к

  • Condition information is not reflecting in tables CDHDR and CDPOS

    Hi,
    When a Purchase order condition information is changed or created, the changes are not reflecting in the table CDHDR and CDPOS.
    Please can someone suggest a solution .

    Hi Raj
    When there are any changes in the conditions, the overall difference will be reflected in field <b>EFFWR i.e Effective Value of Item.</b> Please check...
    Kind Regards
    Eswar

  • Qosmio X775 blue screen error Code 116 with OpenGL and video programs

    After updating windows I found that I was getting blue screen messages when I tried to use OpenGL in Photoshop or when I open Adobe After Effects and other video programs.
    The mini dump message is:
    ==================================================
    Dump File         : 072512-32151-01.dmp
    Crash Time        : 7/25/2012 8:46:34 PM
    Bug Check String  :
    Bug Check Code    : 0x00000116
    Parameter 1       : fffffa80`0b507010
    Parameter 2       : fffff880`0f39f4d4
    Parameter 3       : 00000000`00000000
    Parameter 4       : 00000000`00000002
    Caused By Driver  : nvlddmkm.sys
    Caused By Address : nvlddmkm.sys+19e4d4
    File Description  :
    Product Name      :
    Company           :
    File Version      :
    Processor         : x64
    Crash Address     : ntoskrnl.exe+7f1c0
    Stack Address 1   :
    Stack Address 2   :
    Stack Address 3   :
    Computer Name     :
    Full Path         : C:\windows\Minidump\072512-32151-01.dmp
    Processors Count  : 4
    Major Version     : 15
    Minor Version     : 7601
    Dump File Size    : 370,384
    ==================================================
    I've looked this up with no result. Can anyone help.  (Note: I am fairly literate but not a computer geek.)
    Sheilamacd
    Sheilamacd

    Hi there,
    Sorry for bringing this thread back up but I have the exact same laptop and the exact same problem. I believe I've had this problem since this thread has been posted, but have just come across this thread. I've done a factory reset through the built in recovery options but I still come across these errors (BSODs and graphical glitches, also from nvlddmkm.sys and 0x116 errors). Whenever I run a Furmark GPU stress test, the FPS is fine until I hear the fan turn on, which the frames then drop extremely low (5 fps or so). Once temperature of the GPU drops a bit and the fans turn off, the FPS rises again back to normal. This continues for awhile (dropping and going back up) until it crashes with an OpenGL error. I also did a Memtest to check my RAM, but it all checked out ok. At first I ordered a recovery disc because the recovery partition was not working for some reason (kept crashing/freezing). I tried it again recently and the recovery went through. I'm not quite sure if the built in recovery and the recovery media discs are different, but I'm hoping it will make a difference when it gets here. If the recovery disc does however not work, should I just assume its a hardware issue and send it to an ASP for repair? Extremely hesitant because of the high cost...Any help would be much appreciated. Been bothered by this issue for a month...

Maybe you are looking for

  • Bad quality when play mov or mp4

    I want to play mov or mp4 by quicktime. In my laptop it play well but in my another computer the quality for video is very bad! Following is the features of that computer: Windows XP Pro SP2 VIA C7 Processor 1500MHZ 512M RAM Graphics card: VIA/S3G Un

  • Quicktime 7 file size restriction?

    I have some large files shot on HDV and Imported into Final Cut Pro X. I want to use FCP 7 Pro to split them and export in a different format. The larger files 8-10GB appear in QT7 with sound only and a black screen. Smaller files 3-5GB play as expec

  • IOS 5 update Contact issue

    After updating my iPhone 4 to iOS 5, I have alot more contacts than I did before. Where did these contacts come from. I currently have my iPhone connected to our works Microsoft Exchange server and when you look in outlook alot of the contacts are no

  • Is Ipad3 memory effectively less than iPad1?

    I set up Ipad3 via "restore backup" to load iPad1 data/settings. The unused memory in iPad1 was 14GB (out of 57 available) and new is only 1GB. Photos are taking up 1/3 more space (29gb v. 21GB) and Other is also using much more (6GB v. 2GB). Genius

  • D2KWUTIL

    Hi, What is the latest version of D2kwutil.pll for Oracle Forms 6i? AND, where can i get it?