Is there any way to know what projects have budget/cost updates certain day

Hi all,
We want to develop a program running everyday to detect all projects that have budget or cost updates that day. As far as I can see, the following tables might be involved: PROJ, PRPS, RPSCO, AUFK, COSS, COSP, BPJA, BPGE. But among the listed tables, only PROJ and PRPS have the timestamp fields. I'm wondering whenever the budget or cost value is updated, will any one of the 2 tmestamp filelds get updated?
Any hint or help is very much appreciated.
Regards,
Michael

Hi Michael
please check this thread!
Budget with modification time (TIMESTMP)
I guess it should be helpful
Regards
Martina

Similar Messages

  • Hi is there any way of knowing what location my find my phone was turned off or last known location thnks

    hi is there any way of knowing where my find my phone was turned off or its last location thnks

    No. Apple can do nothing. For the future there are apps that will periodically email you the device's location (if connected to internet)

  • Is there any way to know that the UI has been updated due to a bind change?

    Hi
    For the given code snippet
    var c=Circle{
      centerX:10  
      centerY:10
      fill:Color.YELLOW
      onMouseClicked:function(event){
          c.fill=Color.RED;
    printNodeAsImage(filename) //to a file
    }

    Oops..Got posted before I could finish the query
    Hi
    For the given code snippet
    var c=Circle{
      centerX:10  
      centerY:10
      fill:Color.YELLOW
      onMouseClicked:function(event){
          c.fill=Color.RED;
          printNodeAsImage(c, filename) //to a file
    }Let us assume that printNodeAsImage(c,filename) saves the circle node with the current color to a file. See http://rakeshmenonp.wordpress.com/2010/04/26/javafx-1-3-save-as-image/ for a implementation of this function
    What we notice instead is that printNodeAsImage(c, filename) actually saves the node with the color YELLOW instead of RED. Is there any way to know deterministically when the UI has been updated due to a variable value change (or because of binding). (In this case the transition from Yellow to Red) So that we can perform other operations on the UI state - like saving it to a file
    Regards,
    Dhruva Ray

  • Intel iMac frozen after dragging a folder full of fonts into library, fonts. Is there any way to reverse what I have done?

    iMac will not complete booting up or even safe boot after I dragged a folder full of fonts into my library/fonts folder. Is there any way to access the fonts folder and remove them?

    What you need is Time Machine. It will solve this problem. Just go back "in time" and correct the problem. You will need to reboot from your install disks.
    If you don't use Time Machine, then thats another problem all together...
    SBB

  • Is there any way to see what I have stored in the Cloud for iTunes?

    I am looking to find if some TV shows I bought are in my Cloud. They are in my libarry currently, but I want to make sure that if my computer ever crashes and loses data, that they won't be lost. I am looking for a way to see all the content that is in the Cloud for iTunes, but I have only find the webpage that shows contacts, notes, ect. Anyone know if this is possible? Thanks.

    No, Apple very rarely make advance announcements of bug fixes.
    You can restore much of the look & feel of the previous version with these shortcuts:
    Ctrl-B to turn on the menu bar.
    Ctrl-S to turn on the sidebar.
    Ctrl-/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library for the old search behavior.
    Alternatively you roll back to iTunes 10.7. If so, first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    You might also want to use iTunes Feedback.
    tt2

  • Is there any way to know when an app is going to be discontinued?

    I purchased an app around eight months ago for $13. I forgot about it until I was reloading apps onto my new IPad. When I went to find it, it was no longer in the app store at all. I contacted the support people who told me that since it was "so long ago" there was no recourse.  So does that mean that any time you purchase an app it could disappear at any moment? Is there any way to know in advance that this will happen?  Never mind that it stinks to spend that amount of money and then have nothing to look back at.
    Additionally, I have had trouble reloading apps that I have paid for as an "in app purchase".  What is the deal with that?  Is that information not stored like buying an app outright?
    Thanks
    DTC

    Apple constantly reminds folks to backup their content. Apple warns folks all of the times that content may not always be available in the iTunes or Mac App Stores and most folks ignore the warnings or cannot be bothered to read them. No, unless the developer warns you that they are with drawing an app from one of the stores, there is no way to know in advance that an app may no longer be available.
    http://support.apple.com/kb/ht4009

  • Is there any way to know that status of DEFINE variable?

    Hi,
    I have a list of scripts that is executed to create my baseline database. At the beginning of the script execution, we have a SET DEFINE OFF and at the end we put SET DEFINE ON. During one of the scripts, we deliberately SET DEFINE ON and we forgot to SET DEFINE OFF at the end of the script. Consequently, the following scripts started failing without error notification because they contained '&' in the INSERT query. I have the following queries:
    1. Is there any way to know the status of the DEFINE variable at the beginning of the script?
    2. Since the oracle gives a user interrupted error, the script execution process does not terminate with error. Instead, it continues executing the next scripts. Is there a general way to capture such errors and terminate the script execution. We already have WHENEVER SQLERROR and WHENEVER OSERROR in our script execution process.
    Regards
    Kunal

    Hi, Kunai,
    Welcome to the forum!
    953495 wrote:
    Hi,
    I have a list of scripts that is executed to create my baseline database. At the beginning of the script execution, we have a SET DEFINE OFF and at the end we put SET DEFINE ON. During one of the scripts, we deliberately SET DEFINE ON and we forgot to SET DEFINE OFF at the end of the script. Consequently, the following scripts started failing without error notification because they contained '&' in the INSERT query. I have the following queries:
    1. Is there any way to know the status of the DEFINE variable at the beginning of the script?Whether it's at the beginning of a script, later in the script, or not in a script at all, the SQL*Plus command
    SHOW DEFINEtells you if DEFINE is ON or OFF.
    If DEFINE is ON, it will produce something like:
    define "&" (hex 26)If DEFINE is OFF, it will produce
    define OFF
    2. Since the oracle gives a user interrupted error, the script execution process does not terminate with error. Instead, it continues executing the next scripts. Is there a general way to capture such errors and terminate the script execution. We already have WHENEVER SQLERROR and WHENEVER OSERROR in our script execution process.Do you really need to capture those errors? Why not just prevent them? It sounds like you want to make sure DEFINE is OFF at a certain point. To do that, just say
    SET  DEFINE  OFFRegardless of whether DEFINE was ON or OFF before you issue that command, you can be sure it will be OFF after that.
    I hope this answers your question.
    If not, post a complete test script (or set of scripts) that people can run to re-create the problem and test their ideas.
    Point out where the scripts you post are not doing what you want, and describe, with specific examples, what you want it to do in those places.

  • When I go to restore my phone; is there any way to pick what you want back on your phone or do you have to get everything backed up?

    When I go to restore my phone; is there any way to pick what you want back on your phone or do you have to get everything backed up?

    Thank you.  I was afraid of that.  I backed up from iCloud.  I looked at the iTunes one - it had four different ones on there; was hoping I could see because my grandson's phone was redone last year (his mom messed it up then) and didn't know anything was backed up to iTunes.  He lost a lot of stuff that time. I'm just trying to get his phone back to par after someone changed his passcode on him as a joke and forgot what they changed it to a few days ago.  They should change it so one could go in and pick what they want or don't want.  Thank you again for your time.  I do appreciate it.

  • Is there any way to know that SOAP Client has closed and broken connection

    Hi,
    I am exposing a stateless session EJB using Oracle SOAP Webservices...and it is working smoothly.
    But when the SOAP client crashes or is closed, is
    there anyway that can know this happened on the server side i.e., the SOAP connection is lost.
    Thanks,
    Prashant

    Oops..Got posted before I could finish the query
    Hi
    For the given code snippet
    var c=Circle{
      centerX:10  
      centerY:10
      fill:Color.YELLOW
      onMouseClicked:function(event){
          c.fill=Color.RED;
          printNodeAsImage(c, filename) //to a file
    }Let us assume that printNodeAsImage(c,filename) saves the circle node with the current color to a file. See http://rakeshmenonp.wordpress.com/2010/04/26/javafx-1-3-save-as-image/ for a implementation of this function
    What we notice instead is that printNodeAsImage(c, filename) actually saves the node with the color YELLOW instead of RED. Is there any way to know deterministically when the UI has been updated due to a variable value change (or because of binding). (In this case the transition from Yellow to Red) So that we can perform other operations on the UI state - like saving it to a file
    Regards,
    Dhruva Ray

  • Is there any way to know the T-code from the screen?

    Hi friemds,
    it s a general question. but I found relavant for posting here.
    I saw our group friens giving some T-codes for spro functions (eg: SNRO, M/06), bbut how to know the transaction from path. i.e. If I go to condition types screen, there I could not see any transaction. is there any way to know the T-code from the screen?

    Hi,
    Listed here are the various ways you can find the list of transaction codes and their usage:
    Use transaction SE11 - ABAP Dictionary:
    Fill in the Database table name and click the Display button.
    - TSTC   table will contain all the Tcodes and
    - TSTCT table will contain all the Tcodes with Texts.
    Once you entered the screen, click in Top Menu - Utilities - Table contents - Display
    If you want to display all the transaction code (total - 57,048) you have to change the Fields: Maximum number of hits to 99999 (default 500).
    or
    Simply goto transaction SM01, although this tcode is to Lock/Unlock any transaction code, you can also view all the tcode available in the R/3 system from here.
    or
    Goto transaction SE93
    There are two ways where you can find the list of transaction codes in SE93.
    Method 1:
    You must be familiar with the starting characters strings for each of the R/3 application modules.
    Assuming you know that most Materials Management transaction codes start with MM.
    In the Fields: Transaction code, type in MM* and press the function key F4
    The list of transaction code starting with MM will be displayed.
    Method 2:
    On the Top Menu, click Utilities - Find - Execute and the first 500 transaction will be display.
    If want to display all the tcodes, make sure you remembered to change the Fields: Maximum no. of hits right at the bottom of the screen.
    I know a particular T Code and can enter and work on it.  How do I know what is the menu path for that T Code?
    Enter Search_SAP_Menu in the command box and when the pop box appears enter, the Tcode and it will give the nodes and menu path. 
    This is helpful only in case of SAP Menu not in case of SPRO - ie IMG.....
    Reward if Helpful,
    Regards,
    Archit.

  • Is there any way to know data is read from tape and written to disk

    is there any way to know data is read from tape and written to disk

    784786 wrote:
    Just asked because I am doing restoration, I see files read from tape and then restored, but can't find them physically there.
    Is there any way I can find it.What kind of restoration? What kind of files?
    The usual "no information" question is of the form "My car won't start. Tell me how to fix it"
    Yours is a bit different - "I tried to fix my car. Tell me how to know it's fixed".

  • Is there any way to know execution time of a  c program on Xcode

    is there any way to know execution time of a  c program on Xcode ?

    If it is a command line tool and you just what the total time do as tony wrote,
    If you need to run it from Xcode or are looking for more detail you can use the Instruments package. Select Product->Profile then select Time Profiler.

  • Is there any way to fix a project recorded in the wrong resolution without redoing?

    Is there any way to resize a project once it has been recorded so that it fits on the screen?  The person who recorded the project set the resolution at 1280 X 774 pixels and it's too large to see the entire project on the screen...you have to keep panning back and forth.  I am hoping we don't have to have him rerecord the entire project.

    Hi there
    Try clicking Project > Rescale and scaling the project to be a smaller size.
    Note that you probably want to leave the "Maintain aspect ratio" option selected (you are welcome Lilybiri )
    Additionally, note that rescaling will inevitably result in a loss of fidelity. Things just begin to fuzzy up when you do that. The degree to which it suffers is in direct proportion to how much scaling you wish to do.
    As a final note, you only really want to ever rescale a project once. So if you aren't sure about the final outcome, click File > Save As and rescale. Look at it. LIke it? Terrific! Keep it! Don't like it so much? Scrap it and open the original again. Then again click File > Save As...
    Rinse and repeat as necessary... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Is there any way to package a project to move it to another computer?

    I've got FCE4 projects on one computer but I need to be able to open and work on them on my MBP as well. Currently, I've got the projects in Dropbox, but when I open them, the source media files all need to be reconnected.
    I guess I could painstakingly hunt for them all one by one. Any file I have imported into FCE I keep in the same folder, but files created by iMovie and FCE [like sequence files] I have no idea where they are.
    Is there any way to package the project, like you can in InDesign? That software packages all related files into 1 folder so you always have them.
    Thaks for the help!

    I am using an external scratch disk, but there's not a lot in each project's folder. I need a way to pull everything a project uses and place it in 1 folder so I can move it to another machine. I have everything I've imported...it's just links to iMovie files [I exported rough cuts to xml, then imported into FCE4. I'm not sure why FCE4 is looking for the original iMovie file...] and sequence files that I need to be able to find.
    I was really hoping for some kind of automated function, like packaging in InDesign...

  • Is there a way to know what report is being processed ?

    In XI R2 / Webi Report Server, or XI 3.x / Webi Processing Server, is there a way to know what object is being processed ?
    For example currently, I can see thru system tool like "Process Explorer" that "wireportserver.exe" has been using a lot of CPU and increasing memory for several minutes. I feel that a report is too large or complicated, but which one ?
    In audit database, I can only see events like "document read", but no "begin of refresh process".
    So, do I have to wait for the process to be finished to find a "document refreshed" and know what was going on ?
    Moreover, at least in R2, if user cancels his refresh request (by closing his browser for example), of if request takes  too much time and reaches timeout, no audit event  corresponding to this refresh request will ever be recorded. In this case, I have no information at all about what report was making the report server taking so much CPU and RAM. It has just a "read" event, but so have a lot of other reports having been read during the same period of time.
    Ideally, I would just have to select the latest "begin of refresh" events without "end of refresh" to know which report are currently being processed. But unfortunately the first one doesn't exist.
    Has anyone an idea to get this information anyway ?
    Thanks

    Hello Seb
    Thanks for your reply.
    I was aware of this instance manager in 3.x.
    In R2, I was also able to do the same with a request thru the query manager.
    Unfortunately in both versions , I haven't found yet how to find informations on report being refreshed by users directly, and not by job server.
    I anyone has an idea...
    In R2 I have tested the -trace option of report server : it generates a big amount of lines in trace files, but that seem completely useless : no information on what report is being processed..
    I don't understant why this information is so complicated to get. It could be so helpfull...
    regards
    François

Maybe you are looking for

  • Satellite Pro L - Mobile phone asks for driver

    I am trying to connect my new Samsung Galaxy S Android mobile phone to my Toshiba Satellite, however the laptop will not recognise the phone and asks for a driver. Can anyone help?

  • Reading nikon d600 raw images in elements 11?

    I use a Nikon D600 and Elements 11. I can read RAW files on one computer but when I installed Elements 11 on a new computer (Win 7 prof. 64 bit) I cannot open the NEF files. The message in Photoshop is that the file is from a camera model that is not

  • Configure ras dial up internet

    I have an AS5300 Cisco Internetwork Operating System Software IOS (tm) 5300 Software (C5300-I-M), Version 12.2(16), RELEASE SOFTWARE (fc3) This is a machine that I inherited which allows users to dial a number which comes in to the Cisco via a PRI an

  • Blue Background Login Screen Problem

    Hello everyone, I tried to change my login screen's background using sudo commands and now it's this light blue and I can't seem to change it no matter what method I try. This is the method that messed everything up: http://www.macosxhints.com/articl

  • Photoshop CPU problem with my wife

    Help! If you can... I have Windows XP, divided into two accounts, mine and my wife's. Yesterday morning, I used Photoshop 8.0 CE on "her side" to handle some big big (700MB - big for my PC) images. Because Photoshop kept being unable to resize etc. d