Call .js file through VB[Error]

Hello,
Using Visual Basic, i called the .js file. Its works most of the time. Some times, its throws an runtime error. Could you please advice me, how to solve this.
Regards,
Maria

Sure Yannick,
we have Webcenter Portal servers on Linux box, and OHS is on Windows box,
We are able to access all the pages but some pages its throwing the java script error mentioned above, we have not included any javascript code inside the pages, that core-11.1.1.6.0-1318.js could be a framework javascript file,
Here is the ohs entry,
</Location>
<Location /PortalOne>
SetHandler weblogic-handler
WeblogicHost exalogichostname
WeblogicPort xxxxx
</Location>
Please let me if i can give more information about the issue

Similar Messages

  • Call .jrxml file from jsp

    hi experts,
    i created the jasper report file, and i want to call this file through the jsp.
    plz help m.
    i written the following code but it gives the error:
    ==code==
    <%@ page import="java.sql.*" %>
    <%@ page import="java.lang.*" %>
    <%@ page import="java.lang.Object" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.text.*" %>
    <%@ page import="net.sf.jasperreport.engine.*" %>
    <%@ page import="net.sf.jasperreport.engine.util.*" %>
    <%@ page import="net.sf.jasperreport.engine.export.*" %>
    <%@ page import="net.sf.jasperreports.engine.JasperCompileManager" %>
    <%@ page import="net.sf.jasperreports.engine.design.JRMultiClassCompiler" %>
    <%@ page import="net.sf.jasperreports.engine.JasperManager" %>
    <%@ page import="net.sf.jasperreports.engine.xml.JRXmlLoader" %>
    <%@ page import="net.sf.jasperreports.engine.JasperPrint" %>
    <%@ page import="net.sf.jasperreports.engine.JasperFillManager" %>
    <%@ page import="net.sf.jasperreports.engine.JasperExportManager" %>
    <%@ page import="net.sf.jasperreport.engine.JREmptyDataSource" %>
    <%@ page import="net.sf.jasperreports.engine.JasperReport" %>
    <%@ page import="net.sf.jasperreports.engine.design.*" %>
    <%@ page import="net.sf.jasperreports.view.JasperViewer" %>
    <%@ page import="net.sf.jasperreports.engine.JRException" %>
    <%
         String reportSource ="C:/apache-tomcat-6.0.16/webapps/ROOT/Emp/report/sample.jrxml";
         String reportDest = "C:/apache-tomcat-6.0.16/webapps/ROOT/Emp/report/sample.html";
         Map params = new HashMap();
         try
              JasperDesign jasperDesign=JRXmlLoader.load(reportSource);
              JasperManager.loadXmlDesign("sample.jrxml");
              JasperReport jasperReport =JasperCompileManager.compileReport(jasperDesign);
              JasperPrint jasperPrint =JasperFillManager.fillReport(jasperReport, params, new JREmptyDataSource());
              JasperExportManager.exportReportToHtmlFile(jasperPrint, reportDest);
              JasperViewer.viewReport(jasperPrint);
         catch (JRException ex)
              ex.printStackTrace();
    %>
    ==error==
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 31 in the jsp file: /Emp/report/rept.jsp
    JREmptyDataSource cannot be resolved to a type
    28:           JasperDesign jasperDesign=JRXmlLoader.load(reportSource);
    29:           JasperManager.loadXmlDesign("sample.jrxml");
    30:           JasperReport jasperReport =JasperCompileManager.compileReport(jasperDesign);
    31:           JasperPrint jasperPrint =JasperFillManager.fillReport(jasperReport, params, new JREmptyDataSource());
    32:           JasperExportManager.exportReportToHtmlFile(jasperPrint, reportDest);
    33:           JasperViewer.viewReport(jasperPrint);
    34:      }
    plz help m.

    Error log tells:
    JREmptyDataSource cannot be resolved to a typeYou have missed "s" in package name. Instead of:
    <%@ page import="net.sf.jasperreport.engine.JREmptyDataSource" %>do:
    <%@ page import="net.sf.jasperreports.engine.JREmptyDataSource" %>Thanks,
    Mrityunjoy

  • Error while calling pscp.exe through a batch file which is called in SSIS Execute Process Task

    Hi,
    I am using Windows Server 2012 R2 Standard, SSIS 2012. I am trying to copy files from a remote location by calling pscp.exe through a batch file (FileCopy.bat at location M:\bin\) which is referenced in a SSIS Execute Process Task. My batch file content
    is,
    ECHO OFF
    echo. >> M:\Prod\bin\SourceFile_FileLog.txt
    echo %date% - %time% - Copy Start (XYZ_a201211155952avx0_69999.NOR.gz) >> M:\Prod\bin\SourceFile_FileLog.txt
    M:\ProdFiles\bin\pscp.exe -unsafe -scp -pw aaaaa myuser@sourceserver:/ABC_data/*.NOR.gz M:\Prod\FromMediation\
    echo %date% - %time% - Copy Complete >> M:\Prod\bin\SourceFile_FileLog.txt
    The error I am getting is 
    [Execute Process Task] Error: In Executing "M:\bin\FileCopy.bat" "" at "", The process exit code was "1" while the expected was "0".
    Exactly same setup but using Windows Server 2003 R2 Enterprise and SSIS 2005, this works fine and copies the files successfully.
    Please provide some guidance on this.
    Thank you!
    'In Persuit of Happiness' and ..... learning SQL.

    Hi,
    This is what I am getting while running the batch file from command prompt
    M:\bin\mttrb1>CDR_FileCopy
    M:\bin\mttrb1>ECHO OFF
    The system cannot find the path specified.
    The system cannot find the path specified.
    scp: M:\Prod\FromMediation\: Cannot create file
    scp: M:\Prod\FromMediation\: Cannot create file
    scp: M:\Prod\FromMediation\: Cannot create file
    The system cannot find the path specified.
    'In Persuit of Happiness' and ..... learning SQL.

  • How to call a FoxPro .prg file through SQL statement

    I created a program exclusive.prg which basically consisted of the statement USE my table exclusive. How can i call this function through a SQL statement using java

    Hi,
    Thank you for he reply.
    Runtime.getRuntime().exec(..)works fine with .exe files.
    but, when a foxpro program file(.prg) is compiled, a (.fxp) file is produced and not a .exe file
    when i write some thing like
    statement.execute("exclusive.fxp")i'm getting an error. here is the stack trace
    java.sql.SQLException: [Microsoft][ODBC Visual FoxPro Driver]Syntax error or access violation
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
         at excel.TestMom.main(TestMom.java:28)i also tried using
    statement.execute("do exclusive.fxp") and
    statement.execute("do exclusive.prg")I got the same error.
    Dont know what else to do.Can you please suggest some way to work around.

  • Calling from App_Code/Data folder files through as3

    Can i call in App_Code/Data folder files through as3  ? (from Hosting server)
    Like this....
    var myXML:XML;
    var myLoader:URLLoader = new URLLoader();
    myLoader.load(new URLRequest("App_Data/xmlfile.xml"));
    myLoader.addEventListener(Event.COMPLETE, processXML);
    function processXML(e:Event):void
              myXML = new XML(e.target.data);
              mytext.text = myXML;
    or
    var myLoader:Loader = new Loader();
    var url:URLRequest = new URLRequest("App_Code/sample.swf");
    myLoader.load(url);                                  
    addChild(myLoader);
    myLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
    function ioErrorHandler(e:IOErrorEvent):void{
      trace(e.text);
    i'm getting errors.......

    this is xml error:
    Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://www.websitename.com/App_Data/xmlfile.xml
    this is swf error:
    SecurityError: Error #2000: No active security context.

  • Error while deploying EAR file through SDM

    Hi All,
    I am deploying EAR file through SDM. Its taking too much time to deploy in the 3rd stage (its just a simple hello file for testing purpose and its still in that stage for 2 hours).
    When I see the log, I can see some fata error. Please suggest me what should I do. 
    ==
    Oct 15, 2008 4:31:44 PM  Info: SDM started successfully.
    Oct 15, 2008 4:33:21 PM  Info: Opened client connection to sapretail (IP address
    sapretail/172.20.177.203, remote port 58645)
    Oct 15, 2008 4:33:23 PM  Info: Request for Logon as admin accepted
    Oct 15, 2008 4:39:07 PM  Info: Loading archive '/usr/sap/trans/EPS/sap.comwdtu
    torial~ex1.ear'
    Oct 15, 2008 4:40:50 PM  Info: Actions per selected component:
    Oct 15, 2008 4:40:50 PM  Info: Initial deployment: Selected development componen
    t 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.14.12.51.57' will be deployed.
    Oct 15, 2008 4:44:41 PM  Info: Saved current Engine state.
    Oct 15, 2008 4:44:48 PM  Fatal: State BeforeNextDeployment can't process event I
    nitiateDeployment
    The reason I am doing through SDM because while deploying through NWDS its throwing an error
    Oct 13, 2008 12:44:41 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : sapretail
    SDM port : 50118
    URL to deploy : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp41002sap.comwdtutorial~ex1.ear
    Deployment exception : Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Inner exception was :
    Server sapretail did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server sapretail at port 50118: sapretail
    Please suggest a solution.
    Regards,
    Jitender

    Now, when I deploy through NWDS, I get the following error.
    Result
    => deployment aborted : file:/C:/DOCUME1/231477/LOCALS1/Temp/temp51346sap.comwdtutorial~ex1.ear
    Aborted: development component 'wd/tutorial/ex1'/'sap.com'/'LOKAL'/'0.2008.10.15.21.04.16':Caught exception while checking the login credentials for SAP J2EE Engine. Check whether the SAP J2EE Engine is up and running.com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [sapretail] with user name: [J2EE_ADMIN]                     Check your login information.                     Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: Cannot authenticate the user.] (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
    Deployment exception : The deployment of at least one item aborted

  • Error in loading data into essbase while using Rule file through ODI

    Hi Experts,
    Refering my previous post Error while using Rule file in loading data into Essbase through ODI
    I am facing problem while loading data into Essbase. I am able to load data into Essbase successfully. But when i used Rule file to add values to existing values I am getting error.
    test is my Rule file.
    com.hyperion.odi.essbase.ODIEssbaseException: com.hyperion.odi.essbase.ODIEssbaseException: Cannot put olap file object. Essbase Error(1053025): Object [test] already exists and is not locked by user [admin@Native Directory]
    at org.apache.bsf.engines.jython.JythonEngine.exec(JythonEngine.java:146)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.execInBSFEngine(SnpScriptingInterpretor.java:346)
    at com.sunopsis.dwg.codeinterpretor.SnpScriptingInterpretor.exec(SnpScriptingInterpretor.java:170)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.scripting(SnpSessTaskSql.java:2458)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:48)
    at oracle.odi.runtime.agent.execution.cmd.ScriptingExecutor.execute(ScriptingExecutor.java:1)
    at oracle.odi.runtime.agent.execution.TaskExecutionHandler.handleTask(TaskExecutionHandler.java:50)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:540)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:338)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:272)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:263)
    at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:822)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:83)
    at java.lang.Thread.run(Thread.java:662)
    from com.hyperion.odi.common import ODIConstants
    from com.hyperion.odi.connection import HypAppConnectionFactory
    from java.lang import Class
    from java.lang import Boolean
    from java.sql import *
    from java.util import HashMap
    # Get the select statement on the staging area:
    sql= """select C1_HSP_RATES "HSP_Rates",C2_ACCOUNT "Account",C3_PERIOD "Period",C4_YEAR "Year",C5_SCENARIO "Scenario",C6_VERSION "Version",C7_CURRENCY "Currency",C8_ENTITY "Entity",C9_VERTICAL "Vertical",C10_HORIZONTAL "Horizontal",C11_SALES_HIERARICHY "Sales Hierarchy",C12_DATA "Data" from PLANAPP."C$_0HexaApp_PLData" where (1=1) """
    srcCx = odiRef.getJDBCConnection("SRC")
    stmt = srcCx.createStatement()
    srcFetchSize=30
    #stmt.setFetchSize(srcFetchSize)
    stmt.setFetchSize(1)
    print "executing query"
    rs = stmt.executeQuery(sql)
    print "done executing query"
    #load the data
    print "loading data"
    stats = pWriter.loadData(rs)
    print "done loading data"
    #close the database result set, connection
    rs.close()
    stmt.close()
    Please help me on this...
    Thanks & Regards,
    Chinnu

    Hi Priya,
    Thanks for giving reply. I already checked that no lock are available for rule file. I don't know what's the problem. It is working fine without the Rule file, but throwing error only when using rule file.
    Please help on this.
    Thanks,
    Chinnu

  • Error no. 4 in SAPGUI during graphic call or file transfer.

    Hi,
    In the landscape there are still 46b sap version, i have some functional queries that when i executes go to the sap graphic screen and it throws with no output. I understand that that it works in ECC version but not for 46b.
    This issue is related to SAPGUI, as i have the latest sapgui installed 710 that works well for ECC.
    But if i input the parameter in sap 46b system , and execute to get the graphic chart i get this:
    The Generation of Graphs for Stock Movements in the MC49 Transaction.
    When you call a hierarchy graphic, the following error messages are displayed
    1. 'Too much data in a table or too many tables defined
    2. E4: error writing to XC pipe: child #1 ( id: STAT ); reclen12
    3. Error no. 4 in SAPGUI during graphic call or file transfer.
    I have also look in to note 316232, 361222, 96885. for this but  this says to upgrade the sapgui,which is already in.
    What is the solution for this.
    Regards,
    Chetan.

    Take a look at this thread.  This may provide you some guidance as it appears that Error has been encountered before.
    [Link Here|Error no. 4 in SAPGUI with Graphics call or file  transfer;
    Regards,
    Zecher

  • Error while running executable file through java in WinNT

    I would like to run an executable file with Java.
    - If I try with notepad or paint, i.e. Windows Applications,
      I have no problem.
    - I also can run Non-Windows-Own Applications, except one.
      I get an error message, if I want to run this program through Java.
    I have tried following commands to run an executable file.
    Runtime.getRuntime().exec("cmd.exe /c "+command);
    Runtime.getRuntime().exec("cmd.exe /c start "+command);
    Runtime.getRuntime().exec("cmd.exe /c start /wait "+command);
    Runtime.getRuntime().exec("cmd.exe /k start "+command);
    command : the path to the executable file
    I can run the application directly, if I click the icon on desktop,
    but not through Java.
    here is the error message I get
    screenshot : http://www.aykut.de/error_message.jpg
    Text : "Security Check failure"
            The Logon System has been tampered with.
            The Administrator will need to re-install.
    my Idea :
    The application is "old".
    I think it was written for Win 3.1.
    Therefore I don't know if there is any other
    possibilty to run a "DOS Exe File" through Java.

    I have just figured out how it works,
    if somebody else here in forum have this problem,
    here is the solution :
    String path = "F:\...\...\Application.exe";
    String envDir = path.substring(0, path.lastIndexOf("\\"));
    String[] command = {"cmd.exe", "/c", "start", "/wait", "/D"+envDir, path};
    Process process = Runtime.getRuntime().exec(command);
    "start /Dpath" => path: environment directory F:\...\...\
    "start /wait" => wait until Application.exe terminates
    if you use Win95 or Win98 use command.com instead of cmd.exe
    Aykut

  • Upload and Download file through RFC called by java

    We are trying to download/upload file through rfc function called by java(JCO),In the rfc function,we use WS_DOWNLOAD,but it does not work.
    Any one know about this,Please help ,thanks very much.
    Message was edited by: gw gw

    Hi gw,
    This question looks a little confusing to me.
    WS_DOWNLOAD is used to download files from SAP to the presentation server (your PC).  It will not work through RFC.
    BUT, also if you want to access a function module via RFC is must be RFC enabled (as Anand pointed out).
    AND WS_DOWNLOAD uses a PUSH approach.  It pushes a file to the PC from ABAP.  So even if the two points above weren't a problem it still would not be suitable for what you are doing.
    Perhaps you could explain a little what you are trying to achieve.
    Cheers,
    Brad

  • Error no. 4 in SAPGUI with Graphics call or file  transfer

    Hi Experts,
    I have a requirement that is " I need to display the selected data from database table in bar chart".
    I am using the Function Module " GRAPH_MATRIX_3D ".
    I am getting the following error message.
    " Error no. 4 in SAPGUI with Graphics call or file  transfer "
    Please can any one help me on this,
    It is very urgent I need to deliver this to client very soon.
    Please.....
    Thanks
    Basu

    Hi,
    have a look at the pdf that comes with the download package. It describes how to structure your data (depending on the chart type).
    Use the Chart Designer to create your customizing settings (chart type, colors etc) and save them as a customizing XML file.
    Finally have a look at report GRAPHICS_IGS* that shows how to use the XML in your own report and send them to the IGS (by using the class CL_IGS_CHART_ENGINE).
    Regards, Kai

  • When I call VI on Linux from Teststand on Windows using TCP/IP I get "file not found error".any sugeestions?

    I am trying to execute a VI running on Linux from Teststand running on windows 2000 prof ,both running on two different machines.I used TCP/IP for the interface using the following steps on Labview VI:tools>options>VIserver>TCP/IP and gave the ip address of both the machines.When I gave the file path as c:\home\test.vi in Edit labview Vi call window(the Vi in linux is stored in /home/test.vi)and also in remote vi path:/home/test.vi,I get a file not found error.The teststand version is 3.0 and labview is 7.0.Any idea why this is happening and any solutions?

    priya guru,
    Here is a knowledge base that addresses your question: �How do I call test VIs that reside on a non-Windows platform from TestStand?�
    You also need to set TCP/IP Access found in Tools->Options->'VI Server: TCP/IP Access'. Make sure that you list the IP address in the Access List to allow TCP/IP access to that machine. Finally you need to specify which VIs are accessible to remote applications. Open up Tools->Options->'VI Server: Exported VIs' and provide paths to the VIs you wish to be remotely accessible.
    I have attached an example VI that demonstrates VI Server in action. Please post back if you are still having problems. Good luck!
    Cr
    aig H.
    National Instruments
    Attachments:
    Remote_Run_--_VI_Server.zip ‏88 KB

  • CS5 opening file from file server through explorer gets file not found error

    Hi There,
    Has anyone come across an issue with CS5 where they open an ai file through Windows Explorer and gets an error file not found after CS5 has started? Opening through CS5's file > open option does not produce the same error and seems to only error when opening by double clicking on the ai file. Is this a possible issue with shellex open handler registry key?
    Any help would be greatly appreciated.

    Opening files directly from the server can produce errors and damage files. It is generally not advised.
    http://kb2.adobe.com/cps/327/327749.html

  • Memory Management, Crit Structure Corrupt, Bad Pool Caller, ntfs file system error

    So after freshly installing Win 8.1 I was happy, untill I started to play some games that I previously played on Win 7, I've started to get a whole heap of errors, I did have more written down but have lost the bit of paper they were written on. 
    Here are the list of errors I can remember.
    Memory Management, Crit Structure Corrupt, Bad Pool Caller, ntfs file system error
    Specs:
    Operating System
    Windows 8.1 Pro 64-bit
    CPU
    AMD Athlon II X2 250
    35 °C
    Regor 45nm Technology
    RAM
    6.00GB Dual-Channel DDR2 @ 400MHz (5-5-5-18)
    Motherboard
    ASUSTeK Computer INC. M3N-H/HDMI (Socket AM2 )
    40 °C
    Graphics
    SyncMaster (1440x900@60Hz)
    SAMSUNG (1440x900@60Hz)
    ATI Radeon HD 4800 Series (Microsoft Corporation - WDDM v1.1) (Sapphire/PCPartner)
    Storage
    698GB Western Digital WDC WD7500AAKS-00RBA0 ATA Device (SATA)

    Adam
    These are Related to
    atikmdag.sys ATI Radeon Kernel Mode Driver.  Yours is 2+ years old.  I would update to the newest driver available.
    Microsoft (R) Windows Debugger Version 6.3.9600.16384 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Ken\Desktop\A040614-65203-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    ************* Symbol Path validation summary **************
    Response Time (ms) Location
    Deferred SRV*H:\symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: SRV*H:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 8 Kernel Version 9600 MP (2 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 9600.16384.amd64fre.winblue_rtm.130821-1623
    Machine Name:
    Kernel base = 0xfffff803`be013000 PsLoadedModuleList = 0xfffff803`be2da9b0
    Debug session time: Mon Apr 7 00:35:03.785 2014 (UTC - 4:00)
    System Uptime: 0 days 0:08:48.334
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 3B, {c0000005, fffff80001cf7d73, ffffd0002305c470, 0}
    *** WARNING: Unable to verify timestamp for atikmdag.sys
    *** ERROR: Module load completed but symbols could not be loaded for atikmdag.sys
    Probably caused by : atikmdag.sys ( atikmdag+70d73 )
    Followup: MachineOwner
    0: kd> !analyze -v
    * Bugcheck Analysis *
    SYSTEM_SERVICE_EXCEPTION (3b)
    An exception happened while executing a system service routine.
    Arguments:
    Arg1: 00000000c0000005, Exception code that caused the bugcheck
    Arg2: fffff80001cf7d73, Address of the instruction which caused the bugcheck
    Arg3: ffffd0002305c470, Address of the context record for the exception that caused the bugcheck
    Arg4: 0000000000000000, zero.
    Debugging Details:
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    FAULTING_IP:
    atikmdag+70d73
    fffff800`01cf7d73 8a040a mov al,byte ptr [rdx+rcx]
    CONTEXT: ffffd0002305c470 -- (.cxr 0xffffd0002305c470;r)
    rax=0000000000000000 rbx=ffffcf80021783a0 rcx=ffffcf8002334ff5
    rdx=0000307ffdccb010 rsi=ffffcf8004734470 rdi=ffffcf80021783a0
    rip=fffff80001cf7d73 rsp=ffffd0002305cea8 rbp=ffffd0002305cf00
    r8=0000000000000006 r9=0000000000000000 r10=0000000000000384
    r11=ffffcf8002334ff0 r12=0000000000000001 r13=ffffcf8004734470
    r14=0000000000000000 r15=ffffcf8004734470
    iopl=0 nv up ei ng nz na po nc
    cs=0010 ss=0018 ds=002b es=002b fs=0053 gs=002b efl=00010286
    atikmdag+0x70d73:
    fffff800`01cf7d73 8a040a mov al,byte ptr [rdx+rcx] ds:002b:00000000`00000005=??
    Last set context:
    rax=0000000000000000 rbx=ffffcf80021783a0 rcx=ffffcf8002334ff5
    rdx=0000307ffdccb010 rsi=ffffcf8004734470 rdi=ffffcf80021783a0
    rip=fffff80001cf7d73 rsp=ffffd0002305cea8 rbp=ffffd0002305cf00
    r8=0000000000000006 r9=0000000000000000 r10=0000000000000384
    r11=ffffcf8002334ff0 r12=0000000000000001 r13=ffffcf8004734470
    r14=0000000000000000 r15=ffffcf8004734470
    iopl=0 nv up ei ng nz na po nc
    cs=0010 ss=0018 ds=002b es=002b fs=0053 gs=002b efl=00010286
    atikmdag+0x70d73:
    fffff800`01cf7d73 8a040a mov al,byte ptr [rdx+rcx] ds:002b:00000000`00000005=??
    Resetting default scope
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: VERIFIER_ENABLED_VISTA_MINIDUMP
    BUGCHECK_STR: 0x3B
    PROCESS_NAME: csrss.exe
    CURRENT_IRQL: 0
    ANALYSIS_VERSION: 6.3.9600.16384 (debuggers(dbg).130821-1623) amd64fre
    LAST_CONTROL_TRANSFER: from fffff800025cf3d7 to fffff80001cf7d73
    STACK_TEXT:
    ffffd000`2305cea8 fffff800`025cf3d7 : ffffcf80`04734470 ffffcf80`04734470 00000000`00000000 ffffcf80`01f52450 : atikmdag+0x70d73
    ffffd000`2305ceb0 ffffcf80`04734470 : ffffcf80`04734470 00000000`00000000 ffffcf80`01f52450 ffffd000`2305cf00 : atikmdag+0x9483d7
    ffffd000`2305ceb8 ffffcf80`04734470 : 00000000`00000000 ffffcf80`01f52450 ffffd000`2305cf00 fffff800`025f48d3 : 0xffffcf80`04734470
    ffffd000`2305cec0 00000000`00000000 : ffffcf80`01f52450 ffffd000`2305cf00 fffff800`025f48d3 ffffcf80`04734470 : 0xffffcf80`04734470
    FOLLOWUP_IP:
    atikmdag+70d73
    fffff800`01cf7d73 8a040a mov al,byte ptr [rdx+rcx]
    SYMBOL_STACK_INDEX: 0
    SYMBOL_NAME: atikmdag+70d73
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: atikmdag
    IMAGE_NAME: atikmdag.sys
    DEBUG_FLR_IMAGE_TIMESTAMP: 4fdf9bbd
    STACK_COMMAND: .cxr 0xffffd0002305c470 ; kb
    FAILURE_BUCKET_ID: 0x3B_VRF_atikmdag+70d73
    BUCKET_ID: 0x3B_VRF_atikmdag+70d73
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:0x3b_vrf_atikmdag+70d73
    FAILURE_ID_HASH: {1ec4cdaf-008d-03dd-4ca9-ade1993441da}
    Followup: MachineOwner
    Wanikiya and Dyami--Team Zigzag

  • SBWP - Error no. 11 in SAPGUI with Graphics call or file transfer

    Hello,
    I need help, Iu2019m trying to attach a file in a workflow, transaction SBWP, but the  following error occurs Error no. 11 in SAPGUI with Graphics call or file transfer. Does anyone know what can be the reason?
    Thank you and kind regards,
    helena

    Hi,
    have a look at the pdf that comes with the download package. It describes how to structure your data (depending on the chart type).
    Use the Chart Designer to create your customizing settings (chart type, colors etc) and save them as a customizing XML file.
    Finally have a look at report GRAPHICS_IGS* that shows how to use the XML in your own report and send them to the IGS (by using the class CL_IGS_CHART_ENGINE).
    Regards, Kai

Maybe you are looking for

  • Applet not showing in browser OR appletviewer window not appearing

    hi 1. I have small java code - hello.java import java.awt.Graphics; public class hello extends java.applet.Applet public void paint(Graphics g) g.drawString("Hello java...................",600,300); which correctly compiled 2. then I wrote an html fi

  • Help required!  - K700i and JavaScript

    Have just upgraded to a Sony Ericsson K700i and am having trouble access some web pages as it says either my browser does not support JavaScript or the JavaScript has been de-activated. As i don't know how to de-activate the JavaScript i'm sure that'

  • N8 Feature or Flaw

    If I place the N8 on a table camera down, I can't hear the phone ringing as the speaker is an integrated in the camera face, so naturally I turn up the ring volume. If I place the camera screen down I can hear the ringer but can't see the notificatio

  • Mandatory fields while creating masters in SAP B1

    Hi All can some body tell if is there any manual where i get to know the mandatory fields while creating the masters in SAP B1 9.0 Thanks Nidhi Trivedi

  • Root exception is weblogic.rjvm.PeerGoneException:

    I have a problem doing the Look onto the Weblogic server.           Here is the code I use in a method for this purpose and call the           method from main(). I paste the code below (enclosed within "CODE           BEGINS", "CODE ENDS")