How can one get S-curve in SAP PS?

With reference to our SAP PS implementation, let me know how can i get S-curve shown from the planned and actual schedule and cost figures. I have seen tabular reports generation but for presentation S-curve is by far more easy and ready way to present.

Go to CNE5 report,
Then click on the description of WBS element or main WBS element. You will get Drill down report for Period Overview.
Go to graphics icons and choose Period D Down. There you will get display for S-Curve
Hope this help

Similar Messages

  • How can I get the "Full cycle SAP project experience"?

    Hi,experts
    I'm a beginner of PI and familar with java,now i have got good acquaintence of PI architecture and familiar with ESR and ID in PI,but now i'm confused with the development aspect of PI expert...one thing is that full cycle sap project experience is a must,but how can i get that while i just always repeating the boring creation of PI objects and do the mapping,routing tasks etc...

    Hi Rajesh,
    If you started working with new implementation project then you will get a chnace to involve in all phases like Blue printing,analysys,realization,development testing.
    Creation of obejcts in ESR or ID its not a big deal,but when you are working with complex landscape then you feel to elanr and many newthing in PI how to achieve the requirement using Writing some good UDF and using node function ...Adapter Modules or JAVA Mapping or XSLT Mappings..and many.
    When you get in to SAP PI project,when you started development first you will start analysing the functional document and then you will start preparing techincal specification,then mapping specification then development,testing..these all tasks happend in pahse by phase.after completion of development then you wl tesing the interfaces ,preparing test cases...
    we can say full lide cycle implemenattion prijects invloves above all tasks.
    Regards,
    Raj

  • How can I get Support Packages for SAP NSP 2004s?

    Hi together,
    I have installed the SAP NetWeaver 04s Sneak Preview.
    How can I get the support package stacks (SP 6 and SP 7)?
    I have only a small OSS-User for 'Freie Berater' (Free  Consultants). With that OSS-User it is not possibel to download the the support package stacks SAP Support Portal.
    Kind regards, Eva

    Hi Daniel,
    the sp-level is 5. You can find it via system/status/ in the section 'SAP System data' (klick at the detail-icon).
    Web Dynpro for ABAP works with that version. But I would like to have the newest sp-level. Our Web Dynpro teacher gave us some example sources and said that some of them might need sp 6. But I didn't test it.
    I have another question: Have you worked in the MARK project a few years ago? There was a collegue named Daniel Kotte.
    Kind regards, Eva

  • How can i get access code for SAP 4.7 IDES version ?

    How can i get the access code for SAP 4.7 IDES version ?
    Thanks

    Hello Rahul,
    If you have registered / licensed IDES Version.
    You can generate Access code for Developer / Objects from http://service.sap.com/sscr
    Regards ,
    Santosh Karadkar

  • How can I get involved with teaching SAP BI at a University

    I have been working on SAP BI for about 8 years and have good ideas on where it can add value to companies. How can I go about teaching it at a university?

    Hi Arvind,
    Well you will certainly be in demand if you have practical experience so I suspect that the problem won't be searching for teaching opportunities but selecting from the many that are offered. Real world experience is invaluable as it puts meat on the bones of materials which students will have had access to prior to your arrival. In some of the UK and Irish schools consultants are asked if they can assist in amending or putting together teaching materials and then co-presenting the materials to students. This formnat often works very well - so well in fact that in those cases where I have attended the lectures tend to be wildly over-subscribed and students will fill every available floor and wall space!
    I would certainly echo Bob's thoyghts with regard to including some additional information though. It's very easy to get requests from multiple institutions that don't reflect your skills or interests and this can be headed off by making it very clear what you want to talk about and what your range of interests might be / companies that you have worked at / any research or prior teaching you've done and certainly not least - what you actually enjoy doing.
    I would also suggest that case studies are in huge demand - a lot of my schools have formed local collaborations with smaller SAP implementers because they can provide a case study, sometimes in collaboration with a speaker from the case company, and this really enables the university to show local relevance.
    I would also suggest you indicate the sort of time that you would be prepared to give - perhaps you have a format in mnd that fits in with your professional life? this is important as the est collaborations take into account the needs of both parties.
    All the best
    Martin
    Martin Gollogly
    Director, University Alliances
    United Kingdom and Ireland

  • How can we get next Alphabet in SAP

    Hi Gurus ,
                    I have a requirement where in need alphabet as per the Fiscal Year .
    For Example : Current Year : 2008
                          Alphabet      : F
    Then for next year 2009 i want it to be G so can anybody help me how can i do that
    Thanks in advance
    Regards
    Shankar

    hi shanker,
    I dont know if there is a standard function module for ur requirement
    but we hav developed our own function module.
    u can try it.
      data:v_char type char1.
      data:v_next_char type char1.
            call function 'YMPIFM_GET_NEXT_ALPHABET'
              exporting
                alphabet      = v_char
              importing
                next_alphabet = v_next_char.
    Below are the function module parameters and source code.
    1) In Import Parameter
    Parameter Name       TypeSpec    Associated Type                   Short Text
    ALPHABET     TYPE        CHAR1                               Single-character flag
    2) In Export Parameter
    Parameter Name       Type Spec    Associated Type                   Short Text
    NEXT_ALPHABET     TYPE        CHAR1                               Single-character flag
    3) In source Code
    function ympifm_get_next_alphabet.
    *""Local interface:*
    *"       IMPORTING
    *"             REFERENCE(ALPHABET) TYPE  CHAR1
    *"       EXPORTING
    *"             REFERENCE(NEXT_ALPHABET) TYPE  CHAR1
    case alphabet.
    when '  '.
    next_alphabet = 'A'.
    when 'A'.
    next_alphabet = 'B'.
    when 'B'.
    next_alphabet = 'C'.
    when 'C'.
    next_alphabet = 'D'.
    when 'D'.
    next_alphabet = 'E'.
    when 'E'.
    next_alphabet = 'F'.
    when 'F'.
    next_alphabet = 'G'.
    when 'G'.
    next_alphabet = 'H'.
    when 'H'.
    next_alphabet = 'I'.
    when 'I'.
    next_alphabet = 'J'.
    when 'J'.
    next_alphabet = 'K'.
    when 'K'.
    next_alphabet = 'L'.
    when 'L'.
    next_alphabet = 'M'.
    when 'M'.
    next_alphabet = 'N'.
    when 'N'.
    next_alphabet = 'O'.
    when 'O'.
    next_alphabet = 'P'.
    when 'P'.
    next_alphabet = 'Q'.
    when 'Q'.
    next_alphabet = 'R'.
    when 'R'.
    next_alphabet = 'S'.
    when 'S'.
    next_alphabet = 'T'.
    when 'T'.
    next_alphabet = 'U'.
    when 'U'.
    next_alphabet = 'V'.
    when 'V'.
    next_alphabet = 'W'.
    when 'W'.
    next_alphabet = 'X'.
    when 'X'.
    next_alphabet = 'Y'.
    when 'Y'.
    next_alphabet = 'Z'.
    endcase.
    endfunction.

  • How can one get a skype enabled phone in Trinidad?

    Where can someone get a skype enabled phone in Trinidad-Tobago? The Skype Store does not allow sales of phones outside of the US. Can anyone help?

    If the Firefox user interface (menu bar) is in the wrong language or if you want to change the current language then you can get Firefox in the language of your choice here:
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html

  • How can one get Facetime for an Ipod Touch version 4.2

    Purchased Itouch last year.  Would like to install FaceTime app.  Can not find it on Itunes.  Is it even available?

    Ul
    There are three reason why you can't find FT:
    - It on a screen you can't find it.  Try using the Spotlight search feature to find it.
    - It is hidden by Restricitions.  To check/change go to Settings>General>Restrictions
    - You officially puchased the iPod from one of the mid eastern countries that prohibits FT.  In that case there is no way of getting FT on that iPod.  To chacj Google for: FaceTime in (country here).

  • How can we get the message from sap system to 3rd party system

    it is related to XI only .if yes u can configure Java proxi-XI-BAPI or call the bapi directly in synchronous mode which can give u return message in BAPIRET.
    can u give the proceser step by step.. plz..
    thanks and regards,
    suresh

    Hi,
    Aout Proxy , you can go thru these-
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f272165e-0401-0010-b4a1-e7eb8903501d
    http://help.sap.com/saphelp_nw04/helpdata/en/87/5305adc23540b8ac7bce08dbe96bd5/content.htm
    Regards,
    Moorthy

  • How can one get FI postings number with a specific payment term

    Hey everyone,
    A short question on FI postings. I need to find postings, which include a specific payment term. I tried to check through the BSEG table but I can't filter the output with the parameter 'payment term' (field ZTERM). Any idea to get the info?
    Thanks!
    Stan B.

    Hi Stanislas,
    I think your search will be more efficiently if you search in table BSID for the open item customer document, BSAD for all the customer document.
    You can select the company and the payment term.
    Hope it will help you
    Valerie

  • How can one get internet on an Ipad where there is no WiFi?

    My daughter bought a new Ipad and gave away her laptop right before she moved to Dar Es Salaam, Tanzania. It turns out there is virtually no wi-fi in the city; everyone uses a USB stick or some other way to get internet. Is there something she can buy so that she can still use her Ipad for internet access? If not, it is a completely useless there...
    Thanks!!

    If she doesn't want to get an iPad with 3G, she could use her iPhone or similar as a Wi-Fi Hotspot or buy a Mifi device:
    http://en.wikipedia.org/wiki/Mifi

  • How can one get a version in English- British (English (UK))?

    The version I downloaded is labelled /en-US. I would prefer /en-UK please.

    If the Firefox user interface (menu bar) is in the wrong language or if you want to change the current language then you can get Firefox in the language of your choice here:
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html

  • How can one get/set ReplyTo field in mail message via GW API?

    Hi!
    Can anyone help me with that, please?

    You can not with the Object API.
    There is no plan to add the support to the Object API.
    You would have to use the SOAP API.
    >>> On Monday, October 26, 2009 at 9:14 AM, Vladimir
    Iofik<[email protected]>
    wrote:
    > Hi!
    >
    > Can anyone help me with that, please?

  • How can one get rid of 100MB download limit over cellular?

    It is a big limitation , I thinks such unnecessary and unexplained rules create a lot of dissatisfaction . Why should we be restricted to download on ou own iPad ?

    This limit is due to agreement between Apple and the cell carriers, the latter of whom don't want to see their limited bandwidth taken up by people downloading huge files. If you want to see that limit changed, you should provide feedback to Apple;
    http://www.apple.com/feedback/ipad.html
    and to your cell carrier.
    Regards.

  • How can one get java to work with SnowLeopard and FF13

    SInce the install of the most recent Java update (9)  for SnowLeopard (10.6.8) Firefox 13 simply advises that there is no plugin installed.  The behavior the update indicates will take place (where the web page provides the option to enable the plugin) simply has never presented itself. At this point, java is simply no longer available on a Mac running SNowLeopard and using Firefox.  Is there a solution to this other than upgrading to Lion?

    Yes. However, do note that FF is only on the machine for testing, I don't use it, preferring Safari. Any further issues with FF are best answered at http://support.mozilla.org/

Maybe you are looking for

  • Activate carryforward of budget for commitments

    Hello Gurus, When we execute carryforward for a purch order or purch requisition, eventhough we activated the carryforward of budget for commitments, the system is updating only table FMBDT. So the amount of the carryforward item does not affect the

  • Identifying A File Missing From A Playlist In The Master Library

    I organize/store all my song files from the master library (about 2,100 files at this point) into playlists. Through some cross-referencing I have realized there is one song file in my master library that's not in a playlist (UUUGH!!!) This situation

  • HT1766 Can't get screen on iphone to work

    I had plugged my iphone in to charge and came back a few minutes later.  When I pushed the sleep/wake button to get online, the screen would not come up. It is just a black screen.  But when I unplugged it and then plugged it back up it made the nois

  • SAP Kernel Version in SAP Component

    Hi to everyone I have a simple question. When you have an Early Watch Alert report. There is a column about "SAP Components". There is "PI_BASIS", SAP_BASIS, SRM_PLUS. SAP_ABA, SAP_AP, SRM_SERVER, ST-A/PI, ST-PI. Which component is referred to SAP Ke

  • Alignment problem in IE

    Hi all, on the page below, I am having diffulty figuring out why the grey bar on top of the left hand navigation does not stretch all the way. http://eminentsoftware.com/Products_Ecommerce.html Works ok on this page: http://eminentsoftware.com/Produc