BART. How to ignore all changes but size (decrease)

Hi,
I was checking BART and looks nice, I read some of the rules and policies, bu tnothing that came close to this:
How do I have BART just report if a file has decreased in size?. Say I have a .txt 5kb, I want BART to just tell me if the size is now 4KB.
Thanks

Hello Rodica,
You can also try checking report S_AR_87013558
Once you execute this report, you will see Budget amount shown for specific Project / WBS.
Click on this Budget amount and go to menu Goto-Line items.
You will get to see Display Budget Line items for projects showing text, history of Budget amount datewise.
Check this and see if it helps you.
Regards
Tushar

Similar Messages

  • How to see all changes on Project

    Hello,
    How I can see all changes done on one Project, including description on project level, budget changed, description and budget on WBS, all networks changes, hours booked, etc. I need date of change and who did that. In CN60 I see something, but I need also budget changes (CJI8) in the same view. It is possible?
    Thank you.
    Rodica

    Hello Rodica,
    You can also try checking report S_AR_87013558
    Once you execute this report, you will see Budget amount shown for specific Project / WBS.
    Click on this Budget amount and go to menu Goto-Line items.
    You will get to see Display Budget Line items for projects showing text, history of Budget amount datewise.
    Check this and see if it helps you.
    Regards
    Tushar

  • How to remove all changes made to an image in Camera Raw -

    In CS4 with latest ver. of Camera Raw, I think there is a way to remove all changes previously made to an image while using Camera Raw.
    In other words after doing this the little icon in the upper right hand corner of an image in Bridge that indicates changes have been applied to an image, should be gone. Another way of asking this would be to say, how can I start all over again with the original image in Camera Raw by removing all changes prefiously made to it in Camera Raw?
    TIA

    Sorry, I don't know the answer to that for sure*.  As a certified old geezer who avoids cluttering his mind with stuff that can easily be looked up in a menu, I stay away from keyboard shortcuts as much as I can, using only those applicable system wide, the most obvious ones in Photoshop like deselect, etc.
    * However, since no such shortcut appears next to the menu command, I doubt there is one.
    You could create an action and assign it a key command, though.  Doh!
    Never mind.  That was a total brain short circuit.  You can't create actions in Bridge.  You'll need a script.  Ask in the Bridge Scripting forum.
    Message was edited by: Ramón G Castañeda

  • How to move all files but X to Y

    It doesn't really matter if it's in the terminal or if it's a applescript but I need to know how to:
    Move all files in a dictionary but a few named.

    Could you pleas explain more?
    If you do not understand the shell while loop, it is possible that using shell commands is a bit more dangerous than you might want to try.
    The explanation:
    ls -a | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    ls -a will list all the files in the current working directory (including the invisible files that start with a leading period.  Thinking about this, maybe you do not want to include -a.  You could cd /path/to/the/desired/directory as a way to set your current working directory as the directory you wish to move things from
    cd "/path/of/the/from/directory"
    ls | grep -v "X" | while read file
    do
        mv "$file" "Y/"
    done
    The ls command's output is piped (the vertical bar | ) into the grep command (general regular expression parser).  The -v option tells grep to throw away any lines (filenames) that match the regular expression "X".  So if the regular expression X matches all the files you do not want to move, the filenames send to the next pipe will be the files you wish to move.
    The while loop will read the filenames grep has selected and invoke the mv (move) command for each file selected by grep and move them to the destination directory Y
    The bigest risk is that you will execute this in the wrong directory and move the files that you need somewhere else.  OR WORSE, if "Y" is NOT a directory, and you DO NOT put a trailing / the mv could move easy file to the destination file, deleting the previous file for each file moved, so effectively deleting every file in the directory except the last one.
    This is why I said if you do not understand what is going on with the shell commands, you could do damage to your system.
    ls could have the /path/of/the/from/directory instead of using the cd command.  The grep command could be replaced with egrep that allows using alternate matching strings:
    ls /path/of/the/from/directory | egrep -v "abc.txt|def.jpg|xyz.mp3|etc..." | while read file
    do
        mv "$file" "/path/to/the/destination/directory/"  # notice the trailing slash for safety
    done
    Good luck.  I hope you do not destroy your system

  • ODI CDC using Logminer - how to capture all changes for one PK

    Hi,
    Let me explain our scenario and challenges we are facing -
    *1.     Captures all changes in CDC –*
    We are using CDC (LOGMINER) to capture change. Currently current ODI code capture latest change happened during last execution.
    Now requirement is to capture all changes happened after last execution cycle.
    To achieve this, can you please suggest what changes we need to do in current code.
    *2. Performance Improvement* - Current CDC can handle 400 TPS (Transactions per second, here transactions means single record) and we are looking for 2000 TPS
    we are expecting 15 million records for INIT load and 7-8 million records on daily basis for CDC
    What needs to be done to improve the performance. In case if you need more details to answer this, please let me know.
    Oracle database version at source and target - 11g
    ODI - 11g
    Thanks in advance.
    Regards,
    Dinesh.

    Hi Dinesh,
    I have some experience with ODI And Logminer / Streams.
    Can you confirm what JKM you are using?.
    For your 1st point - the logic to only get the latest update is contained within the JV$ / JV$D view , you can edit the definitions of these views if you want to bring through all transactions - there should be an SCN number in the change table you can order by if you are interested in the order the transactions occurred - I assume you are otherwise your target DB will get out of sync.
    As for performance - Have you tweaked the Streams settings ? How many Change sets do you have ?

  • JFrame: How to detect a change in size?

    Hello everyone,
    I have a question related to the size of a JFrame or JPanel. I add a few JPanels to a JFrame and I wanted to detect when the size of the JFrame window or the JPanel itself had changed (if the user pressed the "Maximize icon" or simply dragged the window size from the one of the corner of the window). I am not sure if I need a listener added to the Frame, and what kind of listener that would be (if any exists, I am not sure).
    I have another question regarding the class Dimension. I add JPanel's to my JFrame and I use the class Dimension to get the size of the panel with the getSize() method. I wanted to know when is the sooner that I could call this method to get the right size. For example, I use it in a few methods like the paintComponent, the mouseReleased and mouseDragged method, but I wished to get the correct size as soon as possible and only compute it once (or update it if the JPanel sized change). I am wondering why the size is 0 while I call this method inside the constructor and if there is any method where I can call it before actually doing anything to the JFrame please.
    I hope my questions are somewhat clear.
    Thanks for all your help, it is very much appreciated.

    I am having one more issue.
    I have implemented the ComponentListener for each of my JPanel and used the componentResized and componentShown to calculate the size of my panel.
    This works great when I resize the JFrame using one of the corners, but not when the "maximize button" (in the title bar next to the corss) is pressed.
    Is there any way please to fix this? Thank you.

  • How to find all changed GPO's?

    We're running AD level 2008 R2. I have a default GP setup for each OU. I'd like to search each GP and find ANY changes made. I can open "All Settings" under User and Computer Configuration, but that doesn't show me the changes to Preferences.
    How can I get "All Settings" that covers everything under my default group policies?
     

    Hi,
    >>How can I get "All Settings" that covers everything under my default group policies?
    To check what settings are configured in a GPO, in Group Policy Management Console (GPMC), you can click the GPO and you can see all the settings configured in the GPO under the
    Settings tab.
    To check what group policy settings has been applied to a user, you can run cmd command
    gpresult/h gpreport.html on the computer onto which the user logs, and to check what group policy settings have been applied to a computer, you need to run the mentioned command with admin privileges.
    Besides, you can also follow the steps below to collect group policy result on domain controller for a specific user on a specific computer.
    1. On domain controller, click Start -> Run, type GPMC.MSC, it will load the GPMC console.
    2. Right click on "Group Policy Result" and choose wizard to generate a report for the problematic computer and user account (please place appropriately). (Choose computer and select
    the proper user in the wizard)
    3. Right click the resulting group policy result and click the "Save Report…" => save report to save the report to a HTML file.
    In addition, you can also use Group Policy Modeling to simulate a policy deployment that would be applied to users and computers before actually applying the policies.
    Regarding group policy modeling, the following article can be referred to for more information.
    Simulate Resultant Set of Policy Using Group Policy Modeling
    http://technet.microsoft.com/en-us/library/cc771389.aspx
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.
    Best regards,
    Frank Shen

  • Exporting: How to include all metadata but keywords?

    When exporting to JPEG, is there any way to export all of the metadata that is currently exported, but exclude just the keywords? I know there is an option to minimize metadata on export, but that seems to remove everything but the copyright information. I know you can also right click on individual keywords in the library panel and uncheck the "include on export" checkbox. It seems, however, that you cannot select all the keywords and apply this globally- you have to select each keyword individually and make the change (as far as I can tell).
    So- what is the quickest way to remove just the keywords from an export, leaving all other metadata intact? Thank you.
    - Dave

    Yes, that works for individual keywords, but when I try to select ALL of my keywords at once and apply the change it does not save it. Since I have 200+ keywords, I'm looking for a quick, global solution.

  • How to Track All Changes In Portal

    Hi All,
    Here is my requirement.
    I need to create a portal application, this application should  trigger an email if there is any change in the portal. Lets say if someone changed the property of a portal Iview or page or workset or role  it should trigger a email with which  property changed by whom at what time.
    in Simple any changes in PCD should trigger a email with changes.
    Please advice me on how to do this requirement.
    Regards
    Praveen

    Hi Praveen,
    I think you can achieve this thru a custom PCD filter.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/17968de1-0a01-0010-1f9f-c090fbc7001a
    If you just want to know the what properties are different in each object and all. You can do it thru PCD Inspector. Suppose you are checking in QA system, you can import the business package(epa file) from dev system and compare the 2 objects.
    -Aarthi

  • How to find all changes in project builder (especially in user field)

    Hi All,
    Please advice, how can i get the history who change our data in cj20n (project builder),especially in user field tab.
    Thank you.
    Best Regards,
    Nies

    I am stating once again what ever was mentioned earlier:
    Check the below:
    1. Is Change documents indicator enabled in the project profile?
    2. Have you created a User Status for business transaction 'Create Change documents' as allowed for the object WBS. (I assume you want to log the changes of WBS user defined fields)
    3. Have you used the this profile while creating the project?
    4. Did you set the user status on the WBS? This needs to be done manually
    5. Have you released the WBS?
    Now try make changes to existing fields of WBS and save it. Run the report CN60
    Regards
    Sreenivas
    Pls close this post if satisfied

  • How to export all versions but not masters?

    Here's the conundrum:
    I have 800 event photos in an Aperture project. I stamp adjustments to all of them. So, now I have 800 stacks, each with a master RAW image and an adjusted version. In each stack, the unadjusted master is the default pick.
    If the stacks are closed and I Export Versions, I get 800 JPEGs rendered from the unadjusted masters. If I open all stacks, select all, and Export Versions, I get 1,600 JPEGs rendered from both the masters and the versions.
    How in **** do I select the 800 adjusted versions for export without having to command-click on each one?
    Is there no way to automatically export just the versions?
    The only approach I've found is to select the versions and make them the picks in their stacks, one by one. Then I can close the stacks, select all, and Export Versions. This is painfully time-consuming. I can't even just select the versions one by one and then batch promote them to pick status. I not only have to select the versions one by one, but I also have to promote them one by one.
    Argh!
    Am I missing something here? Please help.

    More trickery:
    Select all the images in the project you are going to create adjusted versions of.
    Press option V to make stacked versions. Don't deselect anything!
    Control click one of the versions and select New from selection > Album
    The new album appears and you can name it
    Now you have the new versions as album picks (check mark) in the stacks
    Close all the stacks with Option semicolon
    The new versions are now on the top of the stacks in the new album
    Adjust each image as needed (no need to open the stacks)
    In the original project the stack picks are untouched
    In the album they are adjusted
    I think this will speed your workflow somewhat when combined with turning off the automatic versions. Generally speaking with Aperture you want to create new albums for everything you do. They are very flexible and let you go back to practically anything you have done and modify it.

  • How to remove all colors but one, or perhaps two, w/ everything else B & W?

    Hi! I have the latest Final Cut Studio and I'm trying to figure out how best to make everything black and white except for deep reds. I might light to add deep blues or "ripple of gold color" here and there, but the first step is understanding a good work flow for getting all but one color. Any suggestions? Much thanks!!!!!!

    Hello, I have a similar question to a previous post about desaturating specific colors. I'm editing together live footage from multiple cameras for a Concert shoot and two of the four have black clothing showing up as a "purple-y red". How can I select only a specific range of colors in one locked area (So as not to affect the lights in the background which are displaying the proper red/purple colors) and adjust it to be more black without making the entire shot look overly colored/contrasted?
    Sorry if this is easy but I'm new to Color and FCP wasn't much help w/ it's simple color correction effects.
    Thanks!

  • How do find all database slog size and mdf file size ?

    hi experts,
    could you share query to find all databases log file size and mdf file (includes ndf files ) and total db size ? in MB and GB
    I have a task to kae the dbs size  around 300 dbs
    ========               ============     =============        = ===        =====
    DB_Name    Log_file_size           mdf_file_size         Total_db_size           MB              
    GB
    =========              ===========               ============       ============     
    Thanks,
    Vijay

    Use this ViJay
    set nocount on
    Declare @Counter int
    Declare @Sql nvarchar(1000)
    Declare @DB varchar(100)
    Declare @Status varchar(25)
    Declare @CaptureDate datetime
    Set @Status = ''
    Set @Counter = 1
    Set @CaptureDate = getdate()
    Create Table #Size
    SizeId int identity,
    Name varchar(100),
    Size int,
    FileName varchar(1000),
    FileSizeMB numeric(14,4),
    UsedSpaceMB numeric(14,4),
    UnusedSpaceMB numeric(14,4)
    Create Table #DB
    Dbid int identity,
    Name varchar(100)
    Create Table #Status
    (status sql_Variant)
    Insert Into #DB
    Select Name
    From Sys.Databases
    While @Counter <=(Select Max(dbid) From #Db)
    Begin
    Set @DB =
    Select Name
    From #Db
    Where @Counter = DbId
    Set @Sql = 'SELECT DATABASEPROPERTYEX('''+@DB+''', ''Status'')'
    Insert Into #Status
    Exec (@sql)
    Set @Status = (Select convert(varchar(25),status) From #Status)
    If (@Status)= 'ONLINE'
    Begin
    Set @Sql =
    'Use ['+@DB+']
    Insert Into #Size
    Select '''+@DB+''',size, FileName ,
    convert(numeric(10,2),round(size/128.,2)),
    convert(numeric(10,2),round(fileproperty( name,''SpaceUsed'')/128.,2)),
    convert(numeric(10,2),round((size-fileproperty( name,''SpaceUsed''))/128.,2))
    From sysfiles'
    Exec (@Sql)
    End
    Else
    Begin
    Set @SQL =
    'Insert Into #Size (Name, FileName)
    select '''+@DB+''','+''''+@Status+''''
    Exec(@SQL)
    End
    Delete From #Status
    Set @Counter = @Counter +1
    Continue
    End
    Select Name, Size, FileName, FileSizeMB, UsedSpaceMB, UnUsedSpaceMB,right(rtrim(filename),3) as type, @CaptureDate as Capturedate
    From #Size
    drop table #db
    drop table #status
    drop table #size
    set nocount off
    Andre Porter

  • MDX Query-How To ignore all measure calculations where the measure is zero

    Hi,
    I have a query MDX that also extracts the values of 2 measure with value 0. 
    How can I do ignore and not to extract ? 
    Example:
    Customer________Quantity________Revenue
           1____________0_______________0
            2____________1______________10
           3_____________2______________15
    I want extrcat only:
    Customer________Quantity________Revenue
           2____________1______________10
           3_____________2______________15
    thanks.

    Hi,
    I too have the same issue. It would be great if you can update how you resolved it.
    Thnaks for your answer.
    Saravanan Payani.

  • How much can I change the size of this image?

    I want to print an image using an online sevice and the attached image shows the dimensions. I'm VERY new to Photoshop and want to know if I can just enter a larger size into the fields to print it at say, 8.5 x 11 and, if so, do I need to do anything else to prepare the image for this?
    Thanks!

    Ditto what Noel mentions, but your quality of enlargement will depend as well on the native format of the image. For example, you would get a better enlargement result if your original file as a TIFF and not so good if you are working on a JPEG due to the lossy compression.
    While getting to Letter size might be a challenge you might get a good print by resampling at between 150ppi and 200ppi but you would need to make some test prints to see what would be an acceptable image. At 150ppi you would get an image around 10"x6" and at 200ppi the image would be around 7.7" x4.6"
    Hope this helps
    Mike

Maybe you are looking for