XI and BASIS problem

Hi all,
Yesterday, I encountered a SYSFAIL in smq2 (queues). The error was 'SQL error in the database when accessing a table'. I contacted our basis guy and he increase the table space. After that, the queues were running again. But we asked ourselves, why did this happen? Will this error occur again after a few weeks? How come XI is taking up a lot of space since its only job is to act as a gateway. Why is it storing data? How can we prevent this kind of SYSFAIL from happening again?
Thanks.
Regards,
IX

the data i guess is usually stores the information reg the message. So if you need to track back and and view the log or status of a old message these tables come to be of help.
I guess you can have the table contents cleared or archive XI messages on a time basis perhaps to ensure the issue doesnt come up again
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50

Similar Messages

  • I am making code to try to make a game and my problem is that my code......

    I am making code to try to make a game and my problem is that my code
    will not let it change the hit everytime so im getting the first guy to hit 1 then next hits 8 and so on and always repeats.
    Another problem is that I would like it to attack with out me telling it how much times to attack. I am using Object oriented programming.
    Here is the code for my objects:
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class rockCrab {
         //Wounding formula
         double sL = 70;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 50;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         rockCrab() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              double done = rint(fH - fA);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("Rockcrab hit" +done);
    import java.lang.*;
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.util.Random;
    import static java.lang.Math.*;
    import java.awt.*;
    import java.awt.color.*;
    class self {
         //Wounding formula
         double sL = 1;                                   // my Strength Level
         double bP = 1;                                   // bonus for prayer (is 1 times prayer bonus)
         double aB = 0;                                 // equipment stats
         double eS = (sL * bP) + 3;                         // effective strength
         double bD = floor(1.3 + (eS/10) + (aB/80) + ((eS*aB)/640));     // my base damage
         //Attack formula
         double aL = 1;                                   // my Attack Level
         double eD = 1;                                   // enemy's Defence
         double eA = aL / eD;                              // effective Attack
         double eB = 0;                                   // equipment bonus'
         double bA = ((eA/10) * (eB/10));                    // base attack
         //The hit formula
         double fA = random() * bA;
         double fH = random() * bD;
         double done = rint(fH - fA);
         //health formula
         double health = floor(10 + sL/10 * aL/10);
         self() {
         void attack() {
              health = floor(10 + sL/10 * aL/10);
              fA = random() * bA;
              fH = random() * bD;
              done = rint(fH - fA);
              System.out.println("You hit" +done);
    }Here is the main code that writes what the objects do:
    class fight {
         public static void main(String[] args) {
              self instance1 = new self();
              rockCrab instance2 = new rockCrab();
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
              instance2.health = instance2.health - instance1.done;
              System.out.println("You hit: " +instance1.done);
              System.out.println("rockCrabs health: " + instance2.health);
              instance1.health = instance1.health - instance2.done;
              System.out.println("RockCrab hit: " +instance2.done);
              System.out.println("rockCrabs health: " + instance1.health);
    }when the code is run it says something like this:
    you hit 1
    RockCrabs health is 9
    RockCrab hit 7
    your health is 38
    you hit 1
    RockCrabs health is 8
    RockCrab hit 7
    your health is 31
    you hit 1
    RockCrabs health is 7
    RockCrab hit 7
    your health is 24
    you hit 1
    RockCrabs health is 6
    RockCrab hit 7
    your health is 17
    my point is whatever some one hits it always repeats that
    my expected output would have to be something like
    you hit 1
    RockCrabs health is 9
    RockCrab hit 9
    your health is 37
    you hit 3
    RockCrabs health is 6
    RockCrab hit 4
    your health is 33
    you hit 2
    RockCrabs health is 4
    RockCrab hit 7
    your health is 26
    you hit 3
    RockCrabs health is 1
    RockCrab hit 6
    your health is 20
    Edited by: rade134 on Jun 4, 2009 10:58 AM

    [_Crosspost_|http://forums.sun.com/thread.jspa?threadID=5390217] I'm locking.

  • ETD and Base line are not matching

    Hi All,
    My requirement is in production server, for some invoices the Expected time departure and base line date are not matching,
    What will be the reason behind this? Can you please advice how to approach to this problem.?
    Thanks in advance
    jaya.G

    Hi,
    could you please eloborate the issue?
    Thanks,
    Srinu

  • Performance and Contention problem with the database ?

    Hello!
    I am having one database which is used by around 95 thousand
    users.Database contain about 4 lakh records. The database is
    going smooth and perfect.
    The problem(perfomance is slow and there is contension too) came
    when i made 4 web applications which contain atleast 1000 hits
    (1000 records are inserted in the database ) per day.
    Now the db is not going so smooth(contention and performance
    problem).
    I think this is happening becuase of those 4 web applications.
    So should i make new database for that 4 applications or i need
    to get the new system for it or there is another way through i
    can tune my running database.
    Any help will be appreciated.
    Regards
    Seemab

    Hi,
    If i well understand, u have one database and u insert 4000 rows
    per day and u have performance problem ?
    I think u have a big problem cause it's not really a big
    intensity on a base. So u should have big problems on ur
    database design such as undersized memory area, bad disk
    repartition, bad types of indexes or something like that.
    To decrease the contention, u should separate ur data and index
    datafiles over differents disks and specialize tablespace by the
    granularity of the table.
    But u r not enough precise to expect a precise answer; could u
    be more precise ? as the server u have, data volumes, a select *
    from v$system_event, etc...
    Good Luck,
    Fred DENIS

  • Clock problem and shutdown problem! Are they related?

    Having a problem with my Dual 2 GHz Power Mac G5
    A few days ago I noticed that my clock was not showing in the menu bar in the upper right corner of my desktop.
    I went into System Preferences and went to Date & Time. Under the clock tab “Show Date and Time in Menu Bar” the box was not checked off. I checked it off and went to the “Date and Time” tab. The date and time was correct. I then checked the box “Click the lock to prevent further changes” to lock it. The date and time did not show up in the menu bar. I then went back to the tab “Show Date and Time in Menu Bar” and the box I checked was not checked off even thought the lock was still locked.
    I then moved my cursor up to the menu bar in the upper right corner to see what would happen and the spinning beach ball started up but only for the original icons such as Bluetooth, Mobile Me (which I do not use), Time Machine, Spaces (doesn’t indicated the number when I switch Spaces, etc. The icons Norton Anti Virus and Tech Tool Pro in the menu bar are okay.
    Also, when I attempt to shut down my computer the system clears the icons from my desktop except for a picture I have on my desktop and I get a gray wheel spinning and the system just hangs until I press and hold the on/off switch. I don’t know if the clock and shutdown problems are related.
    The only new software I loaded recently was Skype with Logitech WebCam for the Mac and Quicken 2007 (Had a problem with Quicken 2006). They both are working okay.
    And ideas on why I cannot get my clock to show up and my computer to shutdown?

    You may have to consider a new post in the Hardware forum area for the computer
    model and build/year; if there is a possibility of some basis the matter could be in
    the machine and not the software running within it.
    Your last two/three posts are in the Leopard 10.5(.8) forum area and do indicate
    some kind of problem where troubleshooting the computer to discover if the matter
    at hand would be either hardware or software based, may be the way to go.
    The link to the 10.6 Snow Leopard forum won't be of help if your computer is a
    PPC-based G5 tower, or other older pre-Intel configuration. And I remember
    your earlier questions about the iMac G4 and some other issues in the past.
    You may ask the moderators to put your post in a new thread of its own, in the
    Leopard 10.5 area; so as to not 'piggy-back' another topic; even though some
    of the odd issues you've had seem similar to this OP's topic line and appear to
    be in the same general series of hardware. {The question here seems valid.}
    The routine suggestions to check, test, verify, and perhaps repair or replace
    the system; save a bootable clone to suitable external standalone device if
    testing a suspect computer's viability is recommended; and the basics if not
    already tried to help isolate the issue(s) as you've posted elsewhere, may be
    of some help to try and do; so in that matter, a new thread of your own is best
    for your own directed feedback. Since this kind of advice applies to most any
    situation, including troubleshooting what may be hardware or software, I'm
    adding my two and three-tenths cents worth here.
    Your original included Apple Hardware Test may be of some help, in the process
    of elimination; but is not conclusive, so other methods would be also suggested.
    Some ideas appear to cover the same ground. However, system corruption or
    disc failure can also manifest itself in odd ways & affect things indirectly for a time.
    • OS X Maintenance And Troubleshooting
    http://www.macattorney.com/ts.html
    • Mac OS X BASIC TROUBLESHOOTING & MAINTENANCE
    http://www.gballard.net/macrant/osx_troubleshooting.html
    • Troubleshooting Tips for computers:
    http://www.stcdio.org/offices/cem/mediaandtechnology/cem-computer-classes/troubl eshooting.html
    So, at the risk of inadvertently alienating the OP, I am posting this as
    a general help to following readers at some later time; and it may not
    be too simple for a refresh course.
    Some software issues can be resolved by repairing disk permissions,
    and re-applying the last OS X update Combo file over the same one
    already in the system; or if not up-to-date already, check & repair all
    the general items and then apply the last Combo update.
    A too-full hard disk drive can compromise the system integrity, so that
    is a matter of course to keep up on what resources exist and remain
    for the OS X to function correctly and for apps to multi-task together.
    However that works out...
    Good luck & happy computing!

  • How to maintain space between value and base unit of measure in sapscript

    Hi Guys,
    I am working on an upgradtion project, i have problem like while upgrading from 4.6b to 5.0. i need to main a space between value and base unit of measure. can anyone letme know how to maintain in the form. I mean in sapscript.
    Thanks,
    Yogesh

    There are a couple of ways to handle this,  if you need a bigger space between, you can use tabs in the paragraph format.  Or you can just write the space in between the fields like so.
    ZA  &MSEG-MENGE& &MSEG-MEINS&
    Regards,
    RIch Heilman

  • How to inform and escalate problems to SAP

    Dear Friends,
    How to mail SAP to get their help to solve problems beyond our knowledge. I have user login in service.sap.com, and I want raise some issues to SAP. And if SAP doesn't respond as per the given priority how and where we could escalate problem. Please help me to clarify these things. your help will be highly appreciated.
    Thank you
    Raghu Ram

    Hi Raghu Ram
    Follow the steps, It may solve your problem:
    1. Copy following url into web browser : <b>http://service.sap.com/message</b>
        It will ask you for your OSS ID and password .
        A Screen which contain a push Button Select System displayed . 
    2. Push the Button Select System .
        It will open a sub screen in which there will be a hierarchical structue which looks like
          - <Your SAP Customer Number >
             -<SAP Installation number for a specific product1 >
                 <radio Button><System SID1 for which you have registered a license>
                 <radio Button><System SID2 for which you have registered a license>
             +<SAP Installation number for a specific product2 >
             +<SAP Installation number for a specific product3 >
    Here  + indicate that you have a sub tree .
                 Specific product  like SAP R/3 T for Services , SCM , CRM , ERP   etc
    3. Select the system for which you need to log a message
        It will take you to message screen  screen.
    4. Select you domain for problem for example Basis problem with Database where dataBASE IS  oracle then Message type will be BC-DB-ORA
    5 Select priority of Message
    6 . Write Message and send it to SAP
    Thanks
    G. Lakshmipathi

  • Multiple Plug-in and crashing problems

    Fairly recently, I have been getting plug in error messages that freeze my browser up for minutes at a time. This happens on multiple websites. I have tried to update my add-ons, but I am having issues even updating those. For example, I am running on adobe acrobat 10.1.1.33 and my browser tells me it is out of date. I click to update, and it takes me to a page that says the plug in has been blocked. It will not allow me to update through that avenue. I click the general 'check to see if your plug ins are up to date,' but on that page, I am told that the plug in IS up to date. I have tried manually installing the different updates I need (as this is happening with several different plug ins) but the update is apparently not applying. I have also done a general firefox 'reset' and am completely up to date. I just want the freezing and constant error messages to go away.

    Crashes or other problems with certain multimedia content in Firefox (such as Youtube videos and Flash animations or games) can often be resolved by performing the steps in these Knowledge Base articles:
    * [[Flash Plugin - Keep it up to date and troubleshoot problems]]
    * [[Flash 11.3 crashes]]
    * [[Flash 11.3 doesn't load video in Firefox]]
    On Windows Vista and above, you can disable Flash protected mode by following the instructions on these pages:
    * http://forums.adobe.com/thread/1018071#TemporaryWorkaround
    * http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (See [http://blogs.adobe.com/asset/2012/06/inside-flash-player-protected-mode-for-firefox.html this Adobe blog post] for technical details about Flash protected mode.)
    Please tell us if this helped!

  • Quesion on fragile base problem

    Hi,
    I like to know how JAVA addesses the fragile base problem. I understand fragile base problem occurs when you want to add a new feature to a base programs, it requires the modification of all the children class to also inherit the new feature. This takes a lot of effort and it's error prone. I kind of know that polymorphism concept is the feature Java added to address the problem but I don't have a solid picture of how it handles the problem. Can anyone provide some info on this. Thanks.

    Sorry, I probably did not mean adding new features. I
    think what I am trying to say is supposedly we change
    a method in the parent class to return a String,
    previously a Integer. If we don't retrofit the
    children class, it will cause the program to fail
    compiling. If the program uses deep inheritance, just
    one single change might require a lot of work to
    retrofit. So, how would a developer design the
    application to avoid this problem? Unless you are overriding or extending the method this isn't the case. Really it's not so much a parent - child problem as it is a general application problem. Everywhere you are calling this method will no longer compile.
    One solution that always works is to make the change and let the compiler tell you what other code needs to be fixed. Java doesn't have any answers for this problem though some IDEs do as the previous poster mentioned.
    The best way to avoid something like this is to have a good design. I can't think of any good examples of when this could happen. Usually deeply inherited classes should be almost completely stable. If not, maybe that method should't be part of the base class at all. Changing a method to return a String instead of an Integer is a huge change. Really you are talking about changing its purpose. Maybe if you gave a better example I could understand a little better.

  • For MI / MAM wht shld be PIBASIS and BASIS level in my backend system

    Hi all
    I am working MAM2.5 with my MI server on SP15
    Can any one suggest me what should be my
    <b>PIBASIS and BASIS level in my backend system </b> so that i will not have problems in synchronisation .
    thanks in advance
    bye
    sam

    hi Frank
    Thahks for the reply
    Is PI 2004.1 SP1 the minimum basic  level i need ...
    <b>My backend is on
    Soft ware  -
        Release   ---    level
    component
    PI          ---     2003_1_470   --   0005 
    PI_BASIS  -
          2003_1_620   ---   0007</b>
    will this work with out any problems
    if not can u please suggest  me a SAP Note with which  I can show my client as a reference
    thanks again for the reply
    with regards
    sam
    Message was edited by: sam s

  • Audio (and other) problems noted with Keynote version 4.0.1

    Since installing Keynote 4 and the 4.0.1 update, I have noted the following situations and/or problems:
    1) When doing a "save-as" the filename is appended with the suffix ".key" but when I subsequently "save" this file, the suffix disappears. The file seems to open and operate OK nonetheless, but this puzzles and somewhat concerns me that someday Keynote may not recognize the file. This happens whenever I "save" a slideshow after I have made any changes to it.
    2) When playing back a "soundtrack," the audio "glitches" frequently at slide transitions: this occurs repeatedly on my G5 desktop system but not on my MacBook Pro-17. The "glitches" always seem to occur at the same places in the track - which, of course, is also at the same slide transitions. (This problem has spawned several similar questions and threads in this forum.)
    3) Related to #2 above, the "glitches" also interrupt or corrupt the "recording" of that soundtrack, so that the synchronization is off when the slideshow is played back.
    4) If I want to have an audio track play under a series of slides, the only way I have found to accomplish this is to create a separate slideshow with the audio track running as a "soundtrack" and "record" the Builds and Transitions in sync with the audio. If I want to incorporate several of these shows together, I can create a "master" slideshow and Hyperlink each segment to the next. HOWEVER...
    5) When I "record" a "soundtrack" and "synchronize" the Builds and Transitions within the slideshow, everything plays back properly in sync ONLY when the slideshow is played as a stand-alone presentation (i.e. a cold start from the desktop). If I initiate playback of the slideshow via a Hyperlink from another presentation, the soundtrack plays but NONE of the synchronization works at all.
    6) The only way I have found to have an audio track "fade-in" or "fade-out" is to use off-line editing software to record these fades prior to importing the tracks into Keynote. The "Start Audio" Build function is simply a hard "cut" in, and the end of the track is a hard "cut" out.
    These problems are consistent and repeatable facts. Whether they are "bugs" in the software or "design shortcomings" is uncertain. Nonethtless ...
    At the risk of offending the moderators of this forum, I feel compelled to comment that these problems render the audio operations of Keynote less than satisfactory and should be addressed as soon as possible with another update to this visually stunning but audio-challenged application.

    Well Ron S, I re-confirmed why I prefer not to look to tech support for support.
    It seems to me that support's main function is to deflect any critical comments and push the blame back to the user.
    Frankly, I have better things to do with my time and money than try to help a multi-billion dollar enterprise learn about itself.
    So, for the benefit of you and the nearly 400 who have followed this thread, I offer you my latest and probably last attempt to have Apple acknowledge in some small way that "Houston, we have a problem".
    I expect this reply will result in this thread being yanked as well, since I'm expressing negative thoughts about Apple's product and wishing they would do better, which is a non-technical gasp of utter frustration and disappointment. Note that "product" is singular, defining Keynote. My other Apple products serve me loyally and superbly, which is why my huge disappointment with Keynote.
    So here is my correspondence with Tech Support. I've removed names except mine.
    I think it speaks for itself. They have notes from my conversations with them that I have current Apple computers, including a MacBookPro, not an old PowerBook, nevertheless, they have told me that the problem is mine because the fabulous hyper-performing Keynote software is choking my poor old machine (paraphrased muchly).:
    Hi (support),
    That's disappointing news, especially since this test was done on 3 machines: an old G4 400, a 2.0G Dual G5 and an Intel core duo MacBookPro which yielded identical results.
    It is not a hardware issue.
    I do not accept a brush-off that it is my hardware that is causing Keynote to be problematic.
    I will assume that Apple is not interested in addressing these issues in public and that Keynote is substandard software that is in need of re-authoring.
    Sorry to be so blunt, but Apple has set this tone with Keynote, and used its considerable reputation as a leading a/v technology innovator to imply that Keynote will deliver the excellence we Mac users have come to expect.
    I have been a loyal mac user since the SE series and have enjoyed success with the machines and software offered by Apple, and depend on them for my livelihood. I'm currently using FC Studio6 and know that Apple is capable of maintaining its high standards.
    However, Keynote fails to do that, instead behaving like a product that was invented in a teenager's basement and is in beta. I realize that it's not designed as a FCP level product, but it fails at the basic tasks that you advertise it will complete.
    A version 4 product should work as advertised. Keynote certainly does not.
    I'm deeply saddened that Apple seems to have become an iPod entertainment company, interested mainly in profits from entertainment rather than serious useful technology.
    On 2007-Oct-19, at 10:14 AM, (tech support) wrote:
    Hello Sir,
    Unfortunately, this does look like it's mostly a case of some of the new Keynote features slowing down the performance on the PowerBook.
    At this point, there isn't much else we can do in the way of troubleshooting.
    If you are not satisfied with the performance on the PowerBook, using the previous version of Keynote is probably his best option at this point.
    We will continue to research this issue, but at this point it's unlikely I'll be able to find additional suggestions for improving performance, as it looks like it is is reproducible and limited to older models.
    On Oct 16, 2007, at 11:27 PM, Ron Tucker wrote:
    Hi (support),
    Thanks for your recent followup calls. I'm directing a video shoot so am a bit preoccupied.
    Here are the tests I mentioned.
    These are as simple as it gets, and I think highlights the synchronization problem with Keynote.
    Test 1 is straightforward, and demonstrates that a single unedited recorded audio track will maintain mouse click synchronization.
    Test 2 is the same file, but with audio modifications applied to each slide in succession.
    This demonstrates a dramatic synchronization slippage.
    The visuals occur before the click (and audio) markers. Keynote seems to be create delay in audio at each "record and replace" point. This accumulates as the audio is revised in successive slides.
    These tests demonstrate that there is a fundamental flaw in how Keynote handles audio in its most basic application.
    This does not address the slim toolset available, such as lack of insert capability and other basic audio tools, which is a separate design issue, and I suppose subject to "request for enhancement" feedback.
    I've reluctantly abandoned Keynote for my project work at present until these basic issues are addressed and it can be demonstrated that Keynote can successfully execute its feature set.
    <TuckerKeynoteTest.zip>
    Message was edited by: Ron Tucker1

  • My iPhone 5 keep rebooting itself after update to iOS 8? My friends iphone 5 is doing it too...already reset the phone and the problem till happen.

    My iPhone 5 keep rebooting itself after update to iOS 8? My friends iphone 5 is doing it too...already reset the phone and the problem till happen.
    What at can I do to fix the problem???

    Hello there, Fernandox26.
    The following Knowledge Base article offers up some great steps for troubleshooting isues with unexpected power issues with your iOS device:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    My issue is still not resolved. What do I do next?
    Contact Apple Support.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • BOSD, Battery issues and Heating problem after iOS 8 upgrade

    i have upgraded my iPad mini to iOS 8. Ever since I upgraded to iOS 8 am facing blue screen issues and heating problem as well. This is really frustrating even the patch iOS 8.0.2 dint solve the problem. Are you guys listening our complaints. When will you fixing it.

    The same thing happened to me on my 2012 Subaru Outback.  I'm not sure this will help you since you have a Honda, but I'm posting this just in case.
    I paired the audio on my car with my iPhone 6.  However, when I turned the car off and back on again, the iPhone would not pair automatically.  I had to manually connect the iPhone with the car.  Turns out there are two separate bluetooth pairings on my car: one for phone which allows up to 5 devices and one for audio which allows only one device.  So I did the second bluetooth pairing for the phone (had already done the audio), and that fixed it.  YMMV

  • Remote and IR Problem

    A rather odd and annoying problem has recently been occuring on my MBP. A couple days ago my remote (after working without fail for over a year now) suddenly stopped working. Yesterday night and this morning it started working again but after a while it stopped again. I've read dozens of support articles which haven't really helped because there seems to be another problem.
    Most articles have stated that there is an option to disable the IR receiver in the "security" window under system preferences. When the IR and remote are not working this option disappears but when they are working the option is present. I have also tried replacing the battery without any result.
    I am now thinking that it might have something to do with heat buildup because it is mainly occuring after the laptop has been on for about a half hour, so I am going to try to borrow someone's fan.
    If anyone has any suggestions to solve this I would appreciate it if you could help. Thanks!
    MacBook Pro 1.83 GHz   Mac OS X (10.4.9)  

    check out this thread. Seems to be the same problem.
    http://discussions.apple.com/thread.jspa?messageID=4701905&#4701905

Maybe you are looking for

  • 20GB colour screen click wheel needs reformatting to Windows

    I've had iPods before, and in the past, I've had to reformat from Mac to Windows (I use Windows) when I've first gotten the iPod. I've done it a few times, and although it was frustrating and took a little while (for me), I didn't have any major prob

  • XSLT mapping - 2 messages to 1

    Is it possible to map 2 xml files into 1 with only one XSLT mapping? I need to use XSLT because the target message is a xml with only one tag of type string, and inside this string I need to pass the content of both source messages. But the only way

  • Apps Tab in Creative Cloud says Download Error [was: Creative Cloud]

    When I choose Apps Tab in Creative Cloud it will say Download Error Please Retry to try again or contact customer support. Any idea how to solve this problem?

  • Help for a rookie 3120 Classic user please

    Just purchased a 3120 classic.  wish I had checked here first as the backlighting thing (or lack of) is really annoying.  My question is - are you able to set a signature on your outgoing text messages? my very old Sanyo allowed me to have my name au

  • When not to use App Tabs?

    I own a business and need to check my bank balances often. Would you recommend using the app tab for the different banks that I use? Could you suggest what most people use the App tab for other than Facebook or email/Gmail. Thanks