Project planing compare with actual situation

Hello all,
I have following questions:
1. Is there a possibility to see in the GANTT chart both the projected and real duration of a task/phase, ideally two rectangles for each component - similar to MS Project for example?
2. Is there any possibility to automatically update scheduling of dependent tasks when the actual duration of a task is different from the planned duration? After the phase is released, items are no longer scheduled automatically...
Thanks very much
Marcel

Hi,
to question 1:
As long as the task is not completed, you will see the percent completed in a different color on the task. Once the task is completed, the GANTT chart shows the actual start and finish date. So in the GANTT chart, you don't see planned and actual.
Question 2:
You are correct, once released it will not schedule automatically any more. I guess, there is a class method for scheduling out there which could be called in a BadI. Maybe Bjoern knows more about it....
I know, this is not too helpful, but that's it how it works in standard.
Regards,
Jochen

Similar Messages

  • Need to send a mail while safty stock goes down compare with actual stock

    Dear experts,
    I Need to send a mail to concern persion while stock goes down compare with safty stock. We plan to put a check at the point of MARD table updation, Because we not able to put a check at the all transaction codes, So please LET ME KNOW HOW TO PUT A CHECK AT STANDARD TABLE UPDATION?
    Thanks in adv,
    jayakumar.M

    Your best bet may to be place your check in the a user exit for goods movements.  The enhancement is MB_CF001, the component is EXIT_SAPLMBMB_001.
    Hope this helps,
    Mark

  • Project Scheduling aligment with Actual Date

    Hi,
    I have Scheduled a Project in Planning Board and my first Activity (Architecture Design) was scheduled to finish at 30.06.2014.
    While the the next dependant activity was scheduled to start the next day 01.07.2014.
    Now my first Activity (Architecture Design) is finalised & confirmed (see actual in yellow) earlier than planned.
    Please can you tip, what shall I do to reschedule the project so that next activity is also planned to start earler (the next day after first).
    Or where do I set up this logic "if the activity on critical path is finished earlier, reschedule the whole project to as early as possible".
    I understand I can;t chage "Basic Dates", but the forecast dates shall reflect the state of actuals - right?  
    Cheers,
    Daria

    Hi Daria,
    Kindly ensure that the automatic log indicator is ticked on as well and send us the screenshot of the log that you are getting while rescheduling the network. (Using scheduling types Forward/Backward/Free Scheduling)
    Regards
    Varun

  • Comparing GL Actual Values with BUDGET Values

    Hi All,
    Do we have any report in SAP,  to Compare GL Actual Balances with BUDGET  Values.
    Regards,
    Venkat

    Hello,
    In General Ledger accounting, there is no budgetary control is available.
    Refer Internal Order Accounting or Project System or Funds Management for budgetary control.
    Regards,
    Ravi

  • Use a single variable value to compare with 2 characteristics

    Hi guys
        I need some advice on how to use a single variable value to compare with 2 characteristics in a Infocube.
    eg : I hv 2 characteristics in Infocube
           Launch date  &  Closing Date
       Now I want to display report where the variable date (inputted by user) is equal to Launch Date and Closing Date.
        with regards

    Bobby,
    if I right understood your situation, you have an input variable ZINPUT (related to a date 'A') and 2 others dates (yours Launch and Closing dates, 'B' and 'C').
    You want to display only the rows where A(user input)=B=C.
    Now you have to create 2 new variables (called ZB and ZC, related to B and C dates) NOT marked as 'ready for input' and set to 'mandatory variable entry'.
    Call Transaction CMOD for the definition of the customer exit (if not already existing!).
    Create a new project, maintain the short text, and assign a development class.
    Goto Enhancements Assignments and assign RSR00001. Press the button components to continue.
    Double-click on EXIT_SAPLRRS0_001. For documentation place the cursor on RSR00001 and use the menu Goto -> Display documentation. 
    Then double-click on ZXRSRU01. If the include doesn’t exist you have to create it; assign a development class and a transport request.
    Enter the coding:
    DATA: L_S_RANGE TYPE RSR_S_RANGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    CASE I_VNAM.
    WHEN 'ZB'.
    (and you have to repeate the same code also for the variable 'ZC' !)
    IF I_STEP = 2.
    READ TABLE I_T_VAR_RANGE INTO LOC_VAR_RANGE
    WITH KEY vnam = 'ZINPUT'.
    if sy-subrc = 0.
    L_S_RANGE-LOW  = LOC_VAR_RANGE-LOW.
    endif.
    L_S_RANGE-sign = 'I'.
    L_S_RANGE-opt = 'EQ'.
    append L_S_RANGE to e_t_range.
    ENDIF.
    ENDCASE.
    Save and activate the coding and the project.
    Now go to your query and use these two new variables to restrict B and C....et voilà !!!
    Let me know if you need more help (and please assign points !!! be generous !!!)
    Bye,
    Roberto

  • HT1420 I purchased new computers twice within the same year because they old were damaged in a storm.  However, I can't deauthorize/reauthorize the new computers.  How do I deal with this situation.

    I purchased new computers twice within the same year because they were damaged in a storm.  However, I can't deauthorize/reauthorize the new computers because it has been less than a year.  How do I deal with this situation?

    BrianBlaze wrote:
    I have 3 Computers at home, I am studying computer sciences and am constantly rerformatting my computers, installing windows and linux over and over again.... EVERYTIME I reformat I have to authorize the same computer and so it takes up one of my 5 authorized computers... Anyways after deauthorizing all my computers in september I was not aware I couldn't do it for another year (why does APPLE assume these stupid tactics prevent piracy). Anywysw I need to reach apple and have them make it so I can do it again. I had a similar problem with Playstation and when I called them they fixed it for me... even windows (which you can only have one serial per computer) made it easy because all I had to do was call them and they fixed it for me. Now I need APPLE to do the same and this is the only place I could see to actually say what is going on... I can't believe I have to do this with my iPhone... I wanted an mp3 player and a phone together and if I can't put new songs until September 20, 2012 I am going to freak out!
    HELP!
    Brian
    Try this link: http://www.howtogeek.com/howto/23974/beginner-deauthorize-all-computers-associat ed-with-your-itunes-account/

  • What is the use of jsp when compare with Struts

    what is the use of jsp when compare with Struts

    JSP Tag Libraries are great for reusable content formatting and ligic.
    For example, let's say you have this Shopping site. Each item you sell is stored in a database, and you get them out depending on Catagories, creating a List of ItemBeans. You allways want to display the items with a catagory header, then a <table> with the item number, the description and the price.
    Instead of creating a bunch of logic in the JSP that does this, you can pass it on to a Tag that might look like this in your JSP:
    <shopping:itemTable catagory="${selectedCatagory}" items="${itemsForCatagory}" />
    This would make the JSP easier to read and work with.
    The actual uses are incredible. Have you used the <jsp:useBean ...> tag? That is an example of a use of the Custom Tag Libraries.
    Furthermore, look into JSTL (JSP Standard Tag Libraries). They are a collection of tags (API by Sun, coding by Apache) used to do many of the standard actions you might want/need to do in JSPs, like a conditional tag (c:if only do something if the test is true), multiple-conditional tags (c:choos c:when c:otherwise) like an if [else if] else construct. Looping through an array or Collection (c:forEach), storeing values in scopes (c:set) formating numbers and dates (the fmt library), xml transformations (xml library), and lots of other things that you could replace scriptlet code with.

  • How does the email program in the suite compare with Google GMail especially in handling spam or are both about the same?

    How does the email program in the suite compare with Google GMail especially in handling spam or are both about the same?

    Firefox doesn't include an email client. Are you asking about the Seamonkey suite? The Seamonkey support options are over here: http://www.seamonkey-project.org/community

  • Why does iMessages does not work properly ? Please help me ! Its works better with the previous version if compared with the latest iOS

    Why does iMessages does not work properly ? Please help me ! Its works better with the previous version if compared with the latest iOS

    Many, many thanks for both of you Todd and Rick.
    to Rick:
    I suppose you mean the Color Settings in Project Settings as follows:
    - Working Space: None
    - Match Legacy ... Gamma Adjustments checked ON
    But it does not correct the colors in effects. And checking or unchecking Make Movie/Output Module Settings/Color Management/Profile/Preserve RGB does not make any difference.
    to both of you:
    Those parts of the video image that does not have color effects are just fine. In these parts the color is preserved when reimporting to FCP. However, those parts having color effects (except Levels, as decribed earlier) have altered color results. So, only the parts having effects affecting color are misinterpreted in the image area. The mismatch is of course seen in AE, before making the movie.
    What I ment with "Color Management not working properly" is that (instead of "disabling" it) Color Management does not seem to be able to correct this "misinterpretation" or difference in effect handling between AE 6 and 10.
    So, would you have any solution for this problem?
    Again, many thanks for your fast replies!

  • How to deal with the situation when the database change into ms-sqlserver ?

    Hi,dear all,
    How to deal with the situation when the database change into ms-sqlserver or other database?
    Now, i want to build a j2ee project with ORACLE ADF bc,but this project may be used in several diffrent databases for example oracle db,ms db,mysql and so on.however,if i have developer this project in jdeveloper and this project connection was config as a oracle database,and then,can this project be reused for other databases espasially including the model codes? if yes,how should i do?
    all who know how to resolve this,tell me pls,thanks.
    bruce Li,
    China
    Message was edited by:
    user526724

    Hi Paulbin,
    Do you want to supply a function-pointer to a DLL so it can call[back] your VI?  Here's how it can be done with .NET, though, that solution requires a C compiler.   A single "VI_to_function-reference" utility could handle all cases where the callback passes no parameters.  Maybe someday somebody will share that dll.
    Did you know that LabVIEW can use Events for some COM-signals change?  See pic.  (Note: DTR is not listed - - )
    Another question is another function's prototype is WORD SetTestType(WORD comHandle, bool type1, bool type2, bool type3),   I tried to use a boolean control and a Boolean to (0,1) node in labVIEW to pass parameters to CLF, I config the bool input value as U8(according to C++ bool type) and U32(according to WIN32 BOOL type), it dose not help, when I execute the VI, LabVIEW will be disappeare, it seems to be closed, I must start it again.
    Could someone has similar experience on this points?
    It's easy to crash LabVIEW misusing CLF - maybe there's another reason for the crash besides bool mis-match(?)  Do you know which "Calling convention" is required?  What type is comHandle? (where does comHandle come from?) 
    Cheers!
    Message Edited by tbd on 03-23-2007 09:34 PM
    Message Edited by tbd on 03-23-2007 09:35 PM
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
    Attachments:
    evt.jpg ‏7 KB

  • Compared with the iMac display...

    Why does it seem to me that when compared with the iMac display, the 30-incher looks somewhat grainy and plays videos not so well? Is the 24" iMac display actually a better display?

    The Cinema Display has a anti glare coating on it. I have heard allot of people who have the 30" display complain that it is very noticeable. I have the 23" and it is noticeable but it's not bad at all.
    I too have my display connected to an iMac but I think the Cinema Display looks much better.

  • Implement Comparable with multiple arguments

    Is there a way of implementing Comparable<> with multiple different arguments to the Comparable generics?
    For example:
    public class Foo<K, V> implements Comparable<K>,
              Comparable<V>
    }The compiler complains with the error: "The interface Comparable cannot be implemented more than once with different arguments: Comparable<K> and Comparable<V>"
    Clearly, this cannot be done exactly like this, so I'm wondering if there is a different way of accomplishing the same functionality.
    Edited by: mgolowka on Apr 24, 2008 12:22 PM

    I'm working on creating a generic binary search tree. Currently I have this:
    public class BinarySearchTree<T extends Comparable<T>> implements Collection<T>
    }With the add() function, I can simply do add(T) that will use T's compareTo(T) method to find its place in the tree, however with the remove() and get() functions that I want to have would require an input of T, which isn't what I'm entirely looking for. I could change this to have a key/value pair so it's functionality is like a set, but I'm not sure if that's the best course of action. I could make it implement Map<K, V> to get that functionality...
    There is no time limit on this project as it is a part of a personal project.

  • FreeRTOS BSP project XAPP1026 errors with SDK2015.1 and 2015.2

     
    HI there,
    I tried to use SDK2015.1 to generate the freeRTOS bsp with the repository from xilinx. 
    https://secure.xilinx.com/webreg/clickthrough.do?cid=107743&license=RefDesLicense&filename=xapp1026.zip&languageID=1
    But if the BSP is generated by SDK2014.4 or older versions, it works well.
    Hereby the console msgs FYI as well.
    Any idea? 
    thx
    Sam

     
    Thanks for your reply.
    But these are the errors in BSP project, which is generated by SDK automatically. If adding these include files in the BSP project manually, these revisions may be deleted when the BSP project is regenerated in some situations.
    I checked the xil_types.h file in the standlone BSP project, which is generated by SDK as well.
    There are type definitions, like:
    #if !defined(LONG) || !defined(ULONG)
    typedef long LONG;
    typedef unsigned long ULONG;
    #endif
    But the xil_types.h file in freeRTOS BSP doesn't include these type definitions. I tried to add these definitions manually into xil_types.h file, but SDK erases the code automatically after compilation. 
    thx
    Sam

  • I got the image on the vi,now I want to take rectangle potion from that image and compare with other image

    Hi,
    Now i have a image on VI ,i want to take rectangale postion of the image and compare with the other image(In this image also i need to take a small postionof it) and  show the result.
    Both image are equal or not....if it is equal show pass if the image is not ok fail.
    Regards,
    Sri.

    First i would like to thanks for the inputs,
    I have made one Vi for comparing the two images and display  equal or not.
    Problem:if there is a small change in the picture it is showing false ,but the image is ok only the contract ,clarity ,inclination is the problem... i need your help in controlling that image......like controlling the colors and telling if the color , shade, projection of the image of the image is in between this range show it as ok....
    i started with cluster taking the out put of the BMP file, but i am not able to do....can u help me on this.
    i am attaching the file what i have made...
    Regards,
    Sri
    Color
    Attachments:
    image.ppt ‏52 KB

  • Slow CS3 compared with CS2

    I'm seeing an overall sluggish performance in inDesign CS3 compared with CS2. I use G5 processors and I have plenty of Ram (8 Gigs on a x2 G5 and (2 Gigs on an iMac) I . Even CS2 running on a G4 PowerBook seems faster. The preview of the images set on Typical makes me think that I have the setting on High Quality, whilst I don't. Images take ages to show up. Seeing the same document open on an Intel machine seems much faster even if has only 2 Gigs of Ram. Is there a problem with G5 Macs and InDesign CS3? Photoshop CS3 works just fine.

    Is it like this with any document? There have not been much complaining of CS3 being slow so it is certainly not a general problem. I have only toyed with the tryout, I am stuck in CS1(!) until fall, but didnt notice any slowdowns in screen redraws on a few magazines I converted.
    You said in a previous post it is like having high res display on, does that mean that they also display in high res or was it just to compare the sluggishness? Placing overly large images and downsizing in Indesign could cause that I think. See what ppi the image are reported to be, actual and effective.
    Are those images on a server or on your local disk? If on a server see if it behaves any better when trying with images placed from you local drive.
    Also try an export to .inx and reopen that with hope of getting rid of any corruption.

Maybe you are looking for