Need to log entries in CDPOS and CDHDR

We have a custom table and would like to log entries in CDPOS and CDHDR for any changes. Is there any methos or setting where by this can be done?

at the data element level, you should check the checkbox CHANGE DOCUMENT. This appears on  FURTHER characteristics tab of any data element.
if this is checked,all the changes will be logged automatically.
regards
srikanth
Message was edited by: Srikanth Kidambi

Similar Messages

  • Joining CDPOS and CDHDR

    Hi Experts
    I have been trying to join tables CDPOS and CDHDR in SAP query but with no success.
    Does anyone know how to join them in ABAP and if so do you have the code.
    Cheers
    Piroz

    Hi Srinvas
    Then how can I start writing a report coding which will do the following
    I had gone through the tables there are CDHDR and CDPOS , from this tables
    These standards reports are taken from RVSD100 and RVSD200 reports which allow viewing changes on a single sales document in online mode howver the selection paratmeters for these two standard reports does not allow the selection parameters by plant code, document number, date ranges and also does not allow multiple sales document to be listed at the same time
    I need a report that will allow them to list the changes made in the contract documents with more ranges options on the report selection parameters
    basically this customised report will retrive all the changes made in sales contract documents within a plat , date ragne and other selection paramters
    The report must allow ALV display also
    sales office code and sales office description
    + contract document number
    sort by date, header data filed name <01> with old and new values changes and username
    sort by date, header data field name <02> with old and new values changes and username
    etc....
    etc...
    can you please help me how to start do we required funtional module etc.,I know it is easy but i need some push to start.
    regards
    Piroz

  • Report for Sales Order Change History   CDPOS and CDHDR

    How to take a report of the data for the Sales Order Change history for a particular period of time. It is required to take a report of all the Sales Orders for which the basic price has been changed. Please let me know the procedure. I could not get the data from the table CDPOS and CDHDR
    Helpful answer would be rewarded.
    Regards
    Praveen

    Dear Praveen Kumar
    Have you tried with VBAP where sale order details at item level would be stored.
    Moreover, to my knowledge, there won't be any changes as for as pricing is concerned at sale order level but there is at billing level.  Normally, any price increase / decrease would reflect in billing.  So why dont you to table join through SQVI VBAP (for sale order details) and VBRP (for billing details) so that you can compare the selling price in sale order with billing. 
    Thanks
    G. Lakshmipathi

  • Incorrect log entries from iPhone and iPad

    Hello iPhone/iPad users and admins
    For some time now, I have the problem, that I find the following entries in my log files of a business firewall.
    Here are the log entries
    # Time Message Source Destination Notes Category Priority Rule
    1 03/19/2011 23:43:53.640 IP spoof dropped Alert Intrusion Prevention 10,157,205,175, 62 348, X3 192.168.210.1, 8080, X8 MAC address: 40: a6: d9: 9a: f1: 2e
    # Time Message Source Destination Notes Category Priority Rule
    1 03/29/2011 09:38:00.352 IP spoof dropped Alert Intrusion Prevention 10.153.53.141, 51 561, X3 192.168.210.1, 8080, X8 MAC address: 40: a6: d9: 9a: f1: 2e
    # Time Message Source Destination Notes Category Priority Rule
    1 04/18/2011 18:23:03.560 IP spoof dropped Alert Intrusion Prevention 10,150,154,123, 49 515, X3 192.168.210.1, 8080, X8 MAC address: 40: a6: d9: 9a: f1: 2e
    # Time Message Source Destination Notes Category Priority Rule
    1 04/26/2011 08:20:49.544 IP spoof dropped Alert Intrusion Prevention 10.120.159.79, 56 770, X3 17,250,248,212, 443, X8, switchboard.me.com MAC address: d8: 30:62:81: f6: 7a
    # Time Message Source Destination Notes Category Priority Rule
    1 27/04/2011 02:40:35.496 IP spoof dropped Alert Intrusion Prevention 10.120.159.79, 56 860, X3 17,250,248,212, 443, X8 MAC address: d8: 30:62:81: f6: 7a
    # Time Message Source Destination Notes Category Priority Rule
    1 06/05/2011 21:57:47.928 IP spoof dropped Alert Intrusion Prevention 10.166.15.122, 61 764, X3 17,250,248,212, 443, X8 MAC address: d8: 30:62:81: f6: 7a
    and so on .....
    After a long search, I found out that it is my iPhone and my iPad.
    How do I find out which app is behaving wrongly , because along side with the wrong IP the equipment does get a correct IP and can be used quite normal on the Internet.
    Do I have to use the developer environment to test out each APP or can I find it out with a packet capture?
    Is there some other way or do I have to denistall all apps and activate one by one an test the logfiles?
    This would be a dayswork and I hope I can go around this.
    Thanky you for any relevant information.
    Kind regards
    Thomas

    Hi A. Hinsen!
    It's the same with me. I sync a lot of pictures to the iPad setting "Selected albums, events ..." and using iPhoto on my Mac. But when I added some pictures to an iPhoto-event and try to sync them again, iTunes automatic set "All pictures ..." and the iPad do not contain any picture. Allthough I just looked at them before I started the synchronisation.
    I hate it because the synchronisation need about an hour. And I am in a hurry.
    Reinhold

  • After call ends the call log entry is red and I ha...

    This problem started after a version upgrade. What a pain. How come when I finish a call log entry is marked read and I have a notification about it as though it's a missed call. Skype hasn't been the same since Microsoft bought it

    See "Unexpected installation error -203"
    http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox

  • How can I use Hash Table when processing the data from cdpos and cdhdr

    Hello Guru,
    I've a question,
    I need to reduce the access time to both cdhdr and cdpos.
    Because may be I'll get a huge number of entries.
    It looks like that by processing cdhdr and cdpos data will take many secondes,
    it depends on how many data you need to find.
    Hints : Putting instructions inside a form will slow down the program?
    Also, I just want use Hash table and I need to put a loop-instruction going on the hash-table in form.
    I know that it's no possible but I can declare an index inside my customized hash table.
    For example :
    DO
    READ TABLE FOR specific_hash_table WITH KEY TABLE oindex = d_oindex.
    Process data
    d_oindex += 1.
    UNTIL d_oindex = c_max_lines + 1.
    Doing this would actually not necessary improve the performance.
    Because It looks like I'm having a standard table, may be there's a hash function, but it could be a bad function.
    Also I need to use for example COUNT (*) to know how many lines I get with the select.
    FORM find_cdpos_data_with_loop
      TABLES
        i_otf_objcs TYPE STANDARD TABLE
      USING
        i_cdhdr_data TYPE HASHED TABLE
        i_objcl TYPE j_objnr
    *    i_obj_lst TYPE any
        i_option TYPE c
      CHANGING
        i_global TYPE STANDARD TABLE.
      " Hint: cdpos is a cluster-table
      CONSTANTS : objectid TYPE string VALUE 'objectid = i_obj_lst-objectid',
                  changenr TYPE string VALUE 'changenr = i_obj_lst-changenr',
                  tabname TYPE string VALUE 'tabname = i_otf_objcs-tablename',
                  tabnameo1 TYPE string VALUE 'tabname NE ''''',
                  tabnameo2 TYPE string VALUE 'tabname NE ''DRAD''',
                  fname TYPE string VALUE 'fname = i_otf_objcs-fieldname'.
      DATA : BEGIN OF i_object_list OCCURS 0,
                objectclas LIKE cdpos-objectclas,
                objectid LIKE cdpos-objectid,
                changenr LIKE cdpos-changenr,
             END OF i_object_list.
      DATA : i_cdpos LIKE TABLE OF i_object_list WITH HEADER LINE,
             i_obj_lst LIKE LINE OF i_cdpos.
      DATA : tabnamev2 TYPE string.
      IF i_option EQ 'X'.
        MOVE tabnameo2 TO tabnamev2.
      ELSE.
        MOVE tabnameo1 TO tabnamev2.
      ENDIF.
    *LOOP AT i_cdhdr_data TO i_obj_lst.
      SELECT objectclas objectid changenr
        INTO TABLE i_cdpos
        FROM cdpos
        FOR ALL ENTRIES IN i_otf_objcs
        WHERE objectclas = i_objcl AND
              (objectid) AND
              (changenr) AND
              (tabname) AND
              (tabnamev2) AND
              (fname).
      LOOP AT i_cdpos.
        APPEND i_cdpos-objectid TO i_global.
      ENDLOOP.
    *ENDLOOP.
    ENDFORM.                    "find_cdpos_data

    Hey Mart,
    This is what I met, unfortunately I get the same performance with for all entries.
    But with a lot of more code.
    FORM find_cdpos_data
      TABLES
        i_otf_objcs TYPE STANDARD TABLE
      USING
        i_objcl TYPE j_objnr
        i_obj_lst TYPE any
        i_option TYPE c
      CHANGING
        i_global TYPE STANDARD TABLE.
      " Hint: cdpos is a cluster-table
      CONSTANTS : objectid TYPE string VALUE 'objectid = i_obj_lst-objectid',
                  changenr TYPE string VALUE 'changenr = i_obj_lst-changenr',
                  tabname TYPE string VALUE 'tabname = i_otf_objcs-tablename',
                  tabnameo1 TYPE string VALUE 'tabname NE ''''',
                  tabnameo2 TYPE string VALUE 'tabname NE ''DRAD''',
                  fname TYPE string VALUE 'fname = i_otf_objcs-fieldname'.
    *  DATA : BEGIN OF i_object_list OCCURS 0,
    *            objectclas LIKE cdpos-objectclas,
    *            objectid LIKE cdpos-objectid,
    *            changenr LIKE cdpos-changenr,
    *         END OF i_object_list.
    ** complete modified code [begin]
      DATA : BEGIN OF i_object_list OCCURS 0,
                objectclas LIKE cdpos-objectclas,
                objectid LIKE cdpos-objectid,
                changenr LIKE cdpos-changenr,
                tabname LIKE cdpos-tabname,
                fname LIKE cdpos-fname,
             END OF i_object_list.
    ** complete modified code [end]
      DATA : i_cdpos LIKE TABLE OF i_object_list WITH HEADER LINE.
      DATA : tabnamev2 TYPE string.
    ** complete modified code [begin]
    FIELD-SYMBOLS : <otf> TYPE ANY,
                    <otf_field_tabname>,
                    <otf_field_fname>.
    ** complete modified code [end]
      IF i_option EQ 'X'.
        MOVE tabnameo2 TO tabnamev2.
      ELSE.
        MOVE tabnameo1 TO tabnamev2.
      ENDIF.
    **  SELECT objectclas objectid changenr
    **    INTO TABLE i_cdpos
    *  SELECT objectid
    *      APPENDING CORRESPONDING FIELDS OF TABLE i_global
    *      FROM cdpos
    *      FOR ALL ENTRIES IN i_otf_objcs
    *      WHERE objectclas = i_objcl AND
    *            (objectid) AND
    *            (changenr) AND
    *            (tabname) AND
    *            (tabnamev2) AND
    *            (fname).
    ** complete modified code [begin]
      SELECT objectid tabname fname
          INTO CORRESPONDING FIELDS OF TABLE i_cdpos
          FROM cdpos
          WHERE objectclas = i_objcl AND
                (objectid) AND
                (changenr) AND
                (tabnamev2).
    ASSIGN LOCAL COPY OF i_otf_objcs TO <otf>.
      LOOP AT i_cdpos.
      LOOP AT i_otf_objcs INTO <otf>.
       ASSIGN COMPONENT 'TABLENAME' OF STRUCTURE <otf> TO <otf_field_tabname>.
       ASSIGN COMPONENT 'FIELDNAME' OF STRUCTURE <otf> TO <otf_field_fname>.
        IF ( <otf_field_tabname>  EQ i_cdpos-tabname ) AND ( <otf_field_fname> EQ i_cdpos-fname ).
          APPEND i_cdpos-objectid TO i_global.
          RETURN.
        ENDIF.
      ENDLOOP.
      ENDLOOP.
    ** complete modified code [end]
    **  LOOP AT i_cdpos.
    **    APPEND i_cdpos-objectid TO i_global.
    **  ENDLOOP.
    ENDFORM.                    "find_cdpos_data

  • Hello there. i lost my Ipad and i need to log out all email and facebook. Also is there any chance get my diary somehow. how can i log out from my Ipad? please help, i have very important information and other stuff in my Ipad?

    I need help to log out from my stolen Ipad. please help.

    If you had installed iOS 7 it would be Activation locked, but I see you only have iOS 5. You do have a backup of you iPad files on your computer or iCloud, don't you?
    If the iPad was running iOS 7, the thief/finder will not ever be able to use it.
    iCloud: Find My iPhone Activation Lock in iOS 7
    http://support.apple.com/kb/HT5818
    Apple (and no one else) can not assist (with serial number or iCloud) in finding a lost or stolen iPad.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/HT5668
    How to Find a Missing iPad with FindMyiPad
    http://www.dummies.com/how-to/content/how-to-find-a-missing-ipad-with-findmyipad .html
    iCloud: Locate your device on a map
    http://support.apple.com/kb/PH2698
    iCloud: Lost Mode - Lock and Trace
    http://support.apple.com/kb/PH2700
    iCloud: Remotely Erase your device
    http://support.apple.com/kb/PH2701
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    General steps to follow for a Stolen iPad
    http://stolen-ipad.com/
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    What NOT to do if your iPhone or iPad is lost or stolen
    http://www.tomahaiku.com/what-not-to-do-if-your-iphone-or-ipad-lost-or-stolen/
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st Len
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
    Check the serial number (located on back/bottom) in this lost/stolen iPad database. However, most owners are not aware of this database and don’t enter the serial number.
    Stolen iPad Database
    http://www.stolenlostfound.org/online-stolen-ipad-database
    Also do a search, using the serial number, on your local Craig’s List. Some users list the serial number of a stolen iPad to thwart the sale of a stolen device.
     Cheers, Tom

  • RFC enabled module to read CDPOS and CDHDR

    Hello all,
    We are working in a process from Webdynpro Java that need the historical changed produced in sales order. In order to do it, I have found a couple of FM: CHANGEDOCUMENT_READ_HEADERS and CHANGEDOCUMENT_READ_POSITIONS
    The problem is that those FM are not Remote call enable and cannot be used from Java.
    Do you know some remote FM (RFCs) to retrieve this information?
    Thanks in advance

    Bruce,
    What you mean? That is exactly what I am looking for "related BAPI functions"
    Do you know any BAPIs to get that information?

  • Windowserver log entries: kCGErrorIllegalArgument:

    I'm a newbie to Mac & OS X - I'm seeing lots of entries (sample below) in the log which I don't understand.
    Any help appreciated.
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXOrderWindow: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:29:53 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller SystemUIServer
    Dec 09 11:44:49 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller Tunnelblick

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Log Entries not sorted in Problem work items

    We have noticed that the Log Entries in all Problem work items appear to be randomly sorted. You can manually sort them by clicking on the column headers.
    Log entries for Service Request and Incident work items are sorted by Created date as default which I guess is how most people would want them.  Has anyone else noticed this or can this be configured locally somehow?
    Thanks

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • WATERMARK log entries

    Hi guys,
    by any chance you might know what are IPC-WATERMARK/ICC-WATERMARK log messages, I googled, everything points to the fact that they are cosmetic, which is not the case, as SIP-400 stops passing traffic, sometimes even directly connected, until box is completely reloaded, module reload does not help. Router is ISG terminating a few K PPPoE sessions, and is one of the anycast RP's, for the access plant. Without reload it causes massive outage 1-2 hours. 
    Entries keep on logging, even after multicast sources were stopped.
    Any input would be much appreciated.
    Thank you,
    Elnur

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How can i log transaction codes, programes and tables used by a user?

    Hi everyone,
    i need to log transaction codes, programes and tables a user has used in a certain time. how can i trace that and is it possible with timestamps?
    i tried something with the badi workload_statistic but thats not what i need. is there a simple function which can do that or is this really much more complicated?

    In SE13 there is an option to log table changes for a table.
    If you search for "SCU3" you will find plenty of information on this. Also search for "RECCLIENT" (without the "/") and you will find some more specialized threads.
    Cheers,
    Julius

  • Log an analog channel and counter period channel to hard disk simultaneously

    We are in a rush, and need to log one analog channel and one counter period measurement to disk simultaneoulsy using card controlled timing and set # of samples. Should be easy, but can't figure it out. Labview 6.1 we have & DAQ 6013E we just bought.

    Greetings,
    With regards to logging analog input data to file, I would suggest that you examine the examples available in the following location:
    Examples >> Hardware Input and Output >> DAQ >> Analog Input >> Stream to Disk
    Because you are interested in a finite number of samples, you should look at Acq N Scans to File (wdt).vi.
    With regards to logging period measurement data to file, I would suggest that you examine the following example:
    Examples >> Hardware Input and Output >> DAQ >> Counters >> DAQ-STC >> Measure Buffered Period (DAQ-STC).vi
    This example does not log to file, but it does demonstrate how to program a buffered period measurement. You will need to add the logging functionality to this VI as demonstrated in Analog Input >> Stre
    am to Disk.
    Good luck with your application.
    Spencer S.

  • I have lost my phone and want to use the find my iphone app to delete all the info on my phone. How can i do this on another persons iphone? do i need to log out of their icloud account and then sign in under mine?

    I have lost my iphone 4s and want to use find my iphone app on my boyfriends iphone 3s to delete the info on my now lost phone. Do i need to log out of his icloud inorder to log into mine to do this on his phone?

    You need to use the Find My iPhone app (in the itunes store - free).  When invoking it on a device, you enter the ID password of the account the lost device is connected to.  You can also use a computer's browser and log into icloud.com.

  • I have changed my Apple ID name and I want to change it on iCloud, however I am not able to delete the previous account because I need to turn off the Find my iPhone - and for that I need to log in with the old name and that is not working. Help anyone?

    I have changed my Apple ID name and I want to change it on iCloud, however I am not able to delete the previous account because I need to turn off the Find my iPhone - and for that I need to log in with the old name and that is not working. Help anyone?

    Hey tulgan,
    This link will provide information on what to do after you change your Apple ID:
    Apple ID: What to do after you change your Apple ID
    http://support.apple.com/kb/HT5796
    Welcome to Apple Support Communities!
    Take care,
    Delgadoh

Maybe you are looking for

  • Newly added field in the data Source not getting populated

    Hello All, We have added few fields in the Data Source. The Data Source is based on the InfoSet. We have included the field in the Infoset and have updated the code to fetch the value for the newly added fields. When we perform the test extraction fo

  • Function Module to Calculate Capacity per Shift.

    Hello SAPients. I have to create a report where I have to distribute the production requirement (table KBED) in different shifts. I tried to calculate the values with normal calculation in programming but it's getting too complicated finding the righ

  • Problem running servlet using PJA tools

    Hi I am trying to run the TeksSurveyPie servlet from the PJA Package.But everytime i run it says Internal error: Unexpected error condition thrown (java.lang.NoClassDefFoundError: TeksSurveyPie (wrong name: com/eteks/servlet/TeksSurveyPie),TeksSurvey

  • Customized Report from 10g R2

    Hi, I am trying to create a customized report which actually joins 2 reports (Hardware Summary and Operating System Summary). Can anyone help me with this. Is it possible at all ?

  • Can we combine multiple excel files into one excel file using SSIS?

    I have a bunch of excel files in a specified folder. I wanted to combine all the excel files into one excel file by adding additional tabs in one excel file. Can I do this using SSIS?          OR I know using macro we can combine multiple excel files