Firefox hanging with script error

firefox 20 has been hanging constantly with a different script error depending on the site visited. "Script: https://s.ytimg.com/yts/jsbin/www-watch-extra-vflEcdvg9.js:329" was encountered on youtube. I have tried safe mode with ad-ons disabled, reset firefox, rolled back versions of flash and java. nothing has worked. I am currently using google Chrome

plug-ins have been updated, no luck, still hangs

Similar Messages

  • Firefox Freezes with Script Error

    Firefox keeps freeing/hanging. First you will see the errors that pop up for me. Then the troubleshooting I have done to solve this problem.
    Script Error:
    Script: http://z-ecx.images-amazon.com/images/G/01/browser-scripts/imageBlock/imageBlock-3190704718._V1_.js:773
    Script: http://z-ecx.images-amazon.com/images/G/01/digital/sitb/reader/v4/201411111537/en_US/sitb-library-js._V319867744_.js:34
    Script: http://z-ecx.images-amazon.com/images/G/01/browser-scripts/site-wide-js-1.2.6-beacon/site-wide-5809221203._V1_.js:184
    For troubleshooting I have tried the following:
    disable addon's and restart in safe mode (did not help)
    disable theme and restart in safe mode (did not help)
    reset firefox (did not help)
    uninstalled Firefox & removed all traces of browser from my computer (yes even the registry was removed)
    -------------- after doing the above I still had all my previous settings. I used IE to download a fresh copy and tired again. Still have all my settings, plugin's, tabs, and unremoved cookies and a little history
    I am not tech savvy but the script errors made me think of Javascript. I went to about:config and searched for Java when javascript.enabled showed up I disabled and the problem has disappeared.
    I know I need this javascript enabled. I cannot do much of anything at my site with is disabled.
    Does anyone have any suggestions on how to fix this script hanging problem.
    Thanks for any help.

    I reinstalled, Adobe Flash updated and problem fixed.
    Fred if I could I would send you homemade bread, cookies, fudge, most anything you want.
    Thank you for taking the time to help me fix this problem.

  • Firefox hangs with script running

    Firefox takes about 3 minutes to close down even with all extensions disabled. It comes up with a script error:
    Script: chrome://browser/content/sanitize.js:85
    I've never used Chrome so I don't know what this is referring to. Any suggestions on trying to remove this?

    I have had this problem reoccurring for several "updates" to Firefox. I am currently on 3.6.13 It was so bad I was ready to switch to Chrome. I would get a "script error" - the program seemed to be in a loop (judging by the CPU usage on the task monitor) and I usually had to just kill the process.
    I am on XP Home Edition SP3.
    Others have pointed to a problem in the extensions -
    I looked at my extensions and apparently the browser had updated Java Console 6-7 times - and the previous versions hadn't been deleted. I deleted all but the latest (6.0.21) and the problems seems to have been resolved.

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • Office 2013 VL and app-v 5 SP2 on RDS server - package add fails with script error

    We have used the MS Office Depolyment Tool for click-to-run to download the latest Office 365 version, and flatten it into an app-v 5 package - not a problem.
    When we try to add the package to our client machine (Server 2008R2 running the app-v 5 SP2 client software), it fails with an message that a script has failed and not returned a 0 code.  We have not added any scripting to this automatically created
    package, so it seems that the app-v client does not like the "official" package.  Any hints and tips gratefully accepted, thanks
    App-v client has scripting enabled.
    The powershell command line we are using is:
    PS C:\windows\system32> Set-ExecutionPolicy Unrestricted
    PS C:\windows\system32> Add-AppvClientPackage -path file://hostname/app-v/o365-noaccess/ProPlusVolume_en-us_zh-cn_x86.appv -DynamicDeploymentConfiguration \
    \hostname\app-v\O365-NoAccess\ProPlusVolume_en-us_zh-cn_x86_DeploymentConfig.xml
    with a result of:
    Add-AppvClientPackage : Embedded Script process exited with an error code indicating failure (return code other than 0). Please ensure that Embedded
    Script process can complete successfully and exits with 0.
    Operation attempted: Configure AppV Package.
    AppV Error Code: 100000000C.
    Please consult AppV Client Event Log for more details.
    At line:1 char:1
    + Add-AppvClientPackage -path
    file://hostname/app-v/o365-noaccess/ProPlusVolum ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult: (:) [Add-AppvClientPackage], ClientException
        + FullyQualifiedErrorId : ConfigurePackageError,Microsoft.AppV.AppvClientPowerShell.AddAppvPackage
    and these are the error messages we see in the debug app-v client logs:
    Script Launcher successfully waited for script with command line: '"C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root\..\Scripts\Integrator.exe" /I /Msi /License /AppV PackageGUID=D24C3BDD-8FAD-44d3-998C-933F8F053682
    PackageRoot="C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root" MsiName=SPPRedist.msi,SPPRedist64.msi PidKey=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx,xxxxx-xxxxx-xxxxx-xxxxx-xxxxx,xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
    PRIDName=ProPlusVolume'.
    and...
    Package {d24c3bdd-8fad-44d3-998c-933f8f053682} version {cd9725ce-4503-4932-863b-4fcda3f9551d} failed configuration in folder 'C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D' with error 0x79100E10-0xC.
    and...
    machine script for event AddPackage with command line: '"C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root\..\Scripts\Integrator.exe"'
    exited with failure error code: The extended attributes are inconsistent.. Because Rollback is set to true in the script definition, the current AppV Client operation was rolled back.
    We believe this last error message is the kicker, but can't debug any further.

    Just to validate the problem, I started again.
    I have just downloaded the latest ODT from MS, and then downloaded the latest Office 2013 packaged - volume license.  Then created the app-v package - all went perfectly, no error messages.  Uploaded the package to the app-v 5 server and published
    it.  I have made NO changes to any of the files.
    I have just built a brand new Windows Server 2008R2 Datacentre VM, patched it to the hilt, and installed the RDS role, powershell 3 and appv 5.0 SP2 client for RDS.
    I then use powershell as above:
              scripting unrestricted
              app v client scripting enabled
             app v server added
              global and user update enabled
             add-appvclient package  "url of office package.appv"
                 and received exactly the same error message.  
    It is not complaining that scripting is not allowed, it is complaining that the script is invalid.
    Help!!!!

  • App-v 5 and Office2013 Volume Licence Edition - package fails to install with script error

    We have used the MS Office Depolyment Tool for click-to-run to download the latest Office 365 version, and flatten it into an app-v 5 package - not a problem.
    When we try to add the package to our client machine (running the app-v 5 SP2 client software), it fails with an message that a script has failed and not returned a 0 code.  We have not added any scripting to this automatically created package, so it
    seems that the app-v client does not like the "official" package.  Any hints and tips gratefully accepted, thanks
    The powershell command line we are using is:
    PS C:\windows\system32> Set-ExecutionPolicy Unrestricted
    PS C:\windows\system32> Add-AppvClientPackage -path file://hostname/app-v/o365-noaccess/ProPlusVolume_en-us_zh-cn_x86.appv -DynamicDeploymentConfiguration \
    \hostname\app-v\O365-NoAccess\ProPlusVolume_en-us_zh-cn_x86_DeploymentConfig.xml
    with a result of:
    Add-AppvClientPackage : Embedded Script process exited with an error code indicating failure (return code other than 0). Please ensure that Embedded
    Script process can complete successfully and exits with 0.
    Operation attempted: Configure AppV Package.
    AppV Error Code: 100000000C.
    Please consult AppV Client Event Log for more details.
    At line:1 char:1
    + Add-AppvClientPackage -path
    file://hostname/app-v/o365-noaccess/ProPlusVolum ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult: (:) [Add-AppvClientPackage], ClientException
        + FullyQualifiedErrorId : ConfigurePackageError,Microsoft.AppV.AppvClientPowerShell.AddAppvPackage
     and these are the error messages we see in the debug app-v client logs:
     Script Launcher successfully waited for script with command line: '"C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root\..\Scripts\Integrator.exe" /I /Msi /License /AppV PackageGUID=D24C3BDD-8FAD-44d3-998C-933F8F053682
    PackageRoot="C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root" MsiName=SPPRedist.msi,SPPRedist64.msi PidKey=xxxxx-xxxxx-xxxxx-xxxxx-xxxxx,xxxxx-xxxxx-xxxxx-xxxxx-xxxxx,xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
    PRIDName=ProPlusVolume'.
    Package {d24c3bdd-8fad-44d3-998c-933f8f053682} version {cd9725ce-4503-4932-863b-4fcda3f9551d} failed configuration in folder 'C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D' with error 0x79100E10-0xC.
    machine script for event AddPackage with command line: '"C:\ProgramData\App-V\D24C3BDD-8FAD-44D3-998C-933F8F053682\CD9725CE-4503-4932-863B-4FCDA3F9551D\Root\..\Scripts\Integrator.exe"' exited with failure error code: The extended attributes are
    inconsistent.. Because Rollback is set to true in the script definition, the current AppV Client operation was rolled back.

    I'd like to reply to this that I also have (or had) the same issue. The "AppV Error Code: 100000000C."
    For me it was a script that I tried to call from a network drive:
        <MachineScripts>
          <AddPackage>
            <Path>powershell.exe</Path>
            <Arguments>K:\someFolder\copy.ps1</Arguments>
            <Wait RollbackOnError="true" Timeout="30"/>
          </AddPackage>
        </MachineScripts>
    I tried using the sharename, I tried using vbs instead of ps, I tried to rename the files it was copying (it was a dll) I tried a different destination (it was Windows\sysWoW64)
    In the end it seems to be the AppV client does not have access to the drive/share, even though 'everyone' had read rights. 
    When I changed the location of my script and file to C:\users\administrator\Desktop\copy.ps1 the appv added just fine.
    I'm looking at what to do, probably give all domain computers access to the share\folder because AppV client seems to use the system account for it's actions (also apparant if you call the var %username% from within the appv!), and because my destination is
    sysWoW64 users are not allowed to write there (so the userConfig.xml is not an option)
    So in short: for me it was a NTFS rights issue, the AppV client is not allowed to go and load the .ps1 that is defined in the deploymentConfig.xml
    Check your
    ProPlusVolume_en-us_zh-cn_x86_DeploymentConfig.xml, it probably calls something that the system account has no access to

  • Evolution: hangs with glibc error

    Hi there,
    When writing new mail or checking mail (via IMAP), after a couple of minutes Evolution hangs with the following error code in the comand line:
    *** glibc detected *** free(): invalid pointer: 0x08ad8e40 ***
    The error persists with all users, including root.
    I upgraded glibc a while ago (15 March), created the necessary locales, and everything worked like a charm. My last update was on Sunday, when gtk2 was updated (2.8.12-1 -> 2.8.15-1) as well as glib2 (2.8.6-1 -> 2.10.1-1). Might this be the problem? Or where do I start looking for a solution?
    Any feedback is much appreciated.
    -Sascha
    /edit: My system is a clean current/extras installation, no testing.

    giorgosc61 wrote:
    Hi
    I upgraded to evolution 2.6.0-2 and in the place of icons in Evolution show a [X] icon.
    What happened?
    wouldn't know, but perhaps that's a discussion for it's own thread since it doesn't particularly relate to the problem discussed in this thread

  • Newest update to Firefox Crashes with BEX error code

    Updated Firefox to newest version. Upon restarting Firefox it crashes with BEX error code. Deactivated all anti-spyware, removed all traces of Firefox and did a new re-install, and tried to open in Safe Mode but it still crashes upon start with same error code. (Firefox only runs on initial install but upon restart always crashes) Attempted to find an older version of firefox but can not find older version. I do not see any help related to the severity of my crashes. How do you fix the BEX crash?

    When you started in Safe Mode*, did you get the Safe Mode dialog or Firefox never got that far? Did you ever get to your home page?
    BEX = Buffer Overflow Exception or Data Execution Prevention (DEP) exception. DEP is a security feature that seeks to prevent exploits that inject program code into Windows memory. Firefox doesn't trigger this error on its own, but add-ons or external programs that tweak Firefox might.
    Are you using any special configurations to run Firefox, such as virtual machines or sandboxing?
    If not, it sound suspicious. You may want to run some supplemental scans. These two tools are highly regarded:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/products/malwarebytes_free
    SUPERAntiSpyware : http://www.superantispyware.com/
    * I assumed Firefox Safe Mode. Or was it Windows Safe Mode with Networking?

  • MOzilla Firefox hangs with every command or website I visit

    My firefox hangs up with every website i visit. It takes forever to load pages and stalls all the time. I have cleaned all cache and I have even uninstalled and installed the latest version. I cannot seem to get it to operate like it used to on my PC. I am runnning windows 7 and I double checked my machine for virus and malware.

    See:
    * http://kb.mozillazine.org/Software_Update (Software Update not working properly)
    Remove the files in the updates and updates\0 folder.<br />
    You may need to delete active-update.xml and updates.xml as well if present.
    Vista:
    C:\Users\&lt;user&gt;\AppData\Local\Mozilla\Firefox\Mozilla Firefox\updates
    (%LOCALAPPDATA%\Mozilla\Firefox\Mozilla Firefox)
    If you have problems with updating then easiest is to download the full version and uninstall the currently installed version.
    You may need to remove the Firefox program folder to do a clean install of the new version.
    * Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 4.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    * Do not remove personal data if you uninstall the current version.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.

  • VirtualBox fails with script error on Wizard.hta

    Hi there.
    We have MDT working successfully for physical client machines but when attempting to install via VirtualBox we get an error after the PXEBOOT and WinPE stages. It is when the Wizard.hta script attempts to run and we see a window stating "Wizard.hta
    Script Error".
    If anyone can think what might be causing this or how I can troubleshoot this further it would be most appreciated.
    Thanks.

    Ran it again and now get the following:
    Script: X:\Deploy\Scripts\ZTIGather.wsf
    Line: 0
    Char: 1
    Error: : VBScript
    Code: 800705AA
    Source: Windows Script Host
    I can press F8 to get a command prompt and see the file.
    Unsure of the error code.

  • Firefox hangs with a "Script not responding" error message; in the meantime there are more and more flashplayer instances running

    Recently I receive errors from Firefox at sites that were working fine before, always the same: a script is not responding, and I can wait, debug or stop. Waiting doesn't help (therefore pointless to change the 'dom.max_script_run_time' setting in the config); and also pointless to debug because the problem is not with the script. "Stop" eventually gets firefox to work, until the next error message which comes very soon.
    I tried to reinstall both Firefox and Flashplayer, even manually wiped the traces from the user profile and program files. They are the latest 35.0.1 and 16.0.0.305 available now.
    => In the meantime, there are reproducing instances of flash players are spawned and running. They stay running even after firefox is closed or terminated.
    => if I disable the flash player plugin everything's fine except of course flash is not working. If I re-enable it, the problem starts over.
    OS is Windows 8.1

    Retard, (I know that sounds hilarious, but I don't know your name - no offense please! )
    Like you said, if this happens only primarily on one of the many sites, it generally comes down to the type of code on that site.
    And after looking at the URL you posted, seems like that page uses a lot of external references - JS and CSS.
    Especially the last few lines:
    <script type="text/javascript" src="http://njcdn.worldsecuresystems.com/CatalystScripts/Java_OnlineShopping.js?vs=b1763.r38875 7"></script>
    <script type="text/javascript" src="http://njcdn.worldsecuresystems.com/CatalystScripts/Java_Cookies.js?vs=b1763.r388757"></script>
    <script type="text/javascript" src="http://njcdn.worldsecuresystems.com/CatalystScripts/Java_Box.js?vs=b1763.r388757"></script>
    Also, a couple CSS, JS references in the <head> section.
    'Display External Files' only disables showing external files - but still loads them.
    Can you try removing the external references and try working with the webpage in DW for a few minutes to see if the same problem persists? If it does, we know what was causing your issue.
    Also, run your site through W3 validator to check and resolve errors: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.healthfirst.com%2Facls-kit.html&charset =%28detect+automatically%29&doctype=Inline&group=0
    Let us know how it goes.
    Good luck.
    -ST

  • Process chains time outs and hangs with no error msg - in SP13

    Hi all,
    We are having all kind of weird problems after we patched our system with SP13. Our process chain time outs and hangs, but surprisingly we never get any error msg. And scarier part is, the problem seems to be intermittent. PC runs fine on some days and hangs on some.
    Further analysis into the dump – as below
    Termination occurred in the ABAP program "SAPLRSSM" -
    in "RSSM_SLEEP_DEBUG".
    The main program was "SAPMSSY1 ".
    In the source code the termination point is in (Include) program "LRSSMU39".
    This refers to an issue that appears to have been addressed by OSS Note
    934648(meant for SP8). This notes also indicates to populate RSADMIN table to
    exclude "RSSM_SLEEP_DEBUG". Not sure if this note is valid for SP13? However we went ahead and populated the RSADMIN table.
    So now we have no clue what’s going on and where to fix the issue.
    As per SAP suggestion we applied the following notes:
    0000653996  Analyzing lock situations
    0000893563  Correction: Deadlock on completion of a remote chain
    0000994007  Corrections: Deadlock with external status query
    0001005481  Correction: Process successful, but there is no instance
    0001047174  Correction: Incorrect scope when locking in process chains
    0001051957  Correction: TIME_OUT during dialog confirmation of processes
    0001083660  Report for error stack analysis
    Nothing seems to help us. And SAP suggested a few options, which we implemented to no rescue.
    I’m sure that many of the customers have applied SP13, and want some feedback from them, if this is happening in their systems too?
    If so, how did you fix this issue?
    Or this situation is unique to us?Please note that no settings were changed as of SP13 to that of what they were in SP12(unless it is a side effect of the patch itself). Everything worked fine with SP12 and is still working on the BIP system. All the problems are in BIQ patched to SP13.
    Any pointers or insight would be appreciated. We have a customer msg open with SAP, and going back and forth, but nothing seemed to work as of today.
    Thanks,
    Voodi

    Not sure which OSS helped us get past the issue, as SAP asked us to apply a ton of notes. But along which the notes, SAP has some suggestions for us, which we think did the magic. After the implementation of the suggestin we never faced the same issue again. The suggestion by SAP:
    move the process chain callback in a batch job by executing
    program RSSM_TRACE_SWITCH and selecting the flag "verifcation
    of asynchronous processes - execute in batch".
    Lemme know if this doesnt fix the issue, I can give all the notes that SAP asked us to apply.
    Message was edited by:
            voodi

  • Help with script error

    Hi all,
    I am facing error with the script logic
    Script Logic
    *XDIM_MEMBERSET P_ACCT=EXTSALES,ICSALES
    *WHEN P_ACCT
    *IS ICSALES,EXTSALES
    *REC(P_ACCT="TOTVAL")
    *REC(FACTOR=.08,P_ACCT="SALAFTERTAX")
    *ENDWHEN
    *COMMIT
    Error Message
    LOG BEGIN TIME:2010-04-16 15:59:39
    FILE:\ROOT\WEBFOLDERS\Student_DD \ADMINAPP\Sales\TEST.LGF
    USER:MICAIT\DEVANG
    APPSET:Student_DD
    APPLICATION:Sales
    *REC(P_ACCT="TOTVAL")
    ERROR LOG:
    CLASS: CL_UJK_WHEN_ENDWHEN
    METHOD: ADD_LINE
    TCODE: SE38
    MULTI MEMBERS HAVE BEEN SPECIFIED ON  DIMENSION:"P_ACCT" IN *IS SO DUPLICATE MEMBERS MAY BE GENERATED.
    LOG END TIME:2010-04-16 15:59:39
    UJK_VALIDATION_EXCEPTION:LINE:4 multi-member specified for dimension "4" in *IS
    Thanks,
    Diksha

    Hi,
    If you are in SP02, Go through this SAP Note [Note 1312132 - BPC7NW SCRIPT LOGIC: REC Behavior Fix|https://service.sap.com/sap/support/notes/1312132] that helps you in fixing this issue.
    Reply me for further clarifications.
    Regards,
    RajK

  • Firefox hangs with flash

    Firefox is hanging, not loading pages or menu commands. Disabling flash solves the problem. I have fresh install of XP with firefox 4 and updated plugins. I have uninstalled flash and reinstalled as suggested in the help with no improvement. I have tried reinstalling Firefox with no results. Just wondering what I should try next

    Firefox is hanging, not loading pages or menu commands. Disabling flash solves the problem. I have fresh install of XP with firefox 4 and updated plugins. I have uninstalled flash and reinstalled as suggested in the help with no improvement. I have tried reinstalling Firefox with no results. Just wondering what I should try next

  • Every night at 7pm CST/midnight GMT, Firefox closes with no error message, or warning message. All add-ons have been disabled. Running Win7 with Firefox.

    I have already disabled all ad-ons, one at a time (11 total) to see if any of them caused the error. None did. I have already checked all programs, including antivirus to see there was a timed action that was triggering the shut down. When it does shut down, I receive no error messages or warnings about muliti-tab shutdown. Every time, Firefox simply closes. When I re-open Firefox, I do not receive the option (which I have set) to restore my tabs. No other programs are affected. I am happy to provide any more information, just let me know what you need. The Troubleshooter data below is from 1.5 hours after the most recent Firefox shutdown.

    I have '''exactly''' the same problem as you do, and it also happens in other browsers as well (I use Internet Explorer and Google Chrome too).
    Most of the times, the restore previous session option is grayed out, but other times it automatically asks me if I want to restore the previous session. When I click 'Yes', it restores all the tabs of the previous session alongside a new one, open in the following site: http://krzemik.pl/
    The site is Polish, but I don't even live in Poland.
    The site says it's safe, but I'm suspicious it distributes some kind of adware that causes this problem. I've already reported it, though.
    I also have another problem that, whenever I search for something that contains the word 'virus' on a search engine, the browser is automatically shut within 1 or 2 seconds without any kind of warning or error message, I also can't open one of my antispyware programs (AdAware, to be exact), as it is immediately closed as if I had clicked the 'X', per say, even in Safe Mode. I'm also prevented from using my backup restore function in the control panel, or even using commands to activate it. I've fully scanned my computer in Safe Mode using another antispyware (SuperAntispyware) twice, and nothing as solved the problem.
    I'm not sure if these problems are interconnected, though.

Maybe you are looking for

  • A collection of tips and tricks

    A collection of seemingly useful tips for MSI TV@nywhere posted by various people I assembled for my own reference. Hopefully this could be of some use too to some of you guys. Some entries on the list are not properly credited, my apologies. Please

  • Nokia 5800 v21.0.25 Auto-Rotate issue (firmware re...

    Hi, After updating OTA to the lastest firmware Auto-Rotate display stopped working. When i first installed the new FW I had issue with the home screen. It kept blinking like every 1 sec between homescreen and appication screen. This is when I noticed

  • Problem compiling APK with flash

    Hi I wrote an app for iPhone and wanted to put it on android, changing the settings in flash.But when I compile to get an APK the compilation stop just 10 or 9 second before the end I hear the warning sound of my mac and then nothing. When I compile

  • Getting Media from DVD

    APE7 I am working on a project for an actor friend for his Video Resume.  He has DVDs from producers of the parts he has performed.  These DVDs play ok in a player or on the computer but when I use Get Media to put them in a project the audio is all

  • Radio And Player Auto Stop

    at night i fall into sleep when listning music. so in my earlier samsung mobile there is a option to stop player after 30min or 3 hour. but nokia i not find it... is there anyway to setup timer like after 3 hour player and radio will stop etc. and al