Is there any table which records the no. of Jobs run in day in BIP ?

Hi All,
I want to create a metadata report on what all jobs ran in my BIP production in a day. Is there any repository where this is recorded?
Please let me know.
I am in 10.1.3.4 and using oracle database
Thanks,
Ronny

Hi Ronny
All the reports the are scheduled the history will be stored in the backend table XMLP_SCHED_JOB.It will create a unique job_id.
Based on this table u can create a report in BIP using the RTF template.....

Similar Messages

  • There is any table which makes the relation between sold to party and ship

    Hi Gurus,
    There is any table which show the relation between ship to party and sold to party.
    regards
    gursharan

    You can get this information from KNVV, KNVP Tables.
    Refer following link: http://www.erpgenie.com/abap/tables_sd.htm ....Customer Master Data for more detailed explanation.
    Please award points if you find this information useful / resolves your issue.
    Letme know if you need more information.
    Thanks,
    Ramesh

  • Is there any way to limit the number of Threads running in Application(JVM)

    Hello all,
    is there any way to limit the number of Threads running in Application(JVM)?
    how to ensure that only 100 Threads are running in an Application?
    Thanks
    Mohamed Javeed

    You should definitely use a thread pool for this. You can specify maximum number of threads that can be run. Be note that the thread pool will only limit the number of threads that are submitted to it. So donot call "Thread"s start() method to start thread on your own. Submit it to the pool. To know more, study about executor service and thread pool creation. Actually it will not be more than 20 line code for a class and you might need maximum of 2 such classes, one for threadPool and other one for rejection handler (if you want).
    Just choose the queue used carefully, you just have to pass it as a parameter to the pool.
    You should use "Bounded" queue for limiting threads, but also be careful in using queues like SynchronizedQueue as the queue will execute immediately the threads submitted to it if maximum number of threads have not been running. Otherwise it will reject it and you should use rejection handler. So if your pool has a synchronized queue of size 100, if you submit 101th thread, it will be rejected and is not executed.
    If you want some kind of waiting mechanism, use something like LinkedBlockingQueue. What this will do is even if you want 100 threads, you can specify the queue's size to be 1000, so that you can submit 1000 threads, only 100 will run at a time and the remaining will wait in the queue. They will be executed when each thread already executing will complete. Rejection occurs only when the queue oveflows.

  • Is there any table that holds the history of BEx queries

    Hi, I just wanted to know if there is any table that keeps the history of changes done to BEx queries?

    HI,
    Below tables helps you
    RSZELTTXT        Texts of reporting component elements
    RSZELTXREF       Directory of query element references
    RSRREPDIR        Directory of all reports
    RSZCOMPDIR       Directory of reporting components
    RSZELTDIR        Directory of the reporting component elements
    RSZELTDIR        Directory of the reporting component elements
    RSZRANGE         Selection specification for an element
    RSZSELECT        Selection properties of an element
    RSZCOMPIC        Assignment reuseable component <-> InfoCube
    RSZCALC            Definition of a formula element
    RSZCEL              Query Designer: Directory of Cells
    RSZELTPRIO       Priorities with element collisions
    RSZGLOBV          Global Variables in Reporting
    RSZELTATTR       Attribute selection per dimension element
    RSZCHANGES       Change history of reporting components
    RSZELTPROP       Element properties (settings)
    Regards,
    rvc

  • ***Is there any listener which trigger the method when KEYUP?

    Hi,
    Is there any listener which can trigger the backingBean method when KEYUP!!!!
    Basically, I got 2 input box in the UI where the 2nd box getting enabled when user enters some value in the first box and tab out. I am doing this via valueChangeListener which has attached with first inputBox. But now I want to enable the 2nd input box as soon as the user start enter the value in the first box, how to do this plz..
    thanks
    kln

    Hi klogube,
    If you want to call method in backingbean from javaScript you should use both clientListener And serverListener as:
    1- Add clientListener inside your inputText as :
    <af:clientListener type="KeyUp" method="keyUp"/>2- write javaScript function as :
    <af:resource type="javascript">
        function keyUp(event) {
           var source = event.getSource();
           AdfCustomEvent.queue(source,"callServerListener", {}, false);
    </af:resource>3-Add serverListener inside your inputText as :
    <af:serverListener type="callServerListener" method="#{backingBeanScope.txnBean4.keyUpMethod}"/>Your InputText will be like:
    <af:inputText label="Label 1" id="it1">
          <af:clientListener type="KeyUp" method="keyUp"/>             
          <af:serverListener type="callServerListener" method="#{backingBeanScope.txnBean4.keyUpMethod}"/>
    </af:inputText>4- The java method:
    public void keyUpMethod(ClientEvent event){
    // do whatever u want
    }Sameh Nassar

  • Is there any method which reflects the names of classes of java?

    is there any method with which dynamically we can get all the packages's name along with their classes of java(specially core classes of java)?if not how can we do that?

    The resource from which the Java VM loads the classes is considered to be implementation dependent. It may be class files or jar files contained in a file system hierarchy, or some kind of remote database. The now defunct Microsoft VM used a database repository that was able to reside on a remote class server within a network domain.
    Unfortunately, Sun did not design a class resource service interface with a "list resources" function, only a "get resource" function. You can get the class resource for any named class, but you cannot list packages or classes within a package or at the root level.
    This is further complicated by the fact that there is no such thing as an "installed package" as Java does not define any package installation system. The packages available to any runtime instance of the JVM is defined by the classpath properties passed from the OS. Different JVM instances can have completely different sets of available packages because they were passed different classpath values by the OS.
    If you know the class resource of the runtime environment, then you could create a subclass of the sun.misc.URLClassPath class and add to it methods that will list packages and classes found within a package using the interface of that known class resource.
    Most runtime environments use a standard hierarchical file system to hold jar and class files. A subclass of sun.misc.URLClassPath could use the java.io.File class to traverse the file system classpath paths in search of package directories and class files (Watch out for recursive directory links).
    The root packages can be obtained from the three levels of classpath paths in the System properties used by the JVM:     "sun.boot.class.path"
         "java.ext.dirs"
         "java.class.path"The collection of file system paths obtained from these properties would be searched for the names of the root level package directory names. Just remember that this will only work in a runtime environment that only uses this kind of class resource. If you run this where some other resource is also used, you will not see all of the packages available to that JVM.
    One note of caution: A single directory can hold package directories, jar files, and class files that belong to a specific package, but the package may include other package directories, jar files, and class files that are contained in other directories. Pieces of a single package may be strewn throughout the file system. The only way to find them all is to scan all of the classpath paths for that same package name. The directory does not define the package, it only provides more content for that package.
    I hope you find this of some use.

  • Is there any way to increase the amount of space for all day events?

    I have iCal on my ipad and my phone, and when I look at the daily view or weekly view, only 1 1/2 lines are shown. If I have a few events that are all day (I keep several calendars) then I have to scroll through them one at a time. And with my fingers, sometimes they go by too fast. Does anyone know how to increase the amount of space? I am using an iPad3, and an iPhone 5, both with ios 7.
    Thank you!

    With Mac OS X, there is no way for you to alter the amount of real memory a program is allocated. This is all done dynamically by the OS. OS X's virtual memory management is far better than 'ole OS 9's.
    What are saying about a memory leak? I take it that Safari is continually using more and more memory. How much memory is it usually taking up after a few hours? Perhaps you should just quit and restart Safari every few hours before it begins failing to respond.

  • Table which stores the list of active ods objects in BW

    Hi,
    I am trying to find out the list of active ods objects starting with y and Z, Is there any table which has the information regarding that. For Infoobject I found the table as "RSDIOBJ". Can you plz let me know if there is any table for ods.
    Thank you in advance,
    Raghavendra Reddy BIjevemula

    Hi Raghu,
    u r typing it wrong..
    its "RSDODSO"..
    It will definitely work..
    which gives all available ODS.
    Regards-
    MM

  • Need some help on CRM tables which have the details of the order created

    Hi,
    Can anyone help me in knowing the tables which stores the information of an order . I need to find the status, priority, category and the partner functions of a particular order. Is there any table which stores all these data.
    Thanks & Regards,
    Anuradha.P

    Hi Anuradha,
    basically you link  partner function of an order with view:
    CRMV_LINKPARTNER.
    In this view you can find :
    Guid of an order coming from CRMD_ORDERADM_H
    Guid of BP coming from BUT000,
    and <b>partner function</b> stored in field PARTNER_FCT.
    For sold-to-party you have to select 00000001.
    Concerning priority and category I suggest you investigating with "where used list", tool in which tables the data element is used.
    Then start from CRMD_ORDERADM_H or CRMD_ORDERADM_I , and with the guid go to CRMD_LINK.
    Extract the proper Guid set and try going into the table/s you select, previuosly.
    Regards,
    AndreA
    <b></b>

  • Is there any standard SAP table which stores the license number assigned to a delivery item

    Hi Experts,
    This is in relation to license number assigned to a delivery item under ‘Export License Log’. Our scenario is for delivery of type NLCC created for an inter-company stock transport order. (i.e.not a sales order case where the license may get copied from sales order to delivery through copy control)
    As we understand, for legal control – relevant scenarios, export license for each item shall be determined afresh every time the delivery is accessed. (Depending on legal regulation, grouping, destination country, export control class, delivery partners vis-à-vis license master customer assignments etc.)
    To print the license text on one of the delivery output types, we want to access the license number for each item. (determined under export license log)
    Our question is:  is there any standard SAP table which stores the license number assigned to a delivery item?
    We have checked some of the license tables (T606*, VAEX, EMXX etc.) but couldn’t get any specific table storing delivery-item-specific license data.
    Helpful answers Text Removed
    Regards,
    Jagan
    Message was edited by: G Lakshmipathi
    Dont add such text in your post

    Hi Lakshmipathi,
    The export control log can be accessed by going to delivery Extras-> Export license log
    We need a table that stores the determined license for each item in a delivery document ( as shown in the below screenshot)
    Regards,
    Jagan

  • Is there any provision to view the selected record using SYS_REFCURSOR?

    hi friends ,
    I was using SQL Server . now i am shifting to Oracle . so we are changing the Stored Procedures in SQLServer to Oracle SP's. I have given the structure of procedure given below . If possible , i want to see the output of select statement in the TOAD editor . If any body knows please help me
    CREATE OR REPLACE PROCEDURE PS_AON
    P_STATUS OUT VARCHAR2,
    P_CUR OUT SYS_REFCURSOR
    AS
    BEGIN
    OPEN P_CUR FOR
              select colum1,column2,column3 from Table 1;
    EXCEPTION
                   WHEN OTHERS THEN
                   P_STATUS:=SQLERRM;
    END;
    This is one of the model of stored procedures i am using . And the editor i am using is TOAD 7.3.0 and oracle 9i. Is there any provision to view the selected records by running this procedure in TOAD editor
    thanks & regards

    (assuming you have relatively recent version of TOAD).
    Write a small block to call the procedure (or use Toad's 'execute procedure' option) as in the example below. Note the ':' in front of 'v_cur_out'. When you run the block, TOAD will prompt you for a value / datatype for 'v_cur_out'. Ignore the value, set the datatype to 'Cursor' and click OK. The resultset (if any) will be displayed in the Data Grid window below.
    DECLARE
       v_status VARCHAR2 (32767);
    BEGIN
       ps_aon (v_status, :v_cur_out);
       DBMS_OUTPUT.PUT_LINE ('v_status => ' || v_status);
    END;
    /

  • Are there any apps which will allow local calling using data only that do not require any special numbers called out initially and does not require the receiver to have a similar app or account?

    Are there any apps which will allow local calling using data only (not minutes, no extra charge) that do not require any special numbers called out initially and does not require the receiver to have a similar app or account?  Just for random local calling.

    Yup.
    Here is a way you could solve this by adding an extra column and a small lookup table:
    The lookup table is here for the copying:
    0
    1
    k
    kilo
    2
    M
    mega
    3
    G
    giga
    4
    T
    tera
    5
    P
    peta
    6
    E
    exa
    7
    Z
    zetta
    8
    Y
    yotta
    In table 8 (the one on the left in the image) column A is where the values are. 
    B1=A1÷(1024^VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 1))&" "&VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 2)&"B"
    this is shorthand for... select cell B1, then type (or copy and paste from here) the formula:
    =A1÷(1024^VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 1))&" "&VLOOKUP(INT(LOG(A1, 1024)), Binary Prefixes::A:D, 2)&"B"
    select cell B1, copy,
    now select all the cells in column B, paste

  • Dear Community, how can I connect SCSI tape recorder via USB to iMac ? Is there any adapter/converter on the market now ? Cheers, Marek

    Dear Community,
    how can I connect SCSI tape recorder via USB to iMac ?
    Is there any adapter/converter on the market now ?
    Cheers, Marek

    Thanks Jan.
    Actually the reason to use Quantum SCSI tape recorder is to back-up big amount of data (propriety movies footage) both on PC (what is quite easy, using SCSII host adapter with VHDCI 68 connector) and iMac what seems to be not easy. All my search by Google leads to that conclussion, they finished production of SCSI-to-USB or FireWire because somebody stopped to produce chips to covert protocols. So even buying noe second-hand adapter, no guaranty it's still working with Lion (nobody is developing drivers anymore). Strange is, nobody or just a few are using SCSII (Ultra 320) devices (while the transfer is not bad, 320 MBps what is 2560 Mbps, so the only limitation is tape recording (some 80 MBps) not an interface. Using compression mode I can (and I do) record 1,6 TB of footage data. However quite slow, is safe and cheap, comparing with any HD storage solution. USB 2 is much more limited.
    I'm using Time Capsule for buck-up. But even 3 TB one day will be full of data, then old back-ups will be eaten by new once, what is not good idea for archives. I'm using another 2TB NAS HD (2x2TB RAID 1), but this is also going to be full soon.
    Of course, you are right, the option is another machine (OSX,Win,Linux or Solaris) equipped with SCSII controller. But this requires another machine, just for back-up time to time, and in practice iMac folders must be shared with that small auxiliary machine because amount of data practically excluding even temporary data collection on auxiliary machine. And it must be transfer by wire, not WIFI, my only network. Tape recording is in my case really good, professional solution, isn't it?
    Anyway, if somebody has similar requirements as me, and found the solution for SCSI, please let me know. So far, follow Jan's idea, I'm thinking about some embeded mini PC, fanless, equipped with slot for SCSI, with SOME smart system on-board, to deal with iMac for type recording. The option is previous Apple model, but to be honest, I became Mac/OSX user 4 years ago. I fell in love with Mac, but my knowledge about previous models is based on Google....
    My desk becomes full of boxes. Do you know how big Quantum TC-L42BX is ? Is very big. And now another box.....another keyboard....another screen... And one small adapter could solve the problem. Eh....
    Best regards,
    Marek

  • I had my iphone stolen which had quite a lot of music on that I had downloaded from itunes but not synced with itunes on my computer.Is there any way to access the music now or is it lost?

    Hi,
    I had my iphone stolen a few weeks ago which had quite a lot of music on that I had downloaded from itunes via my phone but had not synced with itunes on my computer.
    Is there any way to access the music now or is it lost? Thanks x

    By any chance, did you have the Find My iPhone app installed prior to it being stolen?
    Reporting a lost or stolen Apple product
    Hopefully you had your iTunes purchases backed up to an external source such as an external drive or CD's?

  • In sap is there any report which gives us the details of all prctr group

    Hi,
       In sap is there any report which gives us the detail of all profit center and their respective profit center group. I need a report or t.code which gives me the details of profit center hierarchy with description and also the associated profit center to it.Is there any report beside t.code KE5X.
    With regards

    Hello
    I like to use TCode KCH6N (Profit Centre standard Hierarchy)
    Although this does not give as much Master data info as the TCode you use, it does give description, who responsible and most importantly where in the structure/hierarchy every Profit centre and Profit centre group is in relation to each other.

Maybe you are looking for

  • Blue Screen of Death and USB malfunctions on HP Envy running Windows 7

    Hello. I have an HP Envy 14 notebook PC. It's running Microsoft Windows 7 Home Premium 64-bit, version 6.1.7601. When I run it, I eventually starts getting an error message from the right of the desktop toolbar telling me that a USB device I plugged

  • Is there a way to move my library from old ipod to new ipod if i do not have my old hard drive

    I have an issue on my old ipod with the sound coming through headphones...after troubleshooting found something is wrong with my old ipod (from like 2006) and i just bought a brand new one and want to be able to move my songs from my old ipod to my n

  • Edge Web Fonts - not showing up

    Hey Everyone, Using Edge right now and having issues with Web Fonts.   I'm using Edge Animate CC.  When I choose a Web Font I can see it in the drop down list of available fonts but when I choose it nothing happens.  When I Preview the HTML page I al

  • ABAP Report Errors in Production

    Hi All, After checking everything  moved the ABAP report to the production , in production if you get any errors or  if reports goes for dump, what we have to do. As per my knowledge we have to move back to the  development system and  we have to rec

  • Cannot print a web page that prints fine in IE9

    I'm trying to print a web page in Firefox, but when I do the print preview it has web info at the top of the page but the rest is blank, the second page displays just fine, then all the other pages behind it are completely blank. If I try to print a