Runtime information

I am trying to get a list of all the Maps, Sources and Target tables and the number of rows processed. What is the best way to get this information?
Thanks in advance for your help.

Runtime Audit Browser.
Bye
Detlef

Similar Messages

  • To see the runtime information.

    Hi expertz,
    I am executing a adhoc report in the browser after running some time it is saing time out error and process is getting terminated.Is there any functionmodule or programm or T code to see the runtime information of the query to find what exactly happend,Due pointswill be given,... it is urgent please.
    reards,
    Daniel.

    Hi Daniel,
    To collect the information about the Database time, OLAP Time, Front End time, No. of records selected /transfered etc in the following three ways:
    1.By analysing the contents of table " RSDDSTAT"
    2.By using T-codes ST03 or ST03N
    3.By implimenting BW Statistics Business Content - you need to install, feed data and through ready made reports which for analysis.
    You can go to T-Code DB20 which gives you all the performance related information like
    Partitions
    Databases
    Schemas
    Buffer Pools
    Tablespaces etc
    Please assign points if it is useful.
    Regards,
    Rahul

  • Runtime information in BPM

    Hello XI Experts,
    I've got one question: Is it possible to obtain a runtime information in Business process ? I have created alerts where I use container to add dynamic text from payload but I also need to add information on which system this alert was triggered (dev, int, prod). I need information from SOAP Header, Runtime. Does anybody now how to do it?
    Regards,
    Pavol

    Maybe the solution in this thread will help,
    Availability of System id value in a BPM
    <i> found a neat way of resolving this issue and thought I would share with you both.
    I created a user-defined function and put the following lines of code....works like a charm!!
    String user_login_id = System.getProperty("user.name");
    return user_login_id.substring(0,3);
    This returns system id since the system users are always
    xi0adm / xc0adm or xp0adm.</i>
    Regards
    Bhavesh

  • Runtime information about EJB on weblogic console

    Hi All,
    I am using WLS6.1 sp2 on Redhat Linux 7.2.
    The runtime information for an EJB as displayed on weblogic console looks very
    odd. Could somebody clarify the meaning of the following mbean info?
    Beans in Use Count(BeansInUseCount)
    Cache Beans Current Count(CachedBeanCurrentCount)
    For one of my entity EJBs, I see
    BeansInUseCount=30678,CachedBeanCurrentCount=3674578
    I have max-beans-in-cache=1000 for all entity beans and the number of records
    for this entity EJB in database is less
    than 10. I dont understand why the BeansInUseCount is so high?
    This number looks very suspicious. Is this a bug or maybe a memory leak?
    Any assistance will be greatly appreciated.
    Thanks,
    Abhay

    Please transfer to EJB Forum...

  • Runtime Information about Drilldown

    Hello Experts,
    i had the following question. Ist there an possibility to get information about the drilldown of an Web Query at runtime?
    In my Query there is a calculated Keyfigure. the normal drilldown is Year. The Keyfigure counts the Days in the Year. If the User changes the drilldown to e.g. Quarter or week the keyfigure shold calculate anothe value. If there is any possibility to know what drilldown ist selected i can calculate this keyfigure in an Exit.
    BG
    Günther

    GUnther,
    If you are on BI3.x then you could have a table modifier which captures the drilldown characteristic and accordingly changes the key figure - but this would mean that you will have to write your own code for updating the field....

  • CR2008 Runtime Information

    hello....I need some information regarding the CR2008 Runtime files...
    I have a client who is in the process of testing CR2008 reports thru a Visual Foxpro Application.
    They would like to know what is/are the runtime file name(s) are; are there any parameters necessary
    and if you have any instructions on setting the runtime up on various pcs...
    If you could please supply that information or point me to a document that fully explains the Cr2008 runtime
    and the installation process, passing any parameters if they are necessary,
    it would be greatly appreciated..
    thank you

    Using CR 2008, I'd assume you are using the Crystal Reports SDK for .NET and not the RDC as the RDC was retired in CR 2008. To distribute the runtime, you will have to use the merge modules from here;
    https://smpdl.sap-ag.de/~sapidp/012002523100009159092009E/cr2008sp2_mm.zip
    and create your own setup project using Wise, InstallShield, etc.
    Alternatively, you could use the msi from here;
    https://smpdl.sap-ag.de/~sapidp/012002523100009159002009E/cr2008sp2_redistinstall.zip
    Ludek

  • Access Process Chain Runtime Information

    Hi,  I'd like to add an ABAP program to the end of a process chain.  I'd like the ABAP program to be able to tell what Process Chain is currently being run and what Log ID is currently open or being written to.  Any Ideas how to do this?
    Thanks!
    Nevermind
    I think this would be where a custom process type would be appropriate..
    Thanks!

    Hi Kenneth,
    The table RSPCLOGCHAIN would give you the information regarding which chains are running/completed/failed etc.
    The table RSPCPROCESSLOG would give you, which process step in the process chain is actually executing.
    Once you know the Chain Name, for which you want to get the status, use the following function modules
    RSPC_API_CHAIN_GET_STATUS
    Gives you if a chain is running/completed/failed.
    RSPC_API_CHAIN_GET_LOG
    Gives you a detailed log of the process chain(Each steps)
    The tables mentioned above would give you the following information
    R     Ended with errors
    G     Successfully completed
    F     Completed
    A     Active
    X     Canceled
    P     Planned
    S     Skipped at restart
    Q     Released
    Y     Ready
         Undefined
    J     Framework Error When Ending (e.g. Subsequent Job Missing)
    Regards,
    Praveen.

  • Accessing Runtime Information - ERROR - HELP

    Hi all,
    I am trying to access the runtime MBean with the sample code given in the WebLogic online document
    Here is the part of the code
    try {            
    System.out.println("\n----Trying to access runtime mbean \n");
    mbeanSet = home.getMBeansByType("ServerRuntime");
    mbeanIterator = mbeanSet.iterator();
    // Comparing the name of the server in each ServerRutime
    // MBean to the value specified by serverName
    while(mbeanIterator.hasNext()) {               
    serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
    if(serverRuntime.getName().equals(serverName)) {                   
    System.out.println("Found the serverRuntimembean: " + serverRuntime + " for: " + serverName); System.out.println("Current state: " + serverRuntime.getState() ); System.out.println("Stopping the server ..."); serverRuntime.shutdown(); System.out.println("Current state: " + serverRuntime.getState() ); } }
    } catch (Exception e) {            
    System.out.println("Caught exception: " + e); }
    When I try to run the program I am getting the following error.
    <Aug 26, 2004 3:48:33 PM PDT> <Error> <RJVM> <BEA-000503> <Incoming message header or abbreviation processing failed
    java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -54677950900
    68647408, local class serialVersionUID = 1081892073854801359
    java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -546779509006
    8647408, local class serialVersionUID = 1081892073854801359
    at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:33)
    at java.io.ObjectInputStream.readExternalData(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
    at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
    at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:209)
    at weblogic.rjvm.MsgAbbrevInputStream.readMessageContext(MsgAbbrevInputStream.java:232)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:733)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:742)
    at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:682)
    at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:618)
    at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:282)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    >
    Caught exception: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [weblogic.rjvm.PeerGoneException: ; nested exception is:
            java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
            java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -5467
    795090068647408, local class serialVersionUID = 1081892073854801359]
    Did anybody come across this kind of error? Please let me know. Any help is appreciated. Thanks!
    -Praneetha

    Praneetha,
    The client version of ObjectName is different from the version on the
    server side. Make sure you have the same class version.
    Thanks,
    -satya
    Praneetha Sabhanayakam wrote:
    Hi all,
    I am trying to access the runtime MBean with the sample code given in the WebLogic online document
    Here is the part of the code
    try {            
    System.out.println("\n----Trying to access runtime mbean \n");
    mbeanSet = home.getMBeansByType("ServerRuntime");
    mbeanIterator = mbeanSet.iterator();
    // Comparing the name of the server in each ServerRutime
    // MBean to the value specified by serverName
    while(mbeanIterator.hasNext()) {               
    serverRuntime = (ServerRuntimeMBean)mbeanIterator.next();
    if(serverRuntime.getName().equals(serverName)) {                   
    System.out.println("Found the serverRuntimembean: " + serverRuntime + " for: " + serverName); System.out.println("Current state: " + serverRuntime.getState() ); System.out.println("Stopping the server ..."); serverRuntime.shutdown(); System.out.println("Current state: " + serverRuntime.getState() ); } }
    } catch (Exception e) {            
    System.out.println("Caught exception: " + e); }
    When I try to run the program I am getting the following error.
    <Aug 26, 2004 3:48:33 PM PDT> <Error> <RJVM> <BEA-000503> <Incoming message header or abbreviation processing failed
    java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -54677950900
    68647408, local class serialVersionUID = 1081892073854801359
    java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -546779509006
    8647408, local class serialVersionUID = 1081892073854801359
    at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
    at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.rjvm.ClassTableEntry.readExternal(ClassTableEntry.java:33)
    at java.io.ObjectInputStream.readExternalData(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    at weblogic.rjvm.InboundMsgAbbrev.readObject(InboundMsgAbbrev.java:65)
    at weblogic.rjvm.InboundMsgAbbrev.read(InboundMsgAbbrev.java:37)
    at weblogic.rjvm.MsgAbbrevJVMConnection.readMsgAbbrevs(MsgAbbrevJVMConnection.java:209)
    at weblogic.rjvm.MsgAbbrevInputStream.readMessageContext(MsgAbbrevInputStream.java:232)
    at weblogic.rjvm.ConnectionManager.dispatch(ConnectionManager.java:733)
    at weblogic.rjvm.t3.T3JVMConnection.dispatch(T3JVMConnection.java:742)
    at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:682)
    at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:618)
    at weblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:282)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:32)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    Caught exception: weblogic.rmi.extensions.RemoteRuntimeException: Unexpected Exception - with nested exception:
    [weblogic.rjvm.PeerGoneException: ; nested exception is:
    java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
    java.io.InvalidClassException: javax.management.ObjectName; local class incompatible: stream classdesc serialVersionUID = -5467
    795090068647408, local class serialVersionUID = 1081892073854801359]
    Did anybody come across this kind of error? Please let me know. Any help is appreciated. Thanks!
    -Praneetha

  • Program runtime information

    Is there a way to (from inside the own class) know amount of memory and cpu usage the class is consuming ?
    thanks

    In Java, as far as I know , No.
    But, in transact SQL Server 2000, yes there are.

  • Runtime Metrics are not displayed!

    hi all!
    i have a little problem. on the jde system-manager i want to view my process details on my enterprise (batch) server. we have 10 enterprise (batch)server, on 9 server i can view the runtime metrics, but on one server it comes only the message: Runtime Metrics - Runtime information is available only when the instance is running..instance is running, i also have restart the scfagent on the linux server. but nothing works. what can i make, that this server display the runtime metric info's??
    greetz
    franco könig

    Uhh, I think you are in the wrong discussion forum. There is a separate forum for JD Edwards Enterprise One/One World. This is a JD Edwards World discussion list. JD Edwards World is technically very, very different from Enterprise One. For example, JDE World, we only have to deal with one (1) server. Do not have to deal with many servers. You will have a better chance at getting good responses if you post this in the correct forum. You have my sympathies for having to deal with Enterprise One.
    John Dickey

  • Runtime MSM or MSI

    The downloads page for Crystal Reports | XI Release 2 | * (at https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm) shows three SP5 downloads:
    Crystal Reports XI Release 2 - SP 5 .NET Merge Modules
    Crystal Reports XI Release 2 SP 5 - .NET Server Install
    Crystal Reports XI Release 2 Service Pack 5 - Windows
    What we need is the runtime MSM or MSI that contains the Crystal Report Viewer CRViewer.dll file (version 11.5.11.1470) which is normally installed at C:\Program Files\Business Objects\common\3.5\crystalreportviewers115\ActiveXControls.
    If anyone can point me to that redistributable/utility?
    Thanks!

    Hi,
    Then install the second option.
    The Wiki is [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] is currently the best resource for CR.NET Runtime information.
    Sincerely,
    Amit

  • Are subtemplates used for static information only?

    Hello,
    Subtemplates can have some runtime information but are subtemplates only to display static information like company logo or terms & Conditions?
    Lets suppose, I have a template1 which displays all emplyoyees info from the employee database1, and i have a template 2 which is displaying information about all employees from another employee database 2 .Now, I want to use template 1 as a subtemplate in template 2.
    1. Is it possible?
    2. How to load the xml data in this case for both the data bases?
    Thanks
    Nutan

    Your data has to be in single xml,
    option1:
    so you have to create a single big query, which will have these combined together.
    option2:
    if you are using EE, then you can use concatenated datasource from the different query. it can come from different databases.
    then , you can define the template one table as a subtemplate with <?template:?> syntax and by passing the parameter of the xml context to that.
    and then you can call the template with call: syntax in the template 2.

  • Understanding of the table level information from SAP HANA Studio

    Hello Gurus,
    Need some clarification from following information provided by SAP HANA Studio.
    I have a table REGIONS and the contents are as follows:
    REGION_ID REGION_NAME
    11      Europe
    12      Americas
    13      Asia
    44      Middle East and Africa
    15      Australia
    6      Africa
    The Runtime Information about the table is as follows:
    Image# 1
    Image# 2
    Image# 3
    Total size in KB show in Image#2 and 3 are not matching. Why?
    Total size in KB show in Image#2 and Total Memory Consumption are not matching. Why?
    The values of Memory consumption in Main Storage and Delta Storage are not matching in Image# 1 and Image# 2. Why?
    Estimated Maximum Memory Consumption (Image# 1) and Estimated Maximum Size (Image# 2) are matching.
    Why the Loaded column Image# 2 is showing the value ‘PARTIALLY’. The table has just 6 rows and still partially loaded? Why?
    What is the significance of column Loaded in Image# 2 and 3 ?
    Thanks,
    Shirish.

    Have a look on this
    Playing with SAP HANA
    That presentation should help you to answer the questions yourself
    Regards,
    Krishna Tangudu

  • No runtime assistant

    Hi,
    I have installed the 10G2 database and 10G2 OWB on my PC. Everything works all right, but I don't have runtime information. So I read I should create a runtime repository using the runtime assistant. But I don't have a runtime assistant. How do I get it?
    Regards,
    Gaston.

    Hi,
    The runtime concept is different in OWB 10g R2. Here you can do with only one repository owner.
    The installation procedure is somewhat like this.
    Run the Oracle Universal installer. Create a repository owner and user. After finishing the installation, enter design center from Start/Programs/OWB. After entering OWB, from the design center itself you can assign a target schema and then deploy your mappings on the target schema.
    Your single repository owner serves both as the design repository owner and runtime respository owner.
    Hope this helps
    -AP

  • Increase the number of portions in process for each conversion object

    I experts,
    I configured SAP TDMS 3.0 with SP 14 to transfer test data from QAS to DEV (both is ECC 6.0) for the first test with TDMS TIM (Time Based Reduction).
    The data transfer phase is still running (99% - 60hs running). We analyzed the Display Runtime Information report and see that objects of conversion with similar calc. records and calc. GBytes have very different the Net Runtime.
    TMDS currently is working with four objects of conversion, processing a portion of each.
    Conversion objects that are running are:
    - Z_LTBP_002
    - Z_TSEGE_002
    - Z_VEVW_002
    - Z_YST27_002
    We check in the receiver system, and we see that is use only one DIA process to update the each table.
    How can increase the performance of the update? Is correct that use only 1 DIA process for this??
    Can I increase the number of portions in process for each conversion object?
    Any help is greatly appreciated.
    Regards,
    Sergio

    Hi,
    Check SAP Note 916763 - TDMS performance composite SAP note
    Note 890797 - SAP TDMS - required and recommended system settings
    Thanks
    Sunny

Maybe you are looking for

  • How do I change the pixel size when converting Word doc to .pdf?

    When converting a Word Document to .pdf the file size is too large. How do I reduce the pixel size?

  • Configuration in RFQ, PO

    >Hi MM Experts, >The following is required to be configured :- >1. The Net Price for a material in Request for Quotation should be inclusive of basic price, excise duty, educational cess, higher secondary educational cess, freight & transportation, i

  • Please help to find the error  in the following code

    REPORT ZTESTSAMPLE. CLASS C1 DEFINITION. PUBLIC SECTION. METHODS M1. ENDCLASS. CLASS C1 IMPLEMENTATION. METHOD M1. WRITE: /'HELLO'. endmethod. endclass. DATA OREF TYPE REF TO C1. *CREATE OBJECT OREF. OREF->M1().

  • Smart view : #No Connection

    Dear All . When I am trying to write a function in excel and then when i say refresh i get this written in the cell #No Connection. THough the connection is OK and I am able to refresh the data . When I click on Function Bulder I get the error as 'Th

  • MARS "Blank Error Message"

    I was wondering if anyone had seen the words "Blank Error Message" while working from the CLI on MARS 4.2.6 We first saw it while upgrading and later saw the same message while setting the Timezone. They don't appear to mean anything as we were able