How to change the Settings in the Graphic structure. T Code CN41

Hi,
How to change the Settings in the Graphic structure. T Code CN41
Iam using the T Code cn41 to know the diff in Duruation, work, remaining duration in diff project version. I am getting the Graph/curve with standard settings and system is not allowing to change the scale (Y-X Axis) the way i required.
Pls advise me.
Thanks in Advance.
Raju

Hi,
Thanks for the reply. But please clarify a bit. Please below is my requirement.
As per the SAP Avilable screen in T Code CN41,it is showing the scale of 1 and 2 only.
Assume if it 12 Days as actual work VS Actual duration of 265 Hours .It is showing 2 = actual work of 12 days and 1= Actual duruation of 12 Days.  I want to have the scale in such a way that, we should be able to see from 0-100-200-300 Hours and Days 5-10-15-20.
Can u pls advis how can i get these and also give me ur mail id so that i can send u the screen shot also.
Regards
Raju

Similar Messages

  • How to change podcast settings in the Application options dialog

    I have attempted to subscribe to an RSS feed for a podcast - URL is http://www.abc.net.au/triplej/kingsmill/rss/podcast.xml
    I am being prompted to join using live bookmarks. As i use Google reader, there is no option available to change it to google. Hitting the dropdown arrow, my choices are live bookmarks or Microsoft Outlook - or browse for application. How do i change / remove the applications entry for RSS so i can start over and select Google as a default
    The Options / Application / Podcast - has the RSS logo - says "preview in firefox"

    Apple does not make what you are asking straightforward for a reason: the user usually sets the system language to the one they prefer anyway.
    If you think you have a good reason for setting the language in the application itself, I would suggest using the pathForResource:ofType:inDirectory:forLocalization: method of the main bundle to get the applicable strings file and then deserialize it into a dictionary as if it were a plist (strings files actually are).

  • How to change language settings on the latest version of pages?

    How can I change languages in Pages?

    It should do it automatically but otherwise just select select the text:
    Menu > Edit > Spelling & Grammar > Show Spelling & Grammar > Automatic by language > change to your prefered language
    Peter

  • I wrongly changed my settings to the American store and now when I try to download updates for the apps my ipad 2 tells me I need to switch back to the Canadian store, how do I do that. Resident of Canada

    I wrongly changed the settings on the apps page to the American store. Now I cannot download any updates because I am locked out and need to revert back to the Canadian store, how do I do that

    Try going to the bottom of the Featured tab in the App Store app on your iPad and tap on your account id, tap on 'View Apple ID' on the popup and log into your account, and then select the Country/Region section and select Canada.

  • How do I change default settings in the author field when I edit or insert a comment in a PDF?

    How do I change default settings in the author field when I edit or insert a comment in a PDF?

    Generally it gets this info from the Identity in the preferences. Unfortunately, I know of no way to change the Login Name that shows up in the comments. I need to look at newer versions of Acrobat on other machines, this is AA8.

  • How can I change the settings in the Health App from Imperial to metric - eg to metres and kilos ?

    How can I change the settings in the Health App from Imperial to metric - eg to metres and kilos ?

    We may have to wait for an update.  Aside from changing the country, I'm not sucre this can be done.  There is no Health App in the System preferences and no  way to modify from within the app.  Weird.
    If you go to Language & Region under general settings and choose any other country, you will get Metric.  I have the opposite problem.  I live in a Metric country and want my health app to be in lbs and inches which is what I am used to.

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • Constant "you have changed the settings for the iphone" in iTunes

    On my iPhone 4, I can sync my phone with no issues, and when the sync is done and I switch over to the iTunes store or my library, it always pops up with "You have changed the settings for the iphone "my iPhone". Would you like to apply these settings?"
    I can hit apply, go to something different, come back, do nothing but sync my phone again, and as soon as I switch back to something else, I get the message again...
    I didn't change anything, but it keeps saying I have?

    Wow...
    That is pretty bad...
    From what I've gathered. There has been an increasing number of issues ever since iTunes 9 and more problems with iOS4 for the non iPhone 4 users.
    It's such a shame because I used to actually comment on how iTunes worked seamlessly and so quickly. This actually feels as if I'm running a typical bloated windows software now. [And to my great surprise, an equal number of people using iTunes on MacOS have given the same kind of feedback. I originally thought it was restricted to just windows users.]

  • Is there any way to change the settings for the built in isight camera?

    I'm sure someone else has probably already asked this, but is there any way to change the settings for the built in isight camera? The resolution is horrible.

    Welcome to  Discussions, Prissymissysays
    The last Apple-published resolution data I saw said that iSight's resolution is 640x480 VGA. I do not know of any way to change iSight's resolution, but that level is plenty of quality for my webcam needs.
    The software you use to operate your iSight controls it, so specific answers will depend on what software you are using when you need more resolution. Check Help in that application to see if it can change iSight's resolution.
    Some software, such as Apple's QuickTime 7 Pro allow you to change iSight's video quality and compression level with its QuickTime Player > Preferences > Recording > Quality: setting. You can add iGlasses software to manually override some iSight settings that are otherwise controlled automatically by the software using iSight. However, I do not think either of these options really changes iSight's resolution.
    Check whether your iSight's lens cover has fingerprints or smudges on it. Then check iSight's image quality of your face in full sunlight about two feet from the lens. Best image quality requires more light than what most people would consider normal room lighting.
    If you are still having problems, consider the applicable suggestions from How to Troubleshoot iSight.
    If you need better resolution than iSight can deliver for some special imaging requirement such as close-up or high-accuracy images, you may need to consider using a different camera that better meets your special needs.
    EZ Jim
    PowerBook 1.67 GHz   Mac OS X (10.4.10)    G5 DP 1.8  External iSight

  • As an update, I installed an update 5.7on my Mac laptop, now the Lightroom 5.0 has become a "Lightroom Mobile" version.  How can change it back to the laptop version?

    As an update, I installed an update 5.7on my Mac laptop, now the Lightroom 5.0 has become a "Lightroom Mobile" version.  How can change it back to the laptop version 5.7?
    Thanks for any help you can provide.

    LR on your laptop is still a desktop version.  It is just now able to upload to the cloud to replicate photos to either http://lightroom.adobe.com/ or an iPad that has LR Mobile installed.
    I think you probably just want to change the LR 5 identity plate back so it doesn’t mention LR Mobile all the time.  Hover over the identity-plate area, and click on the little triangle that appears, then choose Change Identity Plate.

  • I have my iphone 4 and an ipod touch on the same apple ID.  My daughter tried to change the settings on the ipod so that she could facetime on both her ipod and iphone which is on a separate Apple ID.  I no longer have a 3G connection.

    I have an iphone 4 and an ipod touch on the same apple ID.  My daughter who uses the ipod tried to change the apple ID on the ipod to be the same with her apple ID on her own Iphone so that she can use facetime on both devices.  Not sure what she did but my 3G connection is no longer working.

    Changing Facetime settings on an iPod will have no affect on cellular settings on an iPhone. Something else is going on there. If she did not change any settings on the phone, then nothing she did could affect your celluar 3G.

  • How to provide security settings for the adobe form using livecycleDesigner

    Hello,
    I am very new to form designing,
    can any one please tell me how to provide security settings for the adobe forms at client side?
    Regards,
    Menaka

    Hi,
    that is a good topic for the ADFS forum.
    ADFS forum - http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    But you could pass the user-agent as incoming claim type Client User agent. User-agents can be manipulated, so if that is an issue you can look into Device Registration and the Device OS type from there. That is also a incoming claim but requires DRS and
    DRS is not available for all plattforms.
    Hth,
    Lutz

  • How to change a connection with the database in Runtime?

    How to change a connection with the database in Runtime?
    My connection was made using ADF Business component (ApplicationModule).
    ADF Swing.
    JDeveloper Studio 11.1.1.4.0.

    When deploying ADF applications with database connection, you should be using JDBC data sources configured in the weblogic server.
    You could change the JDBC data sources to a different DB instance or location - by changing the JDBC data source and restarting the weblogic server.
    For more details, check
    http://techiecook.wordpress.com/2010/12/02/oracle-weblogic-adf-datasources/
    Thanks,
    Navaneeth

  • HT4623 In syncing my Iphone 5 for the first time, Facetime disappeared.  Although it shows up under apps in the settings menu, the application itself does not seem to be there.  What happened?  How can I fix this?

    In syncing my Iphone 5 for the first time, Facetime disappeared.  Although it shows up under apps in the settings menu, the application itself does not seem to be there.  What happened?  How can I fix this?

    There has never been a facetime app on the iphone.
    As the manual says, you access from contacts.  Pick a contact and scroll down to the facetime button

  • HT4864 When trying to update my Mail Account Mailbox Behaviours settings, when I try to close the settings pane the following messages occur: Invalid Incoming Mail Server The "Incoming Mail Server" field cannot be empty. The incoming mail server box has p

    When trying to update my Mail Account Mailbox Behaviours settings, after making the changes when I try to close the settings pane the following messages occur: Invalid Incoming Mail Server The “Incoming Mail Server” field cannot be empty. The incoming mail server box has in light grey colour: p02-imap.mail.me.com in it and I cannot edit its content. Any ideas what is going on and how to fix it?

    Hi all,
    Mattreichenbach is probably on the right track here with a reset of settings.  I think I've determined the issue has to do with cached account information and inconsistencies for the account name.  This seems to crop up when I've changed my password and it hasn't propagated fully to all the servers, devices, certificates, etc.
    Hopefully many here are on their way to restoration of service by now but it's clear that a lot of people are having the same issues.  Very frustrating and definitely something Apple needs to resolve:  incoming mail server field grayed out, incorrect autopopulation of different fields, other unanticipated behaviors.  If you're still having issues, though, here's what worked for me...
    First, head to the iCloud preferences pane in System Configuration and choose "Sign Out".  When I did this it prompted me with a number of "are you sure" type questions about retaining information on my local machine.  I chose to delete/remove the info each time simply because it should all be restored by the cloud and I didn't want to risk a massive duplication of my data... I will say, I'm back up and running with no issues so I suspect you can make the same delete/remove choices...  But use your own judgment.  I don't want you to lose any data (ie.. please use care as you do this because I cannot bear the thought of causing anyone to experience the pain of data loss).
    Once you've signed out of iCloud, restart your system.  When you get back in, head to the Mail, Contacts and Calendars section of your System Preferences and add your account back by choosing the brushed aluminum "iCloud" button.  When it asks for your account name, use your @iCloud.com email address.  I am all but certain my issue had started because one of my devices (iPhone or whatever) had been set up with an email alias specified instead of my @iCloud.com address.
    Apple, if you're reading through any of these issues (there are TONS of users having this same problem).  Take note, that your icloud service somewhat frequently is not responding and yet tells the user that the password is wrong and this prompts people to be changing their passwords unnecessarily.  This has happened to me on numerous occasions.  Also, I noticed that last week's outage corresponded to a VERY similar outage exactly one year ago to the day.  Sounds like planned maintenance to me and I think you could do a better job notifying folks so we're not wasting HUGE amounts of time troubleshooting a problem that we have no hope of fixing.
    Hope that helps some of you!
    Terry Mullane
    Washington, DC

Maybe you are looking for

  • I am facing problem while working for userexit for vendor master and Editor

    Hi, I am working one userexit for vendor master. My objective is after MK01 transaction, I want to attach MM01 transaction using userexit SAPMF02K on IDES version. 1) Function module is EXIT_SAPMF02K_001 and Include is ZXF05U01.   while duble click o

  • Problem in displaying Japanese characters on the browser.

    Hi Friends, Hope one of you could help me in this!! We are using SHIFT_JIS character encoding in our jsps to display Japanese characters. <%@ page contentType="text/html; charset=SHIFT_JIS" %> Is there any other configuration required on server side

  • Scanned two page pdf to one page incremental

    Hi, I have been looking everywhere and have yet to find an answer that works. Tryed Bliss, and another program. I have a booklet that I have scanned duplex. It is of course two pages, odd and even, on one page. I would like to separate the pages into

  • Labwiew 8 won't start without internet connection

    I have Labview 8.0 installed on a NI PXI-1050 chasis with Windows XP and Service Pack 2 installed.  The problem is that Labview will not load up (it locks up at finishing initialization) if I do not have the chasis connected to the internet via ether

  • Secure storage not seen from configtool and Portal not starting

    Hi, My Portal is not starting. The dispatcher and sdm are starting,but server0 is not able to start.The exit code displayed was -11113. I checked up the log files and the error displayed was : No active user store set. I opened up the Configtool , an