Resource Durations (Start /finish) are not align with activity durations

Gurus,
My Resource Durations (Start /finish) are not align with activity durations and hence the Budgeted % are going crazy. Any idea?

hi,
the default start/finish dates for resource assignments are the activity start/finish dates. if for any reason you changed that, you can check and reset both Original Lag and Remaining Lag to 0 for all/ some of your resource assignments by adding the columns in the Resource Assignments window and performing either a fill down or a Global Change operation. let me know if you need help with any of these.
best of luck.

Similar Messages

  • Margins on print copies from HP Officejet Pro 8600 Printer are not aligned with original document

    My HP Office ject Pro 8600 Printer is not printing the same margins as my original document.  The left margin on the print copy is 3/4" too far to the right.  The margin on the right is too far right and the text is being printed off the page! The problem seemed to start when I loaded Avery Labels to print. I run a non-profit and need to make copies asap for a sponsorship letter for a fundraising event.

    Hi lbaker67, 
    Have you tried doing the firmware update for the printer? The firmware update
    Fix/Enhancements are as follows.
    1) Enhance ePrint Diagnostic report for ePrint Setup
    2) Improve ease of wireless setup
    3) Enhanced Embedded Web Services
    4) Improve Print Quality
    5) Improve Ink Usage
    6) Improve paper path performance
    7) Improve Digital scan performance
    To check the version of your current printer firmware:
    Printer Information Screen
    1. From the Control panel, press Help (?) button, select Printer Information
    2. Use the down arrow button to scroll to the 2nd screen
    3. The current firmware revision will appear on the screen
    If you do not have Version CLP1CN1322CR you need the update.
    HP Officejet Pro 8600 Firmware
    This update may resolve the issue. If you require further assistance please post back and I will follow up with you.

  • Web Start : JAR resources in JNLP file are not signed by same certificate

    What does this error mean exactly?
    All the jars in this JNLP file are signed by the same certificate it's just that some of them are also signed by another certificate.
    According to this closed/fixed bug : http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4928787
    Web Start should not be rejecting jars due to multiple signers???
    Is this a regression in 1.6? or was this never actually fixed?
    I can make this work by not signing these 'presigned' jars and putting them into extension JNLP files but this is less than desirable.
    Some reasons for not using the extension JNLP:
    -- Avoid this bug (which is also marked closed but not fixed) --> http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6566071
    -- I would like to sign all the jars I deliver with my own certificate.
    -- I would also like to give my clients the ability so sign the jars themselves (their own certificate) after they certify the application for distribution throughout their organization.

    Thanks for responding.
    Here is an example that will show the problem. If you want to try yourself:
    NanoHTTPD.java is from here -> [http://elonen.iki.fi/code/nanohttpd/|http://elonen.iki.fi/code/nanohttpd/]
    C:\test>java -version
    java version "1.6.0_03"
    Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
    Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode)
    C:\test>dir
    Volume in drive C has no label.
    Volume Serial Number is CCC7-E05D
    Directory of C:\test
    04/10/2008  12:34 PM    <DIR>          .
    04/10/2008  12:34 PM    <DIR>          ..
    04/10/2008  11:04 AM               130 hello.java
    04/10/2008  11:30 AM               500 hello.jnlp
    04/10/2008  11:06 AM                89 hellohelper.java
    04/10/2008  09:52 AM            20,547 NanoHTTPD.java
                   4 File(s)         21,266 bytes
                   2 Dir(s)  26,292,060,160 bytes free
    C:\test>type hello.java
    public class hello
    public static void main(String[] args)
    System.out.printf("Hello %s\n",hellohelper.getString());
    C:\test>type hellohelper.java
    public class hellohelper
    public static String getString()
    return "World";
    C:\test>type hello.jnlp
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0+" codebase="http://localhost/" href="" >
        <information>
            <title>hello</title>
            <vendor>hello</vendor>
            <description>hello</description>
        </information>
        <security>
            <all-permissions/>
        </security>
        <resources>
            <j2se version="1.6" />
            <jar href="hello.jar"/>
            <jar href="hellohelper.jar"/>
        </resources>
        <application-desc main-class="hello"/>
    </jnlp>
    C:\test>javac *.java
    Note: NanoHTTPD.java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    Note: NanoHTTPD.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    C:\test>jar cvf hello.jar hello.class
    added manifest
    adding: hello.class(in = 524) (out= 332)(deflated 36%)
    C:\test>jar cvf hellohelper.jar hellohelper.class
    added manifest
    adding: hellohelper.class(in = 283) (out= 212)(deflated 25%)
    C:\test>keytool.exe -genkey -alias hello1 -keystore hello1keys.jks -dname cn=hello1 -storepass hello1 -keypass hello1
    C:\test>keytool.exe -genkey -alias hello2 -keystore hello2keys.jks -dname cn=hello2 -storepass hello2 -keypass hello2
    C:\test>jarsigner -keystore hello1keys.jks -keypass hello1 -storepass hello1 hellohelper.jar hello1
    Warning:
    The signer certificate will expire within six months.
    C:\test>jarsigner -keystore hello1keys.jks -keypass hello1 -storepass hello1 hello.jar hello1
    Warning:
    The signer certificate will expire within six months.
    C:\test>start java -cp . NanoHTTPD
    C:\test>javaws hello.jnlpAt this point click accept to trust the code and the program runs. Here is the console output:
    Java Web Start 1.6.0_03
    Using JRE version 1.6.0_03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\4381
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    0-5: set trace level to <n>
    Hello WorldNow for second signature, and run again:
    C:\test>jarsigner -keystore hello2keys.jks -keypass hello2 -storepass hello2 hellohelper.jar hello2
    Warning:
    The signer certificate will expire within six months.
    C:\test>javaws hello.jnlpThis time it fails. Console output:
    Java Web Start 1.6.0_03
    Using JRE version 1.6.0_03 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\4381
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    0-5: set trace level to <n>
    #### Java Web Start Error:
    #### JAR resources in JNLP file are not signed by same certificateTo verify jars:
    C:\test>jarsigner -verify -verbose -certs hello.jar
             135 Thu Apr 10 12:39:26 CDT 2008 META-INF/MANIFEST.MF
             256 Thu Apr 10 12:39:26 CDT 2008 META-INF/HELLO1.SF
             770 Thu Apr 10 12:39:26 CDT 2008 META-INF/HELLO1.DSA
               0 Thu Apr 10 12:37:36 CDT 2008 META-INF/
    sm       524 Thu Apr 10 12:37:04 CDT 2008 hello.class
          X.509, CN=hello1
          [certificate will expire on 7/9/08 12:38 PM]
      s = signature was verified
      m = entry is listed in manifest
      k = at least one certificate was found in keystore
      i = at least one certificate was found in identity scope
    jar verified.
    Warning:
    This jar contains entries whose signer certificate will expire within six months.
    C:\test>jarsigner -verify -verbose -certs hellohelper.jar
             141 Thu Apr 10 12:38:56 CDT 2008 META-INF/MANIFEST.MF
             262 Thu Apr 10 12:41:30 CDT 2008 META-INF/HELLO2.SF
             770 Thu Apr 10 12:41:30 CDT 2008 META-INF/HELLO2.DSA
             262 Thu Apr 10 12:38:56 CDT 2008 META-INF/HELLO1.SF
             770 Thu Apr 10 12:38:56 CDT 2008 META-INF/HELLO1.DSA
               0 Thu Apr 10 12:37:44 CDT 2008 META-INF/
    sm       283 Thu Apr 10 12:37:04 CDT 2008 hellohelper.class
          X.509, CN=hello2
          [certificate will expire on 7/9/08 12:38 PM]
          X.509, CN=hello1
          [certificate will expire on 7/9/08 12:38 PM]
      s = signature was verified
      m = entry is listed in manifest
      k = at least one certificate was found in keystore
      i = at least one certificate was found in identity scope
    jar verified.
    Warning:
    This jar contains entries whose signer certificate will expire within six months.Why does javaws say: "JAR resources in JNLP file are not signed by same certificate" when clearly they are both signed by the same certificate (the one aliased by CN=hello1)?

  • ICal Week view, Date is not aligned with the Time(schedule) of each date

    Well, just like it says over there (`` ). I've recently been to China for a business trip, and I suppose the different time zone may have had something to do with the problem. Now I'm back home, changed the time zone back to normal, still the iCal shows in the weekly view that the Date on the above is not aligning with the Time and schedule. Any suggetions would be grateful!!!

    Hi,
    i omit the scheduling maergin key in material master,
    the result of MRP is
    BASIC DATES
    Finish 15.10.2009
    Start 14.10.2009
    PRODUCTION DATES
    15.02.2010 14:33:25
    14.10.2009 07:00:00
    scheduling type i planned order is still "backwards"
    so in MD04 it is say that the goods is available at 15.10.2009 same with requirement dates.
    this seem not right.
    it seems that order finish date is not adjusted by lead time scheduling on "today scheduling".
    Is there a way so order finish date is adjusted by lead time scheduling on "today scheduling" ????
    Best regards,
    Freddy Ha
    Edited by: Freddy Halim on Oct 14, 2009 10:01 AM

  • Flash Chart Error "A Start-tag was not matched with an end-tag."

    All of the Flash charts on a page started displaying the error "A Start-tag was not matched with an end-tag." The charts were all working prefectly and no changes were made to the page. Any thoughts?
    Thanks.

    Here is what I get when I click Show XML in debug mode. Thanks.
    <?xml version="1.0" ?>
    - <root>
    - <styles>
    <style type="background" id="background" background_type="solid" color="0xffffff" alpha="0" />
    <style type="deal_background" id="dealBackground" enabled="yes" color="0xdddddd" alpha="100" />
    <style type="deal_border" id="dealBorder" enabled="yes" thickness="1" color="0x666666" alpha="100" />
    <style type="deal_position" id="dealPosition" left="146" top="169.1707317" />
    <style type="deal_size" id="dealSize" startAngle="0" endAngle="180" innerRadius="0" outerRadius="109.5" />
    <style type="indicator_background" id="indicatorBackground" enabled="yes" color="0x000000" alpha="100" />
    <style type="indicator_border" id="indicatorBorder" enabled="yes" color="0xFFFFFF" thickness="1" alpha="0" />
    <style type="scale_size" id="scaleSize" length="7.3" />
    <style type="scale_position" id="scalePosition" radius="102.2" />
    <style type="scale_lines" id="scaleLines" enabled="yes" thickness="1" color="0x000000" alpha="100" />
    <style type="scale_labels_position" id="scaleLabelsPosition" radius="109.5" />
    <style type="scale_labels_background" id="scaleLabelsBackground" enabled="no" />
    <style type="scale_labels_border" id="scaleLabelsBorder" enabled="no" color="0x000000" />
    <style type="scale_labels_text" id="scaleLabelsText" font="Verdana" size="10" color="0x000000" bold="no" italic="no" underline="no" align="right" />
    <style type="scale_labels_size" id="scaleLabelsSize" />
    <style id="areaBackground0" type="area_background" enabled="yes" color="0x669999" alpha="100" />
    <style id="areaBackground1" type="area_background" enabled="yes" color="0xCCCCCC" alpha="100" />
    <style id="areaBorder" type="area_border" enabled="yes" thickness="1" color="0xFFFFFF" alpha="100" />
    <style id="areaBorder0" type="area_border" enabled="yes" thickness="1" color="0x666666" alpha="100" />
    <style id="areaSize" type="area_size" outerRadius="105.85" innerRadius="36.5" />
    <style type="circle_object_border" id="dotBorder" enabled="no" />
    <style type="circle_object_position" id="dotPosition" left="146" top="169.1707317" />
    <style type="circle_object_size" id="dotSize" radius="7.3" />
    <style type="circle_object_background" id="dotBackground" enabled="yes" color="0x000000" alpha="100" />
    <style id="emptyBorder" enabled="no" />
    </styles>
    - <shapes>
    - <shape id="indicatorShape" type="polygon">
    <point x="0" y="-4" />
    <point x="-97.82" y="0" />
    <point x="0" y="4" />
    <point x="0" y="-4" />
    </shape>
    </shapes>
    - <objects>
    <circle sizeStyleId="dotSize" positionStyleId="dotPosition" backgroundStyleId="dotBackground" borderStyleId="dotBorder" />
    </objects>
    - <data>
    <deal minimum="0" maximum="100" sizeStyleId="dealSize" positionStyleId="dealPosition" backgroundStyleId="dealBackground" borderStyleId="dealBorder" />
    - <areas>
    <area startValue="1" endValue="99" backgroundStyleId="areaBackground1" borderStyleId="areaBorder" sizeStyleId="areaSize" />
    </areas>
    - <scales>
    <scale startAngle="0" endAngle="180" angleStep="18" labelsPrefix="" labelsPostfix="%" decimalPlaces="0" sizeStyleId="scaleSize" positionStyleId="scalePosition" linesStyleId="scaleLines" labelPositionStyleId="scaleLabelsPosition" labelBackgroundStyleId="scaleLabelsBackground" labelBorderStyleId="scaleLabelsBorder" labelTextStyleId="scaleLabelsText" labelSizeStyleId="scaleLabelsSize" />
    </scales>
    <indicator value="51.7412935" backgroundStyleId="indicatorBackground" borderStyleId="indicatorBorder" shapeId="indicatorShape" />
    </data>
    </root>

  • JAR resources in JNLP file are not signed by same certificate

    I am running my application under Java Web Start with different jars signed. I following the advances use multiple JAR files in JNLP files below.
    But i message error "+*JAR resources in JNLP file are not signed by same certificate*+" is posted still.
    Could you please help me to solve it?
    Thanks
    Best Regards,
    Tuan Pham
    index.jnlp_
    +<?xml version="1.0" encoding="utf-8"?>+
    +<jnlp spec="1.0+" codebase="http://localhost:8080/quotationsys" href="index.jnlp">
    +<information>+
    +<title>File Viewer</title>+
    +<vendor>IBM developerWorks</vendor>+
    +<homepage href="index.html"/>+
    +<description>File Viewer</description>+
    +<description kind="short">File Viewer</description>+
    +</information>+
    +<security>+
    +<all-permissions/>+
    +</security>+
    +<resources>+
    +<j2se version="1.5.0_*" />+
    +<jar href="quotationsys.jar"/>+
    +<nativelib href="swt-lib.jar"/>+
    +<jar href="swt.jar"/>+
    +<extension href="extlib.jnlp"/>+
    +</resources>+
    +<application-desc main-class="layout.MainMenu"/>+
    +</jnlp>+
    extlib.jnlp_
    +<?xml version="1.0" encoding="utf-8"?>+
    +<jnlp spec="1.0+" codebase="http://localhost:8080/quotationsys" href="index.jnlp">
    +<information>+
    +<title>File Viewer</title>+
    +<vendor>IBM developerWorks</vendor>+
    +<homepage href="index.html"/>+
    +<description>File Viewer</description>+
    +<description kind="short">File Viewer</description>+
    +</information>+
    +<security>+
    +<all-permissions/>+
    +</security>+
    +<resources>+
    <jar href="cvom.jar"/>           
    <jar href="CrystalReportsRuntime.jar"/>
    <jar href="CrystalCommon2.jar"/>
    <jar href="DatabaseConnectors.jar"/>
    <jar href="JDBInterface.jar"/>
    <jar href="keycodeDecoder.jar"/>
    <jar href="pfjgraphics.jar"/>
    <jar href="QueryBuilder.jar"/>
    <jar href="commons-collections-3.1.jar"/>
    <jar href="commons-configuration-1.2.jar"/>
    <jar href="commons-lang-2.1.jar"/>
    <jar href="commons-logging.jar"/>
    <jar href="com.ibm.icu_3.8.1.v20080530.jar"/>
    <jar href="log4j.jar"/>
    <jar href="xpp3.jar"/>
    <jar href="jai_imageio.jar"/>
    <jar href="logging.jar"/>
    <jar href="com.azalea.ufl.barcode.1.0.jar"/>
    +</resources>+
    +<component-desc/>+
    +</jnlp>+
    Edited by: pttuan on Apr 13, 2009 1:55 AM

    Are all of the jars in extlib.jnlp signed by the same cert? I think that the extension mechanism lets you get around having all of the jars for an overall app have the same signer, but I think it's still required that all of the jars within a given jnlp file have to have the same signer. So for you, all the jars in index.jnlp have to be signed by "cert A" and all the jars in extlib.jnlp have to be signed by "cert B". If that's not the case, you may need to split it up into multiple extensions.

  • Remote Speakers are not compatible with this version of iTunes

    My problem is simple to describe but seemingly impossible to fix.
    When I try to play music from my MacBook to my Airport Express I get this error "Remote speakers x are not compatible with this version of iTunes." I have been using this computer and AX in the past without problem but I can't remember exactly when this issue started so I'm not sure if it coincided with an update to either iTunes or AX.
    I am running up-to-date iTunes and AX firmware (8.0.2 iTunes, 7.3.2 AX), have restarted both machines multiple times, and reinstalled iTunes and reuploaded AX firmware. Here's the kicker: my roommate's MacBook running iTunes 8.0.2 works with the speakers perfectly.
    Thanks in advance for any help.

    Yes! Turning back on ipv6 and setting it to "auto" worked for me. Really strange - trying to get this to work for months (on and off) - almost tossed it - thank you very much!

  • AcroPDF ActiveX print functions are not working with Adobe Reader 9.2 / Actobat Reader 9.3

    AcroPDF ActiveX print functions are not working with Reader 9.2/9.3. Tried ActiveX print functions like printPages(), printAll(), printWithDialog(), none of them is working. Tried on platforms: XP 32 bit and Win7 32 bit. These print functions all work fine with Adobe Reader 9.1.0. or 8.2.0 or 8.1.0 on XP 32 bit or Win7 32 bit.
    The way I have my setup: I have created a C/C++ project with AcroPDF MFC ActiveX classes. I have created an AcroPDF object in there, and then calling it's LoadFile() function passing a pdf file in the parameter. Then calling the printPages() or printAll() function. With Adobe Reader 9.1.0. or 8.2.0 or 8.1.0, printing is starting through the default printer without any problem. As soon as I update the reader version to 9.2 or more, the same code stops working.
    Is anybody noticing any similar issue? Any info on this will be highly appreciated. Thank you!

    Unfortunately printWithDialog() is also not working. Actually none of the print functions like Print(), printWithDialog(), printPages(), printPagesFit(), printAll(), printAllFit() are working. All of them works fine though with older reader.
    BTW, what security related changes are there for printPages() and printAll()? Can you please elaborate on that? Is there any workaround?

  • Savevid and keepvid are not working with os 10.7.3-Is there a fix?

    savevid and keepvid are not working with os 10.7.3-Is there a fix?
    Is anyone else having this problem?

    A massive thanks from me too after discovering the problem when I started work this morning at 2.30am - not something you need that time of day!  Did exactly as written and bingo,  missing tool icons appeared BUT, and there's always a but...
    I have THE SAME problem in Quark with some of the static areas in the measurement (F9) bar. Can anyone suggest what might fix this? I have restarted just ONCE after turning on Extension Manager at start-up.
    Hardware:
    Apple Macintosh MacPro 2x2GHz Dual-Core Intel Xeon
    RAM: 6Gb (667MHz DDR2 FB-DIMM)
    HDD's (internal): 1x160Gb / 1x500Gb / 2x1500Gb
    Software (OS)
    OS: Mac OS 10.7.3 (updated to this 06.02.2012)
    Problem software: QuarkXPress 8.5
    Thanks in advance for any advice / help...
    Paul

  • Dashboard widgets are not aligning - what gives?

    I have several weather widgets (different cities in the world) that run in Dashboard.
    Each time I start up my computer and run the Dashboard, the widgets have moved up/down - basically out of alignment.
    This began a few weeks ago and I can't figure it out. I line them up each time into a neat grid, and then after a startup, they are all out of line.
    Anyone else have this happen? Any ideas how to fix it?
    I have screen shots that I can email if anyone wants to see them.
    Leopard 10.5.7 on an iMac 2.8, 4GB RAM.
    Thanks

    Trashed both the plist files that resided in ~user/Library/Preferences.
    Restarted and the widgets are not aligned in the grid that I set them to.
    Arrrrggghhhh ... this is really irritating. Not life-threatening, but irritating.

  • Hdr photos not aligning with original non-hdr image iPhone6

    Why are hdr photos not aligning with their original non-hdr source image in iPhone6? I've found that when I overlay the two in gimp, there's a misalignment of several pixels. Previously with my iPhone4 on iOS7 both the original image & its corresponding hdr version always aligned perfectly so I could easily make adjustments between the two versions to create the final image I wanted. Has anyone else noticed this discrepancy?

    I figured out the answer.
    It turns out I had accidentally enabled the 'chrome' filter on all of the pictures I was taking. The icon with the 3 overlapping circles at the bottom right in the camera app were in color, indicating I had a filter on. Another thing I was not aware of oops.
    That is why my pics all seemed to have extra contrast. The chrome filter was close enough to the original that I thought it was actually HDR, being unfamilar with how HDR should look.
    If I had set something like black and white as a filter I would have realized what was going on sooner.
    I also figured out that HDR was actually saving both of my photos. Scanning through my library I found a few duplicate images. As mentioned above, the HDR version has a little rectangular icon with 'HDR'.
    Sorry for the confusion and I hope this helped somebody!
    Thank you for your courage

  • Subcircuit pins do not align with grid and will not connect

    I have two identical subcircuit symbols.  One is just fine, but the other has pins that do not align with the MS grid, and one that will not even connect.  MS12.0.0.
    This one is fine:
    This one pins are off grid.  The circled one will not connect.
    Solved!
    Go to Solution.

    Hi,
    I have been experimenting a bit with this. One thing you can try is open the Symbol Editor, select the pin which is not connecting and then from the spreadsheet view, change the Shape to Zero-length Pin. Then try to see if you can connect the pin in the design. It will not appear as a line but you should still be able to connect to it.
    If this does not work, you can open a service request and we can try to see how to resolve the issue.
    Hope this helps.
    Regards,
    Tayyab R,
    National Instruments.

  • HT201412 Safari could not open the page because the server stopped responding- new ipad mini's (2 from separate places) are not working with At & T router but computers work. Can you please help me. I've tried everything. Thanks ya'll!

    Safari could not open the page on my new ipad mini's because the server stopped responding- new ipad mini's (2 from separate places) are not working with At & T router but computers work fine. Yesterday I got it to work. Weird. Can you please help me. I've tried everything. Thanks ya'll!

    Hello SavannahSweetie,
    I was looking into the issue you are desribing, and found a great article for troubleshooting wifi connections with iOS devices. It's called iOS: Troubleshooting Wi-Fi networks and connections and can be found here: http://support.apple.com/kb/ts1398.
    Start with this section, and work your way down if needed.
    Basic troubleshooting
    Tap Settings > Wi-Fi and turn Wi-Fi off and then on again.
    Verify that you are in range of your Wi-Fi router or base station.
    Confirm that your Wi-Fi router and Cable/DSL modem are connected to power and turned on.
    Check whether other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Update your Wi-Fi router to the latest firmware.For AirPort Base Stations, refer to this article for information about firmware updates. For third-party Wi-Fi routers, check the manufacturer's website for details on updating your firmware.
    Restart your iOS deviceHold the On/Off button until "slide to power off" appears. Slide to power off your device. When it is off, press the On/Off button to turn it back on.
    All the best,
    Sterling

  • Graph Data does not align with the axis label

    Hi,
    The graph data does not align with the axis label when
    datetimeaxis is used.
    http://livedocs.adobe.com/labs/flex3/html/help.html?content=charts_displayingdata_04.html
    (in the using parseFunction property example) when you hover on the
    line graph the values do not align on the labels. Is this a bug?
    Can somebody help me with this.
    Thank you,
    Gautam.

    Hi All
    Thanks for looking into it.
    Actually we have just added a field GJAHR (was missing in the extractor) so that it takes data accoring to fiscal yr. Actually we had a issue that the Business area for a particular vendor 'X' and doc no 'Y' was showing incorrectly (similar to that of yr 2008) but it changed this yr and the extractor was still picking Business Area for yr 2008.
    So we added GJAHR field so that it takes correct Business Area. we have checked in R/3 Extractor checker and it shows correctly.
    But that change has not reflected in BW yet even after replicating datasource.
    I hope i have made you all understand the situation.
    Thanks for your help
    Ishi

  • Frequent - "JAR resources in JNLP file are not signed by same certificate"

    Hi Experts,
    I am not able to open ESR and ID. I am facing "JAR resources in JNLP file are not signed by same certificate" issue. I have gone through SDN forums and solved this issue by deleting the javaws cache and clicking on Restore Archives and Generate New Signature button in the Administrator -> "Java Web Start Administration".
    But my issue is...I have to do this every time when I log into the system. I am using J2SE Development Kit 5.0 and J2SE Runtime Environment Kit 5.0.
    Also it is taking around 5 minutes to open ESR.
    Thanks,
    Phani Akella.

    Hi,
    I have downloaded Jdk6.0 and jre 6.0 and installed it in my system. I am not able to start java webstart using the command javaws in cmd. Any suggestions?  I have un-installed jdk 6.0 and installed jdk and jre 5.0. Now I am facing below issues.
    I am able to log into ID but not ESR. Screenshot shows only 9112 kb of files are downloaded for ESR.
    [ESR Issues|http://www.flickr.com/photos/49754947@N07/?s]

Maybe you are looking for

  • Migrating to Sharepoint 2013 from 2010 - Can you use the same URL for the Web Application without affecting the 2010 environment?

    Hi, I am currently trying to migrate our SharePoint 2010 environment to SharePoint 2013. The first thing I'm doing is creating a 2013 development environment to verify that this migration goes smoothly. I'm also doing this so that we will have a test

  • Error while creating local order in MAM

    Hi , I am trying to create local order in MAM2.5, but in the monitor it is giving the error , Business Area required.This field is a mandatory field in R/3, but in client it doesn't specifically ask for it. It can pick it from Equipment or Functional

  • Connection Between BIEE with ESSBASE?

    Hi could you please provide documment how to give the connection Between BIEE with ESSBASE? thanks

  • Attaching USB HD to Time Capsule

    I've been using a 1TB external HD to Time Machine my new MacBookPro and all is fine. Recently, I bought a dualband Time Capsule. After I attach the USB HD I can see the Time Machine partition of the HD, and I can select it using Time Machine and get

  • CS4 no longer recognizing AS2 classes

    Issue: I designed a site in CS4 using AS2 and external AS2 classes. Everything worked fine until about a week ago. Now when I go back and try to edit those files, the classes are no longer loaded and the site breaks. I haven't edited any of the code,