Config/Control data change capture

Hi,
I want to replicate any data changes made to the config/control data of SPRO to a non-SAP system. Would there be user exits or change pointers for these transactions? How can I confirm this? If this is not possible then what options are available SAP?
Eagerly awaiting a response..
Thanks in advance

Chumkayz,
This can be achieved with the help of Oracle Change Data Capture at the following levels:
01 - Table Differentiation
02 - Value based or Time-stamped
03 - Cost propotionality
You can refer to the following documentations (depending on your DB version) for further understanding of CDC:
Oracle9i Data Warehousing Guide
http://download.oracle.com/docs/cd/A91202_01/901_doc/server.901/a90237/cdc.htm#1013965
Oracle® Database Data Warehousing Guide 10g Release 1
http://download.oracle.com/docs/cd/B14117_01/server.101/b10736/cdc.htm#i1028295
Oracle® Database Data Warehousing Guide 11g Release 1
http://download.oracle.com/docs/cd/B28359_01/server.111/b28313/cdc.htm#i1028295
Hope this helps.
Regards,
Naveed.

Similar Messages

  • Data Change Capture

    How do I capture only changed data in Oracle database.?
    Thanks

    Chumkayz,
    This can be achieved with the help of Oracle Change Data Capture at the following levels:
    01 - Table Differentiation
    02 - Value based or Time-stamped
    03 - Cost propotionality
    You can refer to the following documentations (depending on your DB version) for further understanding of CDC:
    Oracle9i Data Warehousing Guide
    http://download.oracle.com/docs/cd/A91202_01/901_doc/server.901/a90237/cdc.htm#1013965
    Oracle® Database Data Warehousing Guide 10g Release 1
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10736/cdc.htm#i1028295
    Oracle® Database Data Warehousing Guide 11g Release 1
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28313/cdc.htm#i1028295
    Hope this helps.
    Regards,
    Naveed.

  • Capture data changes to Control Data

    Hi,
    I want to replicate any data changes made to the config/control data of SPRO to a non-SAP system. Would there be user exits or change pointers for these transactions? How can I confirm this? If this is not possible then what options are available in SAP ECC?
    Eagerly awaiting a response..
    Thanks in advance

    Dear folk,
       In SAP we have two tables CDPOS and CDHDR for the changed data to be maintained.
      CDHDR-Header data
    CDPOS-Item data.
    Based on ur requirement , u can check these tables by giving the table name and field name.
    to the appropriate fields in the CDHDRa nd CDPOS.
    Revert if u need any help regarding this.
    Regards
    Abhilash.

  • How to call sharepoint datetime control on date changed in javascript?

    Hi,
    Can any body help me to call sharepoint datetime control  date changed event in javascript.? Im trying to show the date on dateTimeControl2 based on dateTimeControl1 on dateChanged event (not submit ) ie, when mouse leaves from the first date control
    , next date control will update 1 year from first date control.
    <SharePoint:DateTimeControl ID="effectiveDate"
    CssClassTextBox="form-control"
    runat="server" DateOnly="true"
    OnValueChangeClientScript="val_create_cca_onchange()"
    DatePickerFrameUrl="<%$SPUrl:~sitecollection/_layouts/15/iframe.aspx %>" />
    and my js function is..
    function val_create_cca_onchange( ) {
    var dt = new Date();
    var val_effective_date = document.getElementById("<%= effectiveDate.ClientID %>");
    var dt2 = dt.getDate(val_effective_date);
    var month2 = dt.getMonth(val_effective_date) + 1;
    var year2 = dt.getFullYear(val_effective_date) + 1;
    var dateUpdate = dt2 + '/' + month2 + '/' + year2;
    document.getElementById("<%= endDate.ClientID %>").innerText = dateUpdate;
    Thanks in advance.

    Your script is correct except id in the url. You need to pass the url like 
    <a href="javascript:OpenPopUpPage(‘/sites/wm/Lists/WorkItems/EditForm.aspx?ID={@ID}’)">
    Edit Item</a>
    http://jimecox.wordpress.com/2011/08/02/url-stings-in-sharepoint-2010-to-launch-edit-forms/

  • Capture date change event of Time Refresh Control

    Hi,
    Is there any possible way by which we can capture the date change event from the time refresh control of iGrid?

    Hi,
    Ok lets do it this way.
    I have a page in which i am having radio button for date selection say YTD, MTD and so.
    In the page i have a frame in which an iGrid is coming up with some data based on the time period selected on the page.
    Now if i change the date from the time refresh control of the iGrid in the frame i want to uncheck the radio button seleted on the page as now its not YTD or MTD or whatever selected previously.
    Is there any possible way to do this?

  • Master data changes Dual control (per Company code)

    Hello Experts,
    Am now planning to setup Dual Control for Vendor & Customer Master's Sensitive fields like Bank Account details (note that Bank details are setup in "General data" irrespective of Company code.
    My client has Companies spread across the globe.
    I have some questions. Hope somebody can help.
    1) Can i activate Dual Control functionality for just 1 or 2 Companies. As far as i know this is not possible in config. Any easy work around?
    2) If i implement this change as it is , how does it work?
      For example if an Accounting clerk in Germany changes a Vendor Bank Account number , any one who has access to FD08 (or FD09) in France can approve this change. Where as ideally this change should only be able to confirm by a Manager in Germany.
    This means every body can see & confirm other companies master data changes.
    Just a thought, can i restrict this in authorisation by Account Group?
    But isn't there a way to display only the relevant changes to be confirmed by each manager(limited to thier own Company or Account group)
    Thanks in advance.

    Bank Details are not company code specific. So can't restrict per company code.
    Any other suggestions, please ?

  • How to modify changes of table control data in PAI

    I have a table control where the columns are brought by dict fields.I am able to bring data into table control through an itab.
    Now what i want is whenever user edits data in table control and clicks on save button the corresponding changes should be made in database.
    For this according to my understanding we need to (in PAI) modify the changes in itab from the table control and then in SY-UCOMM of SAVE button we need to update in database table using itab.
    For this , I am not able to write code for modifying the changes in itab from table control. Here is my code below.Please tell me how to do this.
    PROCESS BEFORE OUTPUT.
    MODULE FILL_DATA.
    LOOP AT ITAB INTO ZEMPLOYEE_MASTER WITH CONTROL EMPTABLE CURSOR
    EMPTABLE-CURRENT_LINE.
    ENDLOOP.
    MODULE STATUS_0001.
    PROCESS AFTER INPUT.
    LOOP AT ITAB.
       MODULE MODIFY_ITAB.
    ENDLOOP.
    MODULE USER_COMMAND_0001.
    REPORT  ZDATA_FORM1.
    TABLES: ZEMPLOYEE_MASTER.
    CONTROLS EMPTABLE TYPE TABLEVIEW USING SCREEN 0001.
    data: begin of itab occurs 0,
           emp_no like zemployee_master-emp_no,
           name like zemployee_master-name,
           city like zemployee_master-city,
          end of itab,
          rowno TYPE I VALUE 1.
    *&      Module  STATUS_0001  OUTPUT
    *       text
    MODULE STATUS_0001 OUTPUT.
    *  SET PF-STATUS 'xxxxxxxx'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0001  OUTPUT
    *&      Module  USER_COMMAND_0001  INPUT
    *       text
    MODULE USER_COMMAND_0001 INPUT.
      MESSAGE 'Inside INPUT' TYPE 'I'.
    CASE SY-UCOMM.
       WHEN 'SAVE'.
         UPDATE zemployee_master.
       WHEN 'EXIT'.
         LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0001  INPUT
    *&      Module  fill_data  OUTPUT
    *       text
    MODULE fill_data OUTPUT.
      select emp_no name city from zemployee_master into TABLE itab ORDER BY emp_no.
      Describe table itab lines EMPTABLE-LINES.
    ENDMODULE.                 " fill_data  OUTPUT
    *&      Module  modify_itab  INPUT
    *       text
    MODULE modify_itab INPUT.
    * MODIFY itab from zemployee_master index
    * MESSAGE 'Inside modify_itab' TYPE 'I'.
    ENDMODULE.                 " modify_itab  INPUT

    Hi
    In the following module of your code
    MODULE modify_itab INPUT.
    MODIFY itab from zemployee_master index tc-current_line " Where TC is the name of the Table control on the Screen
    ENDMODULE.
    Table control data gets refreshed on *enter*
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/2165e990-0201-0010-5cbb-b5c2ad436140
    Cheerz
    Ramchander Rao.K

  • HT3669 My Epson Perfection 1200 scanner functions as a flatbed scanner but when I try to scan transparencies the control panels change in  Image Capture but the scanner bar will not complete the overview scan  & cannot travel beyond the first 2/3 centimet

    Epson Perfection 1200 scanner continues to function as a flatbed scanner but when I try to scan transparencies/film negs the control panels change in  Image Capture but the scanner bar will not complete the overview scan  & cannot travel beyond the first 2/3 centimeters. All the communications seem to recognise the scanner and the mode for the intended scan but the necessary overview scan is not completed, nothing comes up on the Image Capture scan window. If I unplug the film adaptor I can get a document scan. When I plug in the adaptor again the Image Capture details change which allows me to select the type of scan required but when the scanner attempts an overview scan it is unable to complete it.
    I have had the scanner from new (12 Years) and have previously scanned slides and film with the adaptor but maybe this was before I upgraded my computer (imac 27").
    Do I have to buy a new scanner?  It seems so close to working correctly. 
    I have downloaded the Epson recommended driver (5.4) and have Epson Perfection 1200 6.6 Universal showing in the Applications List.
    Any thoughts or observations would be much appreciated before I go out and spend money an new hardware.
    Thanks

    I have same issue - have you solved this yet?

  • T.code FS00: changing the SORT KEY in the 'Control data'

    Hi All,
    I need to change the SORT KEY in the 'Control data' of a G/L master data.
    Is there a SAP standard program by which the field 'Assignment' is updated.
    Thanks
    Gandalf

    Sorry,
    i did't mean updating a field ...
    I meant:
    is there a program which changes the content of the field 'Assignment' according to the new content of the field 'Sort key'?
    Thanks

  • Bapi to create/change MM/SD grid control data (AFS)

    Hi experts,
    I'm looking for a way to create and change MM/SD grid control data by bapi (or by other way that can be implemented in ABAP).
    I mean the data that you can see when you go to trx J3AB, enter a material and push the buttons: "MM grid control data" or "SD grid control data"
    Thank you in advance.
    -francesco

    I found it by myself, there's the FM J_3A_CREA_GRCD_MASTER_GRID, inside the J3AGRI idoc FM J_4A_IDOC_INPUT_J3AGRI.

  • Capturing data changes in alv using classes

    Hello All,
    Currently am working on alv report using classes..,In this report am displaying 3 grids in the output in 3 different containers(cl_gui_custom_container)...,Am able to handle the data changes done in the grid  at the run time using event  data_changed ...,
    Now the requirement + problem is ...if i do the changes in all the grids ,,,,,and if i click(hotspot event) on any of the rows/records in any of the grids ...,, I need to be able to capture all the data changes done in all the other grids....,,
    for example:-
    if i modify some records in all the 3 grids ,,, and if I click any of the row in any of the grid at a time,,, all the changes done in all the grids should be captured.....( in simple words one click all changes )
    I tried using data_changed event....., am only able to capture the changes of the grid on which i clicked ( ie.hotspot event) but not the changes which i have done on other grids.....Pls. help me out with the possibilities
    Hope am clear..
    Thanks
    John

    Hi friend,
    METHOD handle_user_command.
      CASE e_ucomm.
    WHEN 'UPDATE'.
                 CALL METHOD r_grid->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows.
    LOOP AT it_rows INTO wa_rows.
    *****modify the first container data***********
    endloop.
    CALL METHOD r_grid1->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows1.
    LOOP AT it_rows1 INTO wa_rows1.
    *****modify the second container data***********
    endloop.
    CALL METHOD r_grid1->get_selected_rows
              IMPORTING
                 ET_INDEX_ROWS =
                 et_row_no     = it_rows2.
    LOOP AT it_rows2 INTO wa_rows2.
    *****modify the third container data***********
    endloop.
    endcase.
    Now we can create three container and three different grid class object but we are using same method.
    UPDATE buttton is common to all three containers.
    But one important point when u change the records in container we must select the rows then only selected rows r come to the internal table otherwise it is not come.
    CREATE OBJECT r_container
        EXPORTING
          container_name              = 'CONTAINER_1'
    CREATE OBJECT r_container2
        EXPORTING
          container_name              = 'CONTAINER_2'
    CREATE OBJECT r_container3
        EXPORTING
          container_name              = 'CONTAINER_3'
    CREATE OBJECT r_grid
        EXPORTING
          i_parent          = r_container
    CREATE OBJECT r_grid1
        EXPORTING
          i_parent          = r_container2
    CREATE OBJECT r_grid2
        EXPORTING
          i_parent          = r_container3
    NOW WE CAN CALL THE METHOD.
    CREATE OBJECT event_receiver1.
      SET HANDLER event_receiver1->handle_before_user_command FOR r_grid.
    CREATE OBJECT event_receiver1.
      SET HANDLER event_receiver1->handle_before_user_command FOR r_grid2.
    CREATE OBJECT event_receiver1.
      SET HANDLER event_receiver1->handle_before_user_command FOR r_grid3
    I thing it should be possible.But u must remeber u must select the records when u modifie in three containersBUT UPDATE button is common to all three containers.
    Regards,
    MURALII

  • Can I change image date and capture year in Aperture?

    Is there a way to manually change the image date and capture year (and other metadata for that matter) upon import? I have some pictures given to me by friends that they took on their own cameras and I want to import them into my Aperture Library, only it seems as though they didn't pay attention to/care about setting the date/time on their cameras. This causes me to lose sequence with my own photos that were taken with my camera on the same day.
    I tried to append and replace the IPTC Metadata, but that didn't seem to work. What can be done about this, or am I just stuck with some out of sequence photos when I sort by image date?
    <subject edited by host>

    RB,
    That worked perfectly, and was just what I was looking to do. Thanks.
    MK

  • How to change capture date to unknown in Lightroom 5.2

    How do I simply change a photo capture date to unknown in Lr 5.2?  I scanned some photos that somehow automatically got the scanned date input as capture date and I need to reset it to unknown.  I've spent way too much time searching for an answer for such a simple task.  Any help would be appreciated.
    Thanks,
    Brian

    LR doesn't provide a feature to change capture date to unknown, nor does it allow plugins to do it correctly.  You'll have to use an external tool (e.g. the free Exiftool) to modify the metadata of the photos directly:  
    1. If you've added keywords, captions, or other metadata to the photos in your catalog, or you have applied Develop settings, then in LR, select all the affected photos and do Metadata > Save Metadata To File.
    2. Use Exiftool to remove the fields EXIF:DateTimeOriginal, XMP:DateCreated, and IPTC:DateCreated and :TimeCreated. 
    3. Select all the photos and do Metadata > Read Metatadata From File.
    The Capture Time To Exif plugin may make step 2 a little easier for you, though you'll have to figure the Exiftool command line arguments yourself.

  • How does Sybase Replication Server capture data changes?

    Hello,
    as far as I know Sybase Replication Server is a central component in a HANA-based enviroment when it comes to replicate data towards HANA engine.
    I scan briefly through a white paper of Sybase, but I gives no technical description how the Sybase Replication Server captures data change on the source database.
    Can someone gives here explanation?
    All the best,
    Guido

    Hello Marc,
    thanks for fair and hornest answer!
    I'm currently involved in SAP based project where we are migrated business on DB level, which is some kind of operation a heart. I personally have huge respect for this approach.
    Caputring the changes on DB level is a appoarch, but I personally think that you need to capture event on business object level. For exammple the SAP good old workflow knows events for business objects. Also in a ESA-driven application you should have some kind on eventing for business objects.
    For the time being the current approach might working for a kind of Proof-of-Concept,
    but on a mid and long-term based you need to RETHINK!
    All the best & Merry Christmas & Happy new year
    Guido

  • Billing document - Baseline date change status

    Hi folks,
    I have the following issue with the baseline date for the billing documents.
    Billing date proposed by the systems based on the goods issue is 30.01.2010 while the date of creation of document is 31.01.2010. In FB03 transaction baseline date status is showing as changed from 30.01.2010 to 31.01.2010. Following is the setting done: In OBB8 for the said payment terms the baseline date shown is the "posting date' and in VTFL item level copy control
    it is defined as "Data VBRK/VBRP         007  Inv.Split (Rec/Div)".
    Why is the baseline date getting changed by the way  User is entering the bill of lading in the outbound delivery >Header>Shipment (on 31.01.2010)..not sure if this is in any way contributing to the baseline date change...Appreciate your reply.
    cheers
    Joseph

    Baseline date is generally governed by config in OBB8 but we can influence it by writing code in USEREXIT_FILL_VBRK_VBRP. This will obviously affect baseline date in billing docs. The same should get copied into the accounting document. Now the catch is if the accounting document is changed (e.g. Payment terms) then system will populate baseline date as per the config.
    So may be you should check if there is anything in the userexit and whether accounting document was changed.

Maybe you are looking for

  • MacBook Mini-DVI to VGA - Samsung 32" LCD - Mode Not Supported

    I followed the instructions on Apple's site to use the MacBook with the lid closed and an external LCD. It worked perfectly the first time I tried it. (I believe in 1920 x 1024). It seemed a little hard to read so I changed the Display resolution, th

  • Memory Problem for T400

    I brought my ThinkPads T400 one year ago. In this year, I brought Window 7 and installed in my laptop. After I installed all the drivers for the laptop. I can only use 2.99 GB memory out of 4GB. What is the problem? Do everyone knows? (Everything wor

  • I just found out I can't install my MXP extensions

    I really would like to wrtie something useful and meaningful, and maybe even ask a question or two. But I apologize in advance if it just turns out to be a rant. There's a bigger picture here, and that involves the overall direction the internet has

  • Applescript to select sheet 1 for printing

    I am writing a script to save as PDF and mail a numbers sheet document: I've got the PDF and mail parts at the ready. What I am lacking is a GUI script that insures I have the correct sheet selected for print. How might I select sheet 1 in the sheets

  • Resin with the j2ee sdk

    i'm using resin as my server. i set the build.properties to c:\resin-x-xx, but the libs are all in jar files. how do i get ant to recognise all the jar files in the lib folder?