How to find out what are all the change pointers assoicated for an idoc ??

Hi ,
How to find out what are all the change pointers activated for an idoc ??
Thanks,
Varma

Verma,
You can check what are the active Change Pointers for the message type in tcode <b>BD50</b>
Use tcode <b>BD61</b> to check whether change pointers are active or not??
Hope this helps..

Similar Messages

  • How to Find out what are the top 20 queries executed in the system

    Hi Guru's,
    I would like to know how to gather the information regarding the Top 20 queries used in the system per week, by a multicube.
    Note: I am using BI 7.0 and also Statistics are turned on.
    People have provided me the Cube name and table name last time but nothing seems to work.
    I do not have the query names and I just have my multiprovider name and with the help of that, I want to find out what are all the queries which were executed related to that multiprovider.
    Thanks and regards,

    Hi,
    Here is an idea for your request.
    Basically you can create a simple query on multiprovider 0TCT_MC01.
    Filter: you can use a variable for restriction of time ( calday, or calmonth) since you should be interested for a time period.
    Choose following characters into your objects:
    InfoProvider ( 0TCTIFPROV )  - you can create a variable for choosing infoprovider before query runs.
    *Tp.[Type of BI Application Object] 0TCTBISOTYP  = filter this with 'QUERY' or whatever your need is.
    *BI Application Object 0TCTBISBOBJ,  ( this will give you the name of the queries)
    In key figures choose,  Count for BI Appl. (0TCTWTCOUNT).
    (number for query run)
    Create a condition , for top 20.
    Hope this helps.
    Derya

  • How do we know what are all the fields  updated in a screen?

    Hi all,
             If i am making modifications in row details of sales order screen .for eg, <b>i am changing the quantity or price for a row</b> 
             I want to write log file for the updated fields for that particular sales order.
             <b> How do we know what are all the fields are updated ?</b>     
             If we can use SBOTransaction_Notification procedure.How to write code inside that.
             Please provide code example for that.I have downloaded the sample.But i donot know how to use 'Add code to here ' part.
             Please help me to solve this.Hope  your  reply soon
    Regards,
    V.Rangarajan

    Hi, V.Rangarajan!
    When the field in the matrix is filled with some value and the user moves to another field, the et_LOST_FOCUS event occurs. So, i think you can try to handle ItemEvents and use such code (for example):
    if (pVal.EventType == SAPbouiCOM.BoEventTypes.et_LOST_FOCUS && pVal.ItemUID == "38" && pVal.BeforeAction == false && pVal.FormType == 139)
    string ChangedColumnID = pVal.ColUID;
    int ChangedRowNumber = pVal.Row;
    and write the values to your log.
    "38" - is the matrix ID in the Orders form
    "139" - is the Orders form
    Also you can access to the value, that user had put into the field.
    Hope this helps!

  • How to find out what are the interfaces used for Job and Job Codes

    HI All,
    I just wanted to know how do we find out what are the interfaces used for Job and Job codes .
    Thanks In Advance
    Sunny

    Hi,
    Here is an idea for your request.
    Basically you can create a simple query on multiprovider 0TCT_MC01.
    Filter: you can use a variable for restriction of time ( calday, or calmonth) since you should be interested for a time period.
    Choose following characters into your objects:
    InfoProvider ( 0TCTIFPROV )  - you can create a variable for choosing infoprovider before query runs.
    *Tp.[Type of BI Application Object] 0TCTBISOTYP  = filter this with 'QUERY' or whatever your need is.
    *BI Application Object 0TCTBISBOBJ,  ( this will give you the name of the queries)
    In key figures choose,  Count for BI Appl. (0TCTWTCOUNT).
    (number for query run)
    Create a condition , for top 20.
    Hope this helps.
    Derya

  • How to find out what are the functions supported by string class

    Hi,
    Can any one let me know how to find what are all the functions supported by the string class in standard(STL) library on solaris.
    Regards,
    Vignesh

    1. Any C++ textbook that covers the Standard Library will tell you about the standard string class. A good tutorial and reference for the entire Standard Library is "The C++ Standard Library" by Nicolai Josuttis, published by Addison Wesley.
    2. WIth Sun C++, the command
    man -s3C++ basic_string
    provides documentation for the default libCstd version of the Standard Library.
    3. You could look at the <string> header itself. I don't recommend that approach.

  • How to find out what are in my startup?

    My macbook has only 2 GB but since it's already 4 years old, I don't want to spend any more money to increase its memory, I'm just going to use it until it dies and goes to Mac Heaven.
    This morning I checked the system memory and noticed that even when I was not online, it has 730 MB "active". So, I went to the harddrive and clicked open the Library and found the folder called "startup items", to my surprise, the folder is empty. My question to you is: how do I find out what are those "active" items?
    Thank you in advance for your input.

    Your operating system would be using at least that much RAM. It is a non-issue.
    Stedman

  • How to find out what is using the native heap of a process running a JVM?

    Hello,
    I am not sure where to post this question so I am starting here.
    I am troubleshooting a Java application using some native calls (32 bits Java running on Solaris 10). The size of the process (as reported by prstat) is slowly increasing day after day.
    The size of the 'Java heap' is fixed at the start (-Xms and -Xmx are set to the same value on the command line when launching the Java app) and the GC is workling fine. No memory complaints from the Java side of the application.
    It is the size of the 'native' heap (as reported by 'pmap') that is increasing:
    root@mas01 # pmap 5382
    5382:/apps/java/bin/java -server -Xms207M -Xmx207M -XX:MaxNewSize=24M -XX:N
    00010000 64K r-x-- /apps/jdk1.5.0_19/bin/java
    0002E000 16K rwx-- /apps/jdk1.5.0_19/bin/java
    00032000 3896K rwx-- [ heap ]
    00400000 389120K rwx-- [ heap ]
    18000000 2784K rwx-- [ heap ]
    DCAF4000 48K rw--R [ stack tid=169 ]
    DCBF6000 40K rw--R [ stack tid=161 ]
    DCCF8000 32K rw--R [ stack tid=160 ]
    My first reaction was to search for a memory leak. Found a minor leak in the JVM with the ::findleak function (called within the mdb debugger). Upgraded to a later release of Java 5 (Java 1.5.0_19) where the leak is fixed but the heap is still increasing.
    Many parts of the process allocate memory in the native heap. The JVM itself, the native calls made to a C++ library part of our Java application and maybe also some 3rd party software.
    I would like to know what is the best way to find out what is consuming more and more memory in the native heap. I started looking a DTraces but I am new to this. I also thought maybe the Solaris Perftools might be of use but I never used them. Before plunging into a tool more or less blindly, I am asking for advices on how to tackle this issue. Can someone recommend a tool/method to see what is allocated in the heap?
    Regards,
    Stéphan
    Edited by: StephanDupont on Sep 22, 2009 8:47 AM

    After googling a lot I managed to run my application with libumem, generated a core file and succeeded to find some leak with mdb even if ::findleak reported nothing.
    Does anyone knows if the ::findleak (you need libumem and mdb) is supposed to find leak in the native part of the memory and a Java application using the JNI interface?
    Regards,
    Stéphan

  • How to find out what code called the procedure

    Hi,
    I'm doing an error logging api, that will log errors when it's called. What I wasn't to know is if there's a way to find out what procedure/function called the api?
    One way is to pass the function as a text variable but it would be cool if the api could find out who called it.
    Hope i made myself clear :-)

    I think you can use DBMS_UTILITY.FORMAT_CALL_STACK (I assume that's also what Tom K is using in his utility - with a nice wrapper around it).
    Look at this example:
    SQL>CREATE OR REPLACE procedure p as
      2  begin
      3   dbms_output.put_line(dbms_utility.format_call_stack);
      4  end;
      5  /
    Procedure created.
    SQL>CREATE OR REPLACE procedure p2 as
      2  begin
      3    p;
      4  end;
      5  /
    Procedure created.
    SQL>CREATE OR REPLACE procedure p3 as
      2  begin
      3    p2;
      4  end;
      5  /
    Procedure created.
    SQL>exec p3;
    ----- PL/SQL Call Stack -----
      object      line  object
      handle    number  name
    38aad05a8         3  procedure HRM.P
    38aaa6990         3  procedure HRM.P2
    38aa9f470         3  procedure HRM.P3
    38a6e9d88         1  anonymous block
    PL/SQL procedure successfully completed.
    SQL>

  • How to find out what attributes were really changed in AD?

    It it possible to find out what changes were really made in Active Directory resource?
    Example:
    I set two attributes: 'groups' and 'company'. One of groups doesn't exist or user(specified in resource configuration) dosn't have permission to add this group. Result of provisioning: idm set company, set other groups and there is error message in WF_CASE_RESULT. In audit log I see correct data - all attempted groups are in 'attempted value' and saved groups are in 'new value'.
    So the question is:
    Is it possible to find out what really happend - what groups were saved and what groups weren't (or maybe none of attributes were saved)?

    When one of groups doesn't exists I got "Error opening object 'LDAP://CN=...,OU=...': ADsOpenObject(): 0X80072030: , 0000208D: NameErr: DSID-031001CD, problem 2001 (NO_OBJECT), data 0, best match of: 'OU=...' , There is no such object on the server. "
    The problem is: WF_CASE_RESULT doesn't contain what groups were added and what groups weren't (at least I can't find this information). Maybe I can find it by analyzing errors, but I don't think it's good solution because there are a lot of errors that can happen and I need to know error messages for all of them.

  • How to find out what is in the web cache

    I have set up the web cache and its showing
    25% fresh hits, 25% cacheable misses and 50% non-cacheable misses and I want to look at what is not getting cached to see how to improve this ....
    But all I can see is stats of the cache and no details of what is in the cache...
    Any suggestions
    Rob

    Our upcoming release will include a feature which will tell you what's in the cache. This is a new feature, so we won't release it as part of a patch set, rather as part of the next dot release.

  • Under Finder Menu what are all the entries shown and is it OK to delete them?

    All My Files, under the Finder menu shows every web site, item, log, email, favicon that I have ever clicked on. Is this normal and is it OK to delete all this? I would think my HD will fill up very soon at this rate.

    DON'T delete them - they are your files!
    It is not filling anything up. This is just a view of all your files, it is not creating any copies of them, wherever they are on your hard drive.
    If, like me, you don't like seeing *all* your files at once - I have hundreds of thousands, organized just the way I want them, so I have no use for this feature - just go to the Finder preferences and uncheck it:
    Finder->Preferences->Sidebar
    and uncheck the box that says "All my files".
    (or, alternatively: control-click on the "All my files" icon in one Finder window's sidebar, and click "remove from sidebar").

  • How to find out what is under the mouse pointer in a StyledDocument

    Hi all!
    I have a DefaultStyledDocument in a JTextPane.
    styles = new StyleContext();
    doc = new DefaultStyledDocument(styles);
    JTextPane p = new JTextPane(doc);
    i than add a view strings to the document using insertString, some of them using a style with an icon.
    The question now is: can i somehow determine which icon ( or at least which object, inserted by insertString ) is under current mouse position, without setting the caret to this location? or can i trigger an event when the user clicks on such an icon?
    thanks in advance for your help
    eabin

    Use this method :
    public int viewToModel(Point pt)
    and take a look at my answer in this Thread. I think it can give you an idea :
    http://forum.java.sun.com/thread.jsp?forum=57&thread=227390
    Denis

  • What are all the different methods/tools for creating animations that work in IBA?

    I've been developing HTML5 animations in Sencha and attempting to use the HTML widget in IBA.  It's not going as seamless as I was hoping, and I was wondering if there are better methods/tools to create animations for IBA.  In my opinion, the primary limitation is not in Sencha itself, it's more in the widget functionality in IBA. 
    I want the entire page to be an animation and drive the user experience, basically.  Currently in IBA, the widget allows for successfully importing an HTML5 animation, but in more as a complementary role to the page instead of the primary content. 
    Any ideas?

    Thanks Fabe - I agree 100%.  However, in order to make fully dynamic books, animations can play a great role in bringing a book to life.  (Admittedly, I may have to just build an app for what I'm trying to do)
    Anyone else have any thoughts?

  • How to find out what Boot Camp Support Software to use for my macbook

    these are my specs:
    Model Name:
    MacBook
      Model Identifier:
    MacBook7,1
      Processor Name:
    Intel Core 2 Duo
      Processor Speed:
    2.4 GHz
      Number of Processors:
    1
      Total Number of Cores:
    2
      L2 Cache:
    3 MB
      Memory:
    2 GB
      Bus Speed:
    1.07 GHz

    Welcome to the Apple Support Communities
    You have a Mid 2010 MacBook. See > http://support.apple.com/kb/HT5634
    As you are using OS X Lion, you can only use Boot Camp 4 drivers, so you can only install a 32 or 64-bit Windows 7 version (you can't run Windows XP, Vista or 8 with Boot Camp). The best way to get the Boot Camp drivers is to open Boot Camp Assistant and download the Windows support software from here. If not, you can also download these drivers from this Apple site > http://support.apple.com/kb/DL1634

  • How to identify what are all the errors appears in process chain,

    Hi all,
    i have a process chain running, but i want to find out what are all the errors that the process chain has thrown
    thanks
    pooja

    Hi Pooja,
    Errors in monitoring:
    SID error
    Reason: If the corresponding master data is missing for the particular transaction data.
             1. Check for the load timing for the respective master data, if it less than an hour  then make the request red and repeat the ip.
             2. If the data is loaded to PSA then you have to delete the request from target and manually push the data to from PSA.
             3. If we are required for selective update then note down the info source from header and find it in RSA1,select the one with ‘Single as postfix’.
             4. Goto ‘data selection’ tab and change the range.
    Tip: change the last 4 digits for from to ‘0000’and the last 4 digit for to     ‘9999’.
            5. Repeat the ip.
             6. In case only of failure in one target goto RSA1 find the PSA, put he request no. and reschedule it.
    Note: IF PSA is present never make the request red rather delete it.
    Replication error
    Reason: Data source replication Failed.
             1. In order to handle this error you should be known to IP, info source and source system.
             2. Goto RSA1, find the data source in the source sys tab.
             3. Right click on the data source and replicate it.
             4. Since all the transformation rules pertaining to this data source need to be reactivated so go to SE38 and execute rs_transtru_activat_all, data source and sys name.
             5. Delete the ‘red’ request from the target.
    Update R not supported
    Reason: The corresponding initialization flag for the ip is lost.
             1. Goto header click on the ip and goto schedule tab and click initialize in the source system, whatever screen appears delete the only request present(the initialization flag).
             2. Goto RSA1, find the ip in the info source (one with the Adhoc initialize flag).
             3. Goto update tab and select ‘Initialize delta process’ try going for ‘with data transfer’.
             4. Reschedule the IP.
    Duplicate Record Error
    Reason: Duplicate error records for the loaded master data.
             1. Goto info package via header or via RSA1.
             2. Goto ‘processing tab’ and change the ip setting, selecting only PSA and ignore duplicate records and re run the ip.
             3. Do remember to change the ip settings back to the original once after the second step.
    ODS activation failure
    Reason: Prerequisites for ODs activation not satisfied i.e. unique key.
             1. Goto ‘maintain variant’.
             2. Check for the ‘QM’ status of the requests in the target they should be green.
             3. Then click the ODS activation tab.
             4. In the screen which appears put the requests for which ODS activation failed.
             5. Activate these and keep on refreshing them until status reverts from green,
    Remember to refresh these requests one at a time.
             6. If requests are red then delete them from target.
             7. Reschedule the IP.
    Note: Never Try activating ODS manually if it is Y1.
    Aggregate Rollup error
    Reason: No aggregate found for the respective rollup.
             1. Click on the variant in which the error occurred.
             2. Goto chain tab and copy the variant and instance.
             3. Run the nestle provided program YBW05.
             4. Put in info in there and put the status as g – ‘green’.
             5. Execute and refresh the status.
    Lock issue
    Reason: The same ip is been locked by other user or may be used by other process chain.
             1. We can see the locked entries and in the transaction SM12.
             2. Wait for the other process to get complete once the ip loads to target in that process then there is no need for running it for the process.
             3. In other case make the request red, when PSA is present then goto environment tab ->schedule->initiate update.
             4. In the box appears select update in the background.
             5. And the manually update the failed IP’s by selecting manual update in the context menu.
    Alfa confirming value error, Time conversion error, Chain didn’t start, Delay due to long running job, Poor system performance,Heirarchy node exist in duplicate.
    Reasons:
      Alfa confirming error: Data format mismatch.
      Time conversion error: Date, time format mismatch.
      Chain didn’t start: A scheduled chain didn’t triggered at the prescribed timing.
    -For all the above error we have to raise a ticket.
    Idoc or TRFC error
    Reason: An Idoc is been stuck somewhere.
             1. Reload the Master Data manually again from Info-package at RSA1.
             2. Release the Idoc.
             3. In the source system level got environment->transaction->Transaction RFC or Data ware housing level.
             4. In the Screen if the status is ‘Transaction Recorded’ it means its stuck goto edit and click Execute LUW or press F6.
             5. If status is ‘Transaction executing’ then it means its fine wait.
             6. Or raise ticket.
    Error Due to short Dump
    Reason: Error due to Short dump could be due to many reasons i.e. memory, table space, lock, error record, page allocation, failed change run.
    Process terminated in the Source system.
               Reason: Sometimes we face that a load has failed due to job Termination at Source System.             
          This happens due to unavailability of the source system or some connectivity problem between source and target systems.
    1.      Make the request red.
    2.      Delete the request from the data target.
    3.      Reschedule the ip.
    4.      If still the job fails raise the ticket.
    And also check in following links:
    Process Chain Errors
    /people/mona.kapur/blog/2008/01/14/process-chain-errors
    Common Process chain errors
    For Data Load Errors check this blog:
    /people/siegfried.szameitat/blog/2005/07/28/data-load-errors--basic-checks
    Pls assign points if it helps u,
    Thanks & Regards,
    Madhu

Maybe you are looking for

  • Import org.apache.xml.serialize.*;

    .java:66: package org.apache.xml.serialize does not exist import org.apache.xml.serialize.*; ^ i am getting this error while running a java program, which i downloaded from a open source. i am using J Creator. i suppose i need to add a class path or

  • How to add MacBook Pro name in iphone5 iCloud as a family sharing device.

    How to add MacBook Pro name in iphone5 iCloud as a family sharing device. i have added my family members in my iPhone 5 with newly updated iOS 8 os, but when i am doing same procedure to add my macbook pro it's giving an error message that cannot sen

  • Caching web content

    Hi. I have this servlet which caches frequently used disk data (images, css sheets etc.), and stores it into memory, so that it eliminates disk I/O overhead in order to increase throughput. Is it worth it ? Thanks.

  • Express card issue

    Hi Folks, I upgraded to Leopard, then to Snow Leopard recently and just noticed that somewhere along the way my Express Card is no longer working. I can't even see it as a hardware device. I run XP via bootcamp mostly on the MBP, and the card works f

  • Keep getting "FaceTime failed" when trying to make calls from my iMac

    I am trying to make FaceTime calls from my  iMac. So far it has not worked at all. No matter what number I try to call (I am calling people who have FaceTime enabled iPhones), it rings for a while and then I get "FaceTime failed". Any ideas what it c