Information about activation-statistics from a DSO.

Hello,
after activating a request in an DSO, I can see the three key-figures in the log-window:
1) Number of inserted Records
2) Number of updates Records
3) Number of deleted Records
Unfortunately I see this information for each Data-Package, but I need it for the whole request.
Because I have many DSOs and very many Data-Packages it is very hard to add this data manually.
Is this information stored in any table, so that i can get it with the Data-Browser (SE16) ?
Thanks
Armin

Hi Alice,
in the table you mentioned, I can see only the active records.
But I will try to analyse the change-log of the DSO, might be this will bring the needed information.
(The reason for all of this effort is, to find out, wether it is neccessary to implement a delta-handling for a DSO or not.)
Armin

Similar Messages

  • Gettting information about the processInstance from BPMObject

    To have our businesslogic manageable, we decided to make use of BPMObjects to more clearly define separation of concerns. However, we still need to be able to access information about the processInstance from the BPMObject. I am able to get information about the activity that invoked the bpmObject, and i am also able to get hold of the process id and name. But I havent been successful in getting the actual instanceId.
    I tried Fuego.Lib.ProcessInstance.id.id, but that will only work from an activity, not a BPMObject.
    BR
    Peter Elfström

    To have our businesslogic manageable, we decided to make use of BPMObjects to more clearly define separation of concerns. However, we still need to be able to access information about the processInstance from the BPMObject. I am able to get information about the activity that invoked the bpmObject, and i am also able to get hold of the process id and name. But I havent been successful in getting the actual instanceId.
    I tried Fuego.Lib.ProcessInstance.id.id, but that will only work from an activity, not a BPMObject.
    BR
    Peter Elfström

  • Need information about "Activation Task"

    Hi at all
    I need information about "HOW" the activation task work. I try to found information on Metalink and I can't found anything. Who anyone show me where I can find this information?
    The information from Design Studio are not enough.
    Thanks in advice
    Luis
    Edited by: Luis_ITA on 9-giu-2011 10.35

    Hi Luis,
    Following are the resources you can use to seek information about Activation Tasks:
    1. Following link is from OU that provides an overview of the Activation Task:
    http://ilearning.oracle.com/ilearn/en/learner/jsp/rco_details_find.jsp?srchfor=1&rcoid=920335765
    2. Design Studio Online Help provides comprehensive description about the task – what is it, how to use it, different compensation modes etc.
    Thanks,
    Deepankar (Deep) Dey
    OSM- Product Management

  • A PDF document with information about activation for CS6 software

    Here's a PDF document with information about activation for CS6 software.
    I found it very useful for understanding how the system worked for activation of perpetual licenses, both in cases where the computer is and isn't connected to the Internet.

    Ann, with some browsers, the PDF document will download in the background rather than appear in a browser window.

  • Getting information about an object from JList

    Hi
    I have created a movie application and i have a JList displaying all registered movies, it uses a DefaultListModel to display these.
    I want to be able to click on an element in the JList and then push a button called "Show movie details" to display all information about the selected movie.'.
    Every new movie is added to the DefaultListModel as an object with "Titlle", "Genere" etc. If someone click on a movie, what do i do to get information about which object that was clicked. All i can see is that integers can be returned with the getSelectedIndex/Value methods. If i use one of these methods to get the object from the DefaultListModel, that would work i guess, but what when someone deletes a movie in the middle of the JList, then the indexes wouldnt match.
    Can someone help me out here? :)

    I get a big fat exception when trying to cast the returned object to a Movie object which im using.
    Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.S
    tring cannot be cast to Movie
    ...sure that this is the way to do it? If so, what am i doing wrong..

  • Can I get information about client DNS from GSS?

    Can I get information about the client's DNS request and which Data Center was choosed for this request? How long these informations are stored in GSS? Can I change this settings?
    Thank you.

    Following link will give you good start
    http://www.cisco.com/application/pdf/en/us/guest/netsol/ns378/c649/cdccont_0900aecd80122a78.pdf
    Its a two year old document but gives a good overview.
    For details visit
    http://www.cisco.com/en/US/products/hw/contnetw/ps4162/tsd_products_support_configure.html
    Syed

  • Get information about business object from view implementation class

    Hi,
    i´d like to develop some button behavior in a view. How can i get the information of the related business object like the order or the position. I like to disable buttons if specific status are set.
    Bye Richard

    hi,
    Is needed field available in context nodes or not?
    for example:
    If you want to read STATUS_DESCR attribute from the context node SELECTEDDOC , then code like this
    lr_selected ?=  me->typed_context->SELECTEDDOC->collection_wrapper->get_current( ).
    if lr_selected is bound.
      lv_status = lr_selected->get_property_as_string( 'STATUS_DESCR' ).
    endif.
    activtae the debugging in IF_BSP_WD_TOOLBAR_CALLBACK~GET_BUTTONS method and check the values for context nodes and attributes.
    I mean debugging for:
    me->typed_context
    me->typed_context->SELECTEDDOC
    comp_controller
    regards
    ismail

  • Powershell, information about ODBC DSN from servers to database

    Hello,
    I have a question regarding moving data from format-list/format-table to database to the database
    I want to pull out data about ODBC created on the server and load them to the database - so far I have wrote code which gives me data about ODBCs:
    Get-ChildItem -path "HKLM:\SOFTWARE\Wow6432Node\ODBC\ODBC.INI" | ForEach-Object {Get-ItemProperty $_.pspath} | Select-Object PSChildName,Driver,Server,LastUser
    The question is: how to load data to different columns when data is like at the bootom of the post(info about DSNs are seperated only by Blank space)?
    Add variables to which I add data? Any other way? Any ideas will be appreciated :)
    Results:
    PSChildName : test-server
    Driver      : C:\Windows\system32\SQLSRV32.dll
    Description : Some desc
    Server      : TEST
    Database    : mobile
    LastUser    : sa
    BLANK SPACE
    PSChildName : test-server
    Driver      : C:\Windows\system32\SQLSRV32.dll
    Description : Some desc
    Server      : TEST
    Database    : mobile
    LastUser    : sa
    BLANK SPACE
    PSChildName : test-server
    Driver      : C:\Windows\system32\SQLSRV32.dll
    Description : Some desc
    Server      : TEST
    Database    : mobile
    LastUser    : sa

    Get-ChildItem -path "HKLM:\SOFTWARE\Wow6432Node\ODBC\ODBC.INI" |
    ForEach-Object {Get-ItemProperty $_.pspath} |
    Select-Object PSChildName,Driver,Server,LastUser |
    Format-Table -Auto
    ¯\_(ツ)_/¯
    Thanks for posting how to get the DSN listing. I have a related problem though:  the result of the one liner above does retrieve me a number of DSNs, however when I try to connect to one of them in my PC, I get the following error:
    Exception calling "Open" with "0" argument(s): "ERROR [IM002] [Microsoft][ODBCDriver Manager] Data source name not found and no default driver specified"
    This tells me that somehow powershell is not seeing the DSNs I have configured in the system, and that most likely is looking somewhere else for the DSNs. any suggestions? I've seen some
    posts about that message error, but I think first I need to get PS to look for the DSNs in the right place (32- or 64-bit issue maybe). thanks for any pointers  on this issue.
    orlando mendez

  • Helpful Information about getting music from ANY ipod onto your itunes!!!

    This is a message letting all Windows itunes users how to put music from any ipod onto their itunes, or other music player. Many people are annoyed when itunes doesn't let them put music from an ipod, thats not registered with their computer, into their itunes. I found that it is possible. First, you must open Search from the start menu and make sure your ipod is connected to your computer. Next, set the search prefrences to search for hidden files and tell it to search for music(on the ipod). Once you begin the search, you will be shown all the hidden music files that are on your ipod. After the search, just drag the files to itunes and they'll import.*
    *Note: the files wont say the names of the songs until you import them into itunes or any other music player.
    PowerbookG4   Mac OS X (10.4.9)   Helpful Info for Windows

    This is a message letting all Windows itunes users
    how to put music from any ipod onto their itunes, or
    other music player. Many people are annoyed when
    itunes doesn't let them put music from an ipod, thats
    not registered with their computer, into their
    itunes. I found that it is possible. First, you must
    open Search from the start menu and make sure
    your ipod is connected to your computer. Next, set
    the search prefrences to search for hidden
    files and tell it to search for
    music(on the ipod). Once you begin the search, you
    will be shown all the hidden music files that are on
    your ipod. After the search, just drag the files to
    itunes and they'll import.*
    *Note: the files wont say the names of the songs
    until you import them into itunes or any other music
    player.
    PowerbookG4
      Mac OS X (10.4.9)   Helpful Info for
    Windows

  • How to get information about Machine Statistics

    HI
    I have program written in java.At one part of program i want to add such a function which include following functionality
    1-What is Processor state
    2-How much memory Used and how much is total memory
    3-How much thread my program is handle with as its multithreaded
    4-how much disk space is left
    Any suggestion s
    Thanks

    Hi,
    You might want to be interested in the management package in JDK 1.5:
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/management/package-summary.html
    It has JMX Beans which allows you to minotor the VM, but you won't be able to check how much disk space there is left. (You can't do that in JDK 1.5, I think it will be added to later versions of Java)
    Kaj

  • A way to get information about colored points from a graph?

    Two questions:
    1. Is there a possibility to know whether a specific point is already plotted in a graph and what is the color of that specific point?
    2. Is there a way to use the legend in order to show what each colored point represents (not lines, only colored points..)?
    Thank you!

    1. I used PlotPoint & a function "returncolor" in order to make each colored point present a different situation depend on variable 'x':
    double m_abs (double x) {
    if (x < 0) return -x;
    return x;
    int returncolor (double x) {
    if (m_abs(x) <= 0.05) return VAL_GREEN;
    if (m_abs(x) <= 0.15 && m_abs(x) > 0.05) return VAL_BLUE;
    if (m_abs(x) <= 0.25 && m_abs(x) > 0.15) return VAL_DK_MAGENTA;
    return VAL_RED;
    The problem occurs when PlotPoint used twice for the exact same point with different colors so only the last colored point would remain.
    I want that in this case, only the color with the maximum variable 'x': would remain..
    Sם I can solve it by saving the data to 2D array.. but I thought maybe there is an option to get true or false whether a point exist on a specific location in a graph or not, and what is the color of that point.
    2. Yes, I have already used annotations., but too bad there is no way to put legend for colored points..

  • Document from file - how better store information about document?

    I have a text file that contains information about documents (content from groups than define the document - one row is one document). Every group content from fields (from 10 to 70 in every group). Document consist of 9 groups. In one documen can difference number of groups (> 1 group). E.g. one document can have 3 group1, 2 group6. In another document 2 group9, 1 group 6 and so on. I need to store document in DB and must edit document (by JFrame). To store document I use object MyDocument to store information about document.
    3 solutions:
    1. Store every group as list from hastables
    public class MyDocument {
       private ArrayList<Hashtable<String, String>> group1;
       private ArrayList<Hashtable<String, String>> group2;
       private ArrayList<Hashtable<String, String>> group3;
       private ArrayList<Hashtable<String, String>> group4;
       private ArrayList<Hashtable<String, String>> group5;
       private ArrayList<Hashtable<String, String>> group6;
       private ArrayList<Hashtable<String, String>> group7;
       private ArrayList<Hashtable<String, String>> group8;
       private ArrayList<Hashtable<String, String>> group9; 2. Store all groups as one list from hashtables
    public class MyDocument2 {
      private ArrayList<Hashtable<String, String>> allGroups;
    } 3. Store groups as lists consist from individual objects (MyDocumentGroup1, MyDocumentGroup2 and so on.)
    public class MyDocument3 {
       private ArrayList<MyDocumentGroup1> group1;
       private ArrayList<MyDocumentGroup2> group2;
       private ArrayList<MyDocumentGroup3> group3;
       private ArrayList<MyDocumentGroup4> group4;
       private ArrayList<MyDocumentGroup5> group5;
       private ArrayList<MyDocumentGroup6> group6;
       private ArrayList<MyDocumentGroup7> group7;
       private ArrayList<MyDocumentGroup8> group8;
       private ArrayList<MyDocumentGroup9> group9;
    public class MyDocumentGroup1 {
       private ArrayList<Hashtable<String, String>> group1;
    public class MyDocumentGroup9 {
       private ArrayList<Hashtable<String, String>> group9;
    }What solutions is better? Or maybe has another solution?

    Maybe better to store one document in ONE HashMap
    public class M2Document {
         private HashMap<String, String> data = null;in the next format:
    -------------key ---------value----------
    GroupID_FN | some value
    where, GroupID is ID of group, FN - field number
    example:
    -------------key ---------value----------
    Group1_1 | some value
    Group1_2 | some value
    Group2_1 | some value
    Group2_2 | some value
    Group3_1 | some value
    Group3_2 | some value

  • Get information about xlate

    Hello all!
    I need take information about NAT configuration from ASA5520 using SNMP.
    Could you help me? Is it possible? If yes how can I do it?
    Thanks

    hi,
    i'm not sure how to do it via SNMP but you could simply execute show xlate and show nat or show nat detail to get the info on your ASA.

  • Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site

    Have an existing ex2010 sp3 organization.
    Could not run ex2013cu1 setup from my newly built 2012 server, getting the error in the subject line.  I used the command line to run the AD preparation steps successfully from my 2012 DC/GC, then tried to run setup again from the new 2012 server and
    still get the same error.  The error itself in the log is pretty useless:
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0137] [0] Starting Microsoft Exchange Server 2013 Cumulative Update 1 Setup
    [05/07/2013 01:19:13.0137] [0] **********************************************
    [05/07/2013 01:19:13.0152] [0] Local time zone: (UTC-08:00) Pacific Time (US & Canada).
    [05/07/2013 01:19:13.0152] [0] Operating system version: Microsoft Windows NT 6.2.9200.0.
    [05/07/2013 01:19:13.0152] [0] Setup version: 15.0.620.29.
    [05/07/2013 01:19:13.0152] [0] Logged on user: DOMAIN\ADMINISTRATOR.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0168] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='sourcedir', Value='\\h1\f$\junk\installers\server\Exchange\2013cu1'.
    [05/07/2013 01:19:13.0215] [0] Command Line Parameter Name='mode', Value='Install'.
    [05/07/2013 01:19:13.0215] [0] RuntimeAssembly was started with the following command: '/sourcedir:\\SERVER\f$\junk\installers\server\Exchange\2013cu1 /mode:Install'.
    [05/07/2013 01:19:13.0215] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:19:13.0793] [0] Finished loading screen CheckForUpdatesPage.
    [05/07/2013 01:19:38.0762] [0] Finished loading screen UpdatesDownloadsPage.
    [05/07/2013 01:19:40.0496] [0] Starting file's copying...
    [05/07/2013 01:19:40.0496] [0] Setup copy files from '\\SERVER\f$\junk\installers\server\Exchange\2013cu1\Setup\ServerRoles\Common' to 'C:\Windows\Temp\ExchangeSetup'
    [05/07/2013 01:19:40.0700] [0] Finished loading screen CopyFilesPage.
    [05/07/2013 01:19:40.0840] [0] Disk space required: 1292445007 bytes.
    [05/07/2013 01:19:40.0840] [0] Disk space available: 23767240704 bytes.
    [05/07/2013 01:19:59.0762] [0] File's copying finished.
    [05/07/2013 01:19:59.0965] [0] Finished loading screen InitializingSetupPage.
    [05/07/2013 01:20:02.0934] [0] Setup is choosing the domain controller to use
    [05/07/2013 01:20:09.0325] [0] Setup is choosing a local domain controller...
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    [05/07/2013 01:20:11.0809] [0] Setup will use the domain controller ''.
    [05/07/2013 01:20:11.0809] [0] Setup will use the global catalog ''.
    [05/07/2013 01:20:11.0825] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0919] [0] Exchange organization container for the organization is 'CN=DOMAIN,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=domain,DC=local'.
    [05/07/2013 01:20:11.0966] [0] Setup will search for an Exchange Server object for the local machine with name 'WEX1'.
    [05/07/2013 01:20:12.0028] [0] No Exchange Server with identity 'WEX1' was found.
    [05/07/2013 01:20:12.0044] [0] The following roles have been unpacked:
    [05/07/2013 01:20:12.0044] [0] The following datacenter roles are unpacked:
    [05/07/2013 01:20:12.0044] [0] The following roles are installed:
    [05/07/2013 01:20:12.0059] [0] The local server does not have any Exchange files installed.
    [05/07/2013 01:20:12.0075] [0] Server Name=WEX1
    [05/07/2013 01:20:12.0137] [0] Setup will use the path '\\SERVER\f$\junk\installers\server\Exchange\2013cu1' for installing Exchange.
    [05/07/2013 01:20:12.0137] [0] The installation mode is set to: 'Install'.
    [05/07/2013 01:20:27.0591] [0] An Exchange organization with name 'DOMAIN' was found in this forest.
    [05/07/2013 01:20:27.0591] [0] Active Directory Initialization status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Schema Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Organization Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0591] [0] Domain Configuration Update Required Status : 'False'.
    [05/07/2013 01:20:27.0841] [0] Applying default role selection state
    [05/07/2013 01:20:27.0872] [0] Setup is determining what organization-level operations to perform.
    [05/07/2013 01:20:27.0872] [0] Because the value was specified, setup is setting the argument OrganizationName to the value DOMAIN.
    [05/07/2013 01:20:27.0872] [0] Setup will run from path 'C:\Windows\Temp\ExchangeSetup'.
    [05/07/2013 01:20:27.0888] [0] InstallModeDataHandler has 0 DataHandlers
    [05/07/2013 01:20:27.0888] [0] RootDataHandler has 1 DataHandlers
    [05/07/2013 01:20:27.0903] [0] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.  See
    the Exchange setup log for more information on this error.
    [05/07/2013 01:20:27.0935] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:21:04.0154] [0] The registry key, HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ExchangeServer\V15\Setup, wasn't found.
    [05/07/2013 01:21:04.0154] [0] End of Setup
    [05/07/2013 01:21:04.0154] [0] **********************************************

    Hi,
    The cause is clearly described in the log:
    [05/07/2013 01:20:11.0794] [0] [ERROR] Setup encountered a problem while validating the state of Active Directory: Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency. 
    See the Exchange setup log for more information on this error.
    [05/07/2013 01:20:11.0794] [0] [ERROR] Could not find information about the local site. This can be caused by incorrect configuration of subnets or sites or by replication latency.
    I'd suggest you check NIC settings and AD configuration.
    Hope it is helpful.
    Fiona Liao
    TechNet Community Support

  • Error while activating data from new table of DSO to active table

    HI,
    while activating data from new table of DSO to active table i am getting
    error message as "Error occurred while deciding partition number".
    Plz any idea hoe to resolve this one.
    thanks & regards
    KPS MOORTHY

    Hi
    You are trying to update/upload the Records which are already been there in the DSO Active Data Table which has the partition.
    Try to see the Record Nos already been activated and update/upload with selective, if possible.
    You can trace the changes at Change log table for the same.
    Hope it helps
    Edited by: Aduri on Jan 21, 2009 10:38 AM

Maybe you are looking for

  • Questions regarding aggregates on cubes

    Can someone please answer the following questions. 1. How do I check whether someone is re-bilding aggregates on a cube? 2. Does rebuilding an aggregate refer to the rollup process? Can it take a few hours? 3. What does it mean when someone switches

  • Vendor Report details

    Dear all           Kindly let me know how to find out the vendor code creation date in SAp As we have 60 to 70 company code we do not want the Vendor Extension details, we want only the fresh vendor code creation date.

  • Iphone dropping wifi then reconnects while on skype or viber but not netflix

    while on call in skype or viber at home, my iphone 4 would drop the VOIP call, wifi icon immediately switches back to 3G then after 2 seconds switches back to wifi again(I never have to go connect again manually, it always comes back by itself).  All

  • Best Db2 thin driver

    Hi All, Can some one recommend a reliable jdbc thin driver which supports distributed transactions for DB2 on windows and solaris. What is the reliability of the db2jcc driver (Universal driver) which comes with the DB2 (8.1) installation. Also want

  • Lightroom will not launch

    Downloaded LightroomCC, I select the app but it does not launch the program. Rebooted after download, same issue.