Error bars, error more.

I have updated to my Numbers after Mavericks update. Before that I can use my Numbers smoothly, but after an update, I found that some of my old files cannot open with the new version of Numbers. Furthermore, the error bars of the graph seem to have multiple problems. My program shuts down almost everytime I try to add error bars. And if it does not shut down, one or two bars diappear, e.g., when I added 6 error bars, only 5 showed up, skipping one bar in the middle, and the last error has never shown up. I guess it's the software problem and I hope that Apple will fix it soon. But if any of you know how to troubleshoot these problems, I greatly appreaciate.

Hi Saurabh614,
Thanks for posting in MSDN forum.
This forum is for developers discusing developing issues invove Excel applicatin on Windows system. Since the issue is relative to Office for Mac, I suggest that you get more effective response from
Office for Mac forum.
The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
Thanks for your understanding.
Regards & Fei
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • XY Graph, 2D Error Bar, Legend, Multi Plot Help? Please modify the VI

    PLEASE READ THE ENTIRE POST and HELP!
    Please help with this VI and make it an instructive example for me and other novices like me who come across this typical example.
    A typical problem in plotting data is as follows: On the SAME plot (Y-axis = Amplitude vs. X-axis = Time), plot the curves Amp1, Amp2, Amp3, ... coming from sample1, sample2, sample3, ...
    Furthermore, there is Error1, Error2, Error3, ... associated with Amp1, Amp2, Amp3,...., which also needs to be plotted. In order to distinguish between these curves, one may use different
    colors and show a legend that reads Amp1 (say black), Amp2 (say red), and Amp3 (say green). The plot then becomes complete and conveys data very conveniently.
    The attached VI makes an attempt to plot Amp1 and Amp2 using XY Graph and also 2D Error Bar plot (to show error bars). There is one slight problem. The legend does not show what it is supposed
    to show. Can someone fix this? If I plot two curves, the legend should show Amp1 and Amp2, if I plot three curves, the legend should show Amp1, Amp2, Amp3, and so on.
    I don't want to see the default Plot 0, Plot 1, or whatever. Also, it would be nice to dynamically control the symbol, color, curve style etc, as we keep adding more and more curves to the plot.
    Once this problem is fixed, I know I can easily extend it to make it plot more than just two curves in a dynamic way. I could use for loops with shift registers, etc to plot any number of curves on a single plot.
    Believe me, I have searched for other posts and cannot find a simple example like the one I have posted here. Many examples I found have confused me more than helped me. 
    I believe that if this problem is solved in a simple way, many others will find this example very instructive. So by helping me, you help many other people as well!
    Thank you in advance. Please see the attached files (the VI, and an example data file that I just created)
    Solved!
    Go to Solution.
    Attachments:
    Multi_Plot_Legend_Error_Bar.vi ‏24 KB
    data.txt ‏2 KB

    Some members have pointed out that this problem has already been resolved (see the link below).
    http://forums.ni.com/t5/LabVIEW/Dinamically-handle-legend-names-using-property-nodes/td-p/1479572
    I did verify that this works for XY Graph, but not for 2D Error Plot.
    I need both legend and error bars. Shame on LabVIEW for not making such a basic plotting requirement easy and trasparent. 
    There are many clever people who can find work arounds, but that is a not a correct approach. 

  • Error bars in Numbers for iPad?

    Greetings,
    One of the reasons I purchased an iPad was to work on the go. For me this means being able to create/edit docs, spreadsheets, and presentations in my iPad and then sync that work with my MBP at work.
    I am finding some roadblocks when sharing work between devices (a first for me with Apple). 
    This specific question has to do with Numbers for the iPad:
    - Is there a way to add error bars within Numbers for the iPad?
    When I try to import a spreadsheet from Numbers in my computer the error bars get cropped as if they were some unnecessarily fancy font that didn't make it to the iPad version of the software. If there is no way to do this, does anyone know if there are plans to add this capability to the program?
    I might be biased, but I have a hard time coming up with occasions when one would not need to add a measure of variability (error bar) to any graphic dispplay of data (save for ninth grade presentations maybe).
    Thank you for your assistance!
    Andres

    Hi Andres,
    iWork for iOS applications are in version 1, and in general provide a subset of the features of the Mac OS versions. Few of the users in this (Numbers) community are familiar with the iPad version, which probably explains the lack of response to yur question in the nine hours since you posted.
    I expect you'll get a quicker (and more useful) response if you repost in the iWork for iOS area: https://discussions.apple.com/community/app_store/iwork_for_ios?view=discussions
    Regards,
    Barry

  • Error bars in keynote

    Does anyone know how to manually insert individual error bars in a bar chart in keynote? the custom option is greyed out in keynote and when I tried it in Numbers I could only use the same value for all the columns rather than specify for each.
    Cheers

    Thanks for your reply; if this is the case then I must admit to being slightly disappointed. From looking at the Keynote tutorials I am aware that Keynote is not intended as an application through which to present scientific data, but because Apple usually include so many more useful features in their applications than Microsoft do (in my opinion), I thought they may have given us the option to add error bars to graphs and charts.

  • Standard Error Bars in charts

    I would like to know if anyone has used std. error bars (as
    in statistics) in column or bar charts and how that was
    accomplished. I didn't see anything about it in the flex
    docs.

    Frustrating that these aren't included by default, isn't
    it...
    I'm sure the questioner long since has solved his problem or
    given up, but since I've been unable to find any solutions myself
    and have had to reinvent the wheel, I'll try and point anyone else
    looking in the right direction.
    One way to do it is to create your own IDataRenderer (or
    extend or facade an existing one). You'll want to make sure you're
    passing a standard deviation as part of your series data and then
    in the updateDisplayList method draw it yourself, grabbing the
    deviation from the data.item. You'll need to scale it
    appropriately... for instance, extend CircleItemRenderer and add an
    updateDisplayList along the lines of:
    override protected function
    updateDisplayList(unscaledWidth:Number,
    unscaledHeight:Number):void
    super.updateDisplayList(unscaledWidth, unscaledHeight);
    if (data.hasOwnProperty('item') &&
    data.item.hasOwnProperty('deviation')) {
    // figure out the scale (I'm certain there must be a more
    appropriate way to do this)
    var scale:Number = data.y / data.item.value;
    var deviation:Number = data.item.deviation as Number;
    var g:Graphics = graphics;
    var stroke:IStroke= new
    Stroke(0,1,1,false,'normal','square');
    stroke.apply(g);
    // figure out the center
    var trueX:Number = unscaledWidth / 2 - .5; // otherwise
    seems to be off to the side, for me
    var trueY:Number = unscaledHeight / 2;
    // draw the error bar
    g.moveTo(trueX,-(deviation * scale) + trueY);
    g.lineTo(trueX,(deviation * scale) + trueY);
    g.moveTo(trueX, trueY);
    // draw little T's on the end of the error bar
    g.moveTo(trueX -2, -(deviation * scale) + trueY);
    g.lineTo(trueX +2, -(deviation * scale) + trueY);
    g.moveTo(trueX -2, (deviation * scale) + trueY);
    g.lineTo(trueX +2, (deviation * scale) + trueY);
    From there you should be able to futz with it to make it look
    pretty.
    Hope someone finds this helpful.

  • Y Error Bars

    So for my biology class i have to graph a great deal of statistic based ecology stuff. Doing these graphs is very easy, but since it is statistically based, I have to do "Y Error Bars" which means the actual Y value could be between the "Y Error Bar." Im pretty sure numbers doesn't have this feature, but I am hoping I just missed it, so if anyone could help, it would be great appreciated!
    And, this is off subject, but in anyones opinion is iworks or is microsoft office 2008 for mac better. I thought iworks was great, but lately I'm having a lot of trouble, and I'm trying to decide if it would be work it to buy microsoft office 2008, anyways any help would be greatly appreciated, thank!
    Aaron

    Dear LaCoste890:
    To date, Numbers fails to provide a feature allowing one to insert custom error bars. This is a major failure.
    As an Apple fan, I would love to move from Microsoft Office to iWork. However, to date, both Pages and Numbers are lightweight programs lacking sufficient functionality to use for scientific applications. As an academic physician/scientist, I am quite disappointed.
    Pages fails due to its lack of integration with EndNote, which is, for me, a critical reference manager program. This is a shame, because I enjoy some of the excellent formating options that Pages offers.
    Numbers fails due to its inability to use custom Y error bars, as you have noted. Scientific graphs lacking error bars are, of course, quite useless. Here the shame is that graphs generated on Numbers are much more attractive and just as easy to format. Also, Apple is really losing an opportunity, since MS Office '08 is really buggy on OS 10.5.
    Scientists and students need to put serious pressure on Apple to fix these features. Otherwise, we will simply abandon the suite for MS Office, and no real innovation will take place.

  • Error bar problem

    This must be simple, but I can't figure out how to make either a standard deviation or a standard error bar to a chart.
    I place the numbers 22, 33, 44 in three adjacent cells. I highlight them and see average in the lower left area. I drag this average button to a new cell, and viola the cell says 33. I click the cell and click chart and make a bar chart and get a chart that has a bar at 33. I then click the inspector and under advanced click error bars and positive and negative. For fixed value it works fine. For standard deviation or standard error, the error bar does not exist?!! How do I use the std dev or std error buttons to generate the appropriate error bar?
    I can't believe this is a bug with the program, it must be a bug with me.
    Please help,
    Paul

    Thank-you Yvan for your continued support. I have been working on this as well and spent some time with a VERY receptive and helpful Apple specialist, Chris. Indeed, what I was looking for was a chart like Yvan posted as Graphique 6. A version I created is here (hopefully I've got this image insert working:
    image: !http://picasaweb.google.com/lh/photo/HeCHRLWhs3C79ewObd_TdA?feat=directlink!
    I made the error bars by using a formula to generate the standard deviation:
    image: !http://picasaweb.google.com/lh/photo/FnKGk70HlsKmn38cYPYQFw?feat=directlink!
    Then generated custom error bars with that cell:
    image: !http://picasaweb.google.com/lh/photo/5IQm4ncUiq-Q9R8H2bb3zQ?feat=directlink!
    I just discovered that Excel implements the one-click error bars identically to Numbers. It is counterintuitive (to me and my coworkers who have listened to my ranting today) that the one click standard error or standard deviation buttons would not give the standard deviation or standard error plots on the average bar, rather than on a series of bars, as if they were independent data. Here is one of countless examples of data from peer reviewed scientific literature of how this type of plot is (and IMHO should be) used:
    image: !http://picasaweb.google.com/lh/photo/5IQm4ncUiq-Q9R8H2bb3zQ?feat=directlink!
    One can see that some of the values are within the standard error of the other values, and some are significantly different.
    But I now realize that because the implementation is the same as in Excel, it is unlikely that the feature will be changed to what I see is a more logical use of the one-click button, since we can use the custom buttons if we really want to chart differently...
    I want to thank Apple and the responders to this thread for their time and patience.
    Paul

  • Error bars from data

    Hello,
    I am trying to graph several columns of data with percentage confidence intervals in the adjacent column into a graph, but I can not seem to get Numbers to understand where the error bar numbers are and to which data they correspond. At the very least, Numbers does not display any error bars.
    Perhaps it is confused by the Header bars and 'gives up'?
    In the same vein, I wonder if there is a way to get Numbers to take error data along with the mean value by parsing an expression, a la, "### ± #.#%" == "mean value" ± "confidence as a percentage of mean value", and most importantly use that parsed expression for graphing.
    Anyway, thank you in advance.

    In the Chart inspector, Series tab, Advanced is where you set error bars. Select a series on your chart. Choose whether you want positive bars, negative bars, or both then choose custom. Click in one of the entry fields and select the error bar data from your table.
    Percentage error data will not display as you wish. For example, a 50% error will chart as 0.5, not 50% of the data point value. You will have to do the multiplication in your table.
    If you need mean value charted, you'll have to chart them yourself. Error bars are error bars and no more.

  • LV 2009 error bar plots suggestions

    I have mentioned my mixed feelings about the new error bar plot introduced in 2009 on the info-labview list and have been asked to move this discussion to this forum.
    So there it goes:
    Introducing the possibility to natively display plots with error bars associated with each data point is a nice touch that brings LV one step closer to being a full-fledged data analysis and representation environment. However, the feature is limited in allowing only a single axis error bar (and on the Y axis only). This might come from NI's hardware bias (time recording of waveforms, in which the time axis does not have any "error" to it, being clock driven). Some of us use LV for a tad more than just recording waveforms and displaying them. We use complex instruments, process our data extensively, and when times come to plot a XY graph (and this is true for higher dimensionality data too), each coordinate (X, Y, etc) of each data point may be affected by a statistical or experimental uncertainty.
    In this kind of situation, each data point should be represented as a center point with two orthogonal error bars (with different sizes, and possibly, as offered in the new error plot, different plus and minus error bars). In most cases, the plus and minus error bars will be identical (representing the standard deviation of the data), so it would be advantageous to have an option that allows specifying that and avoid passing twice the same array of error bars to the plot formatting VI.
    Note that introducing this feature wouldautomatically bring up the request to have fitting algorithms that take this kind of dual axis error bar representation into account (which most data analysis software do nowaday).
    I hope this brief suggestion will be supported by other fellow LabViewers...
    X.

    All,
    These are great suggestions, and we always enjoy getting feedback from real-world situations where LabVIEW could help out more.  I really think this should be thrown on the LabVIEW Idea Exchange. Our development team looks over all the suggestions there, and it would have much more visibility than just being posted in this thread.
    Also, while you are there, be sure to vote on ideas that you like!  Some of the top ideas are so obvious, you will be surprised they weren't implemented already!
    Rob K
    Measurements Mechanical Engineer (C-Series, USB X-Series)
    National Instruments
    CompactRIO Developers Guide
    CompactRIO Out of the Box Video

  • Error bars in mac excel 2011

    Dear friends
    I am using mac excel 2011 and made charts using multiple series of data. I have calculated mean, std dev and std error and wanted to pt in custom values for error bars. Everytime I choose error bars>more options> custom readings and then highlight
    the cells on the chart. But the error bar still show the same value in all columns of that series.
    I have even exported the sheet to my PC and tried on excel 2003 and it still is not allowing me to chose different values even in custom setting.
    Please help
    S

    Hi Saurabh614,
    Thanks for posting in MSDN forum.
    This forum is for developers discusing developing issues invove Excel applicatin on Windows system. Since the issue is relative to Office for Mac, I suggest that you get more effective response from
    Office for Mac forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can I display different error bars for each point on a scatter graph?

    I have a scatter chart in Numbers and I need to add error bars to the points along both the x and y axes, however, the size of the error bars for each point need to be of different sizes. Is there a way to accomplish this or is there some kind of work around to acheieve a similar result? So far the only way I can find to add error bars only allows a standard amount for each point.

    I found the answer here https://discussions.apple.com/message/16440653#16441393

  • Error in loading the WSDL file. Check the error log for more details

    Hello,
    I am trying to create a Import Adaptive Webservice Model. I am using the WSDL:
    http://www.abysal.com/soap/AbysalEmail.wsdl
    I am getting the below error when I choose WSDL source as UDDI or file (I am not using any logical destination)
    "Error in loading the WSDL file. Check the error log for more details."
    Where can i see the error log? And what is the solution to fix this?
    I am able to create the model if i save the wsdl locally on my machine and choose Local File System or File as the WSDL source. But at runtime this fails as the application tries to read the WSDL for metadata info and it looks into the application server for this file.
    I also tried creating the old webservice model. And it is able to create the model. But I feel I need to use the new model as this one is deprecated.
    Thanks,
    Sachin

    Hi
    For the logs you can search in this directory
    Goto Window->Show view->Other->PDE Runtim->Error Log
    please try this may it would help you out, try to create a model for you Web Service using Web Service Model (DEPRECATED)
    See this link:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/integration%2bof%2bweb%2bservices%2b-%2bdifferent%2bscenarios

  • Access denied error when Loading document library for "contribute" users : Unknown SPRequest error occurred. More information: 0x80070005

    Hi,
    We are facing a very strange issue on a SharePoint Publishing portal. Domain users (contribute level access) have access to document libraries under specific sub sites. Every morning if they try to access the document library pages, users complain about "Access Denied" issue on document library page. But if a SP Farm admin account login on site, and browse to document library page, access denied issue seems to disappear for end users also. For whole day it works fine. But next day access denied error occurs again. I am not sure why this is happening. I have looked into Event Log and SharePoint Logs, found following information useful, but not sure what to do next.
    Please help.
    Event log Details:
    Server: WFE01
    Event Type: Error
    Event Source: Office SharePoint Server
    Event Category: Publishing
    Event ID: 5169
    Date:  17/11/2009
    Time:  07:47:31
    User:  N/A
    Computer: SPWFE01
    Description:
    Console Configuration File Error: XML Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    SP Log files:
    All logs are for process: w3wp.exe (0x031C)                        0x17F4 Windows SharePoint Services  
    ·     Begin OnLoad of XmlConsoleDataSource from file "EditingMenu".
    ·     Attempting to load XML from config file "EditingMenu".
    ·     PermissionMask check failed. asking for 0x00010000, have 0x00000000
    ·     Unknown SPRequest error occurred. More information: 0x80070005
    ·     Access Denied for /Projects/LFB/03 Bid Stage 1/Forms/AllItems.aspx.
    ·     StackTrace: Microsoft.SharePoint.Utilities.SPUtility:Void HandleAccessDenied(System.Exception), Microsoft.SharePoint.SPGlobal:Void HandleUnauthorizedAccessException(System.UnauthorizedAccessException), Microsoft.SharePoint.Library.SPRequest:Void OpenWeb(System.String, System.String ByRef, System.String ByRef, System.String ByRef, System.Guid ByRef, System.String ByRef, UInt32 ByRef, System.Guid ByRef, UInt32 ByRef, UInt32 ByRef, UInt32 ByRef, UInt16 ByRef, Boolean ByRef, Int16 ByRef, UInt32 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Boolean ByRef, Int16 ByRef, UInt32 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Int16 ByRef, Int32 ByRef, Boolean ByRef, System.String ByRef, System.String ByRef, Int32 ByRef, Int16 ByRef, ...
    ...System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.String ByRef, System.Object ByRef, Boolean ByRef, UInt64 ByRef, Boolean ByRef, Boolean ByRef, System.Guid ByRef, System.Guid ByRef, Int32 ByRef, System.DateTime ByRef, System.DateTime ByRef, System.String ByRef), Microsoft.SharePoint.SPWeb:Void InitWeb(), Microsoft.SharePoint.SPWeb:Microsoft.SharePoint.SPSecurableObjectImpl get_SecurableObjectImpl(), Microsoft.SharePoint.SPWeb:Microsoft.SharePoint.SPRoleAssignmentCollection get_RoleAssignments(), Microsoft.SharePoint.Publishing.WebControls.ConsoleXmlUtilities:System.String ConfigurationXml(System.String, Boolean), Microsoft.SharePoint.Publishing.W...
    ...ebControls.ConsoleXmlUtilities:Microsoft.SharePoint.Publishing.WebControls.ConsoleNode GetConsoleNodeCollectionFromXmlFile(System.String, Boolean), Microsoft.SharePoint.Publishing.WebControls.XmlConsoleDataSource:Void LoadTreeFromConfigXml(), Microsoft.SharePoint.Publishing.WebControls.XmlConsoleDataSource:Void OnLoad(System.EventArgs), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Control:Void LoadRecursive(), System.Web.UI.Page:Vo...
    ...id ProcessRequestMain(Boolean, Boolean), System.Web.UI.Page:Void ProcessRequest(Boolean, Boolean), System.Web.UI.Page:Void ProcessRequest(), System.Web.UI.Page:Void ProcessRequestWithNoAssert(System.Web.HttpContext), System.Web.UI.Page:Void ProcessRequest(System.Web.HttpContext), System.Web.HttpApplication+CallHandlerExecutionStep:Void System.Web.HttpApplication.IExecutionStep.Execute(), System.Web.HttpApplication:System.Exception ExecuteStep(IExecutionStep, Boolean ByRef), System.Web.HttpApplication+ApplicationStepManager:Void ResumeSteps(System.Exception), System.Web.HttpApplication:System.IAsyncResult System.Web.IHttpAsyncHandler.BeginProcessRequest(System.Web.HttpContext, System.AsyncCallback, System.Object), System.Web.HttpRuntime:Void ProcessRequestInternal(System.Web.HttpWorkerReque...
    ...st), System.Web.HttpRuntime:Void ProcessRequestNoDemand(System.Web.HttpWorkerRequest), System.Web.Hosting.ISAPIRuntime:Int32 ProcessRequest(IntPtr, Int32),
    ·     Releasing SPRequest with allocation Id {E3BC24ED-F243-4DBD-8625-EE7CF9FDA039}
    ·     Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    ·     Console Configuration File Error: XML Exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    ·     Releasing SPRequest with allocation Id {D1A87724-6FB6-4009-B6D1-D7E15918E213}
    Pryank Rohilla
    MCTS, MCAD

    Hi pryank,
    From the log, it seems that the users don’t have permission on this page:
    /Projects/LFB/03 Bid Stage 1/Forms/AllItems.aspx
    Does the sub site have unique permission instead of inheriting permission from the parent site? If no, you need to make the sub site to inherit permission from the site collection so that master page also inherits the right. If this is not allowed in your organization, please go to “Site Actions”à “Site Settings” à “Master Pages and Page Layouts” to give users permissions on this document library.
    Hope this helps.
    Lu Zou

  • Error: You have more than one Creative players connected. - Recovery Tool for ZEN

    My Zen 4GB cannot be turned on anymore after a failed firmware upgrade (The installation hung up). I tried to run the firmware upgrade executable file again but the player must be on. So I tried to hardware reset by switching the power slide on while pressing the play button, but it still doesn't start. I downloaded and ran the Recovery Tool while the player was connected, but an error message appeared: "ERROR: You have more than one Creative players connected. Please remove all but one, click "OK" to exit and then run this program again." - There was no other players connected but the ZEN. Please help... What can I do

    I have this very exact same problem with the same model. Did you ever find a solution to this?

  • Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    hello,
    After installing the Adobe reader, I got the following error message:
    Error 1328.Error applying patch to fileC:/Config.Msi/PTEADA.tmp.It has probably been updated by other means, and can no longer be modified by this patch.For more information contact your patch vendor

    For AA XI, you only need the 11.0.09 patch. Download from http://www.adobe.com/support/downloads/product.jsp?product=1&platform=Windows (Use "MAC" if a MAC is used).

Maybe you are looking for

  • Getting Error 2350 with itunes 7

    Help I keep getting an error message that says itunes.cab won't install--error 2350 at first was having trouble with quick time solved that went through trouble shooting-removed itunes 6 and now version 7 will not install--have a nano 4gb-my son is g

  • NOKIA LUMIA 2520 TABLET WITH POWER KEYBOARD LAUNCH...

    DEAR SIRS, We are from India, We are great fans of Nokia, am having NOKIA X7 fully loaded handset, now am waiting for NOKIA LUMIA 2520 TAB WITH POWERKEYBOARD, when this 2520 tab get released in India??? have been waiting since october last year to bu

  • Checking the Selection Screen Parameters

    Dear All, We are uploading data from various excel sheets into SAP tables. Now at selection screen I just want to check if the location specified exists or not ie. if I have created one variant on one system & then if I am running that report from ot

  • How to Transport changes made to tool Area

    Hi According to my requirment i had to remove a Portal Search option from Tool Area. My requirment is to removie it from the theme as we don't need it I performed the following Go to Content Administration Portal Content--> Content Provided by SAP->E

  • How are PDF Annual Reports Created?

    Hello all. Quick question about annual reports / other formal PDF presentations. It seems to me that a great deal of creative and copy goes into making an Annual Report. Pictures, type, financial tables/graphs, etc must all be combined into one docum