4.0 EA1 - Stops after entering Java location

Hi
I have a windows 7 64 bit laptop with a previous version of SQL Developer 3.2.2 and Oracle 11.2.0.3 DB installed.
When I start SQL Developer  (sqldeveloper.exe) it prompts me to enter the location of the JDK 1.7 (C:\Program Files\Java\jdk1.7.0_25).
After this the SQL Developer window closes and does not report an error message.
Any ideas?
Thanks
Brendan

Hi Brendan,
Just put some thoughts down and some ideas, I do not think I have put my finger on the problem.
I can follow up a little by email if you find going back and
forth on the forum too hit or miss (until we have found the issue).
-Turloch O'Tierney turloch(dot)otierney(at)oracle(dot)com (works Dublin time)
SQLDeveloper Team
Brendan Ace Director you are at DIT?
That rings a bell - visited your web page - I cannot remember the specific SQLDeveloper connection though. (I did a quick check of forum/email)
The situation is one of the following:
It is a known problem I just have not guessed it yet.
   (It could be your AppData...\SQL Developer\system4.0.0.12.27 (i.e. the latest) is corrupt - try as a different user (or rename the system4.0.0.... directory and try again)
    It could be the upgrade of your old settings did not work - try running as a different user that (1/has not used sqldeveloper or 2/ just do not upgrade (when prompted) in the new user))
It is an uncommon environment problem - particular java or windows build or version - (I have not updated my Java 7 JDK recently - still on 1.7.0.11)
   (Can you try another PC with a different configuration?)
It is a bug I need to log and fix or have fixed for next release. To log it I really want to have a testcase for me (or another developer) to debug.
From this release we use OSGI to dynamically load extensions so that is the new new thing that might break in an Early Adopter.
If it was Linux I would use strace (gives too much information though) - not sure of the standard debugging tools in windows -
or quite how to access the java debugging/tracing tools from a user (non developer) perspective. It has not reached the database yet
- so it is too early for Oracle database tracing tools.
I may ask for assistance from support/developers - if you have a paid database license you can log an ticket and get full official Oracle support service - Oracle Support would be more familiar with general environment issues.
Edited by Turloch: Correction: note: From the release notes:
Support
All SQL Developer 4.0 Early Adopter issues can be reported on the Oracle SQL Developerforum. Mark the subject with 4.0EA1.
Production Releases - you are supported by Oracle Support under your current database Support license for SQL Developer production releases. Log SQL Developer bugs and issues using My Oracle Support for the product.
Message was edited by: TurlochO'Tierney

Similar Messages

  • Epson PictureMate Shows "Stopped" After Last Java and Security Updates

    Hi,
    After installing the following updates ("Final Cut Pro Update" (5.1.3), "Java for Mac OS X 10.4, Release 5" (5.0), "Security Update 2007-002 (PowerPC)" (1.0), "Security Update 2007-001" (1.0) and "Daylight Saving Time Update" (1.0)). My Epson PictureMate started showing the dreaded "Printer Stopped" issue noted y many other on many other printers.
    I've tried the Printer Setup Utility "reset printing system", removing and adding back the printer etc. The Epson Photo 820 still works fine. The PictureMate will also work fine from any other account. The account I'm using it in is not an admin acocunt, but a Standard account. The other family accounts can also use the printer, so the issue is local to my 1 main user.
    I've downloaded and tried the "PSR" utility from www.fixamac.com. The utility doesn't find anything wrong, but it does complain about CUPS permissions (as did Apple's Disk Utility). I'm thinking the resetting of the printer system deletes a number of directories and when they are recreated they seem to come back with permissions the system (and PSR) doesn't like. Both utilities repair and don't find the issues again, but no joy on the printing.
    I've also dumped the preferences with no change.
    Since other users can print fine, I'm assuming CUPS and the printer drivers are OK. Any idea what other secret files in my User folder could be messed up and affecting the single printer?
    Thanks in advance.
    Sean
    PowerMac G5 Dual 2.0, 2.5GB RAM, 10.4.8   Mac OS X (10.4.8)  

    There are a LOT of Java based exploits, so even 3.6.11 isn't fully patched, there are cross-platform exploits, and bots running wild.
    Did you also remove your cache folders?
    Firefox: I use 4.0 betas, NoScript I feel is a must.
    From MacIntouch:
    Security software vendors warn of an active, Java-based Trojan Horse that affects Mac users. Disabling Java in your web brower is a highly-recommended counter-measure. Also flushing DNS cache.
    http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/
    Adobe, Oracle, Nvidia.... but actually leaving it to users to get the latest Java on their own is the same as what happens with Windows.
    Mozilla group urged its users to immediately:
    Disable JavaScript in Firefox.
    Using NoScript Add-on.
    http://www.zdnet.com/blog/security/firefox-zero-day-under-attack-at-nobel-prize- site/7550

  • I am trying to setup my new time capsule but it is not working. after entering the airport utility and locating the TC, after I tell the program to continue, the unit just disappear and the setup menu says there is an error. Any idea of what is happening?

    I am trying to setup my new time capsule but it is not working. after entering the airport utility and locating the TC, after I tell the program to continue, the unit just disappear from the menu and the setup menu says there is an error. I tried using the wireless connection, and also the cable, but none worked. Any idea of what could be happening?

    What are you setting it up as.. join wireless network .. the very worst setup, it will disappear.. reboot the whole network in order modem. router TC.. clients and it will likely reappear.
    Tell us what network setup you are using..
    If you setup with cable to a computer completely isolated from the network with TC also isolated.. finish the setup of everything you want. .before update.. then plug it into the network. .then restart everything in correct order.. it will work most of the time.

  • Call export with java function stop after a time

    Hi
    we make a function java for call exp.exe.
    We pass at java's function a string
    we use this code
    /* * ExecuteCmd.java * This is a sample application that uses the Runtime Object * to execute a program. * */
    /* Import the classes needed for Runtime, Process, and Exceptions */
    import java.lang.*;
    //import java.lang.Process;
    import java.io.*;
    //import java.lang.InterruptedException;
    class ExecuteCmd {
    public static int Cmd(String args) {
    try {
    /* Execute the command using the Runtime object and get the
    Process which controls this command */
    Process p = Runtime.getRuntime().exec(args);
    /* Use the following code to wait for the process to finish
    and check the return code from the process */
    try {
    p.waitFor();
    /* Handle exceptions for waitFor() */
    } catch (InterruptedException intexc) {
    //System.out.println("Interrupted Exception on waitFor: " + intexc.getMessage());
         return -1;
    return p.exitValue();
    /* Handle the exceptions for exec() */
    } catch (IOException e) {
    // System.out.println("IO Exception from exec : " + e.getMessage());
    // e.printStackTrace();
         return 1;
    after a time the export begin but stop after some time.
    If the schema is little like not table but some sequence the export gone normally but if the schema is big the export stop after a time but we dont have a trace with log.
    Can you help

    I think you need to gobble up the output from the command you are exec'ing. If the exec'd command fills up your command space buffer it will stop when the buffer is full.
    Try adding the lines
    String s = new String();
    while ((s = p.readLine())!=null)
    after the try block to gobble up the output from your command call.

  • I have a problem with my viber.It has stopped working.I tried reinstalliing it again .On the setup option after entering my phone number and continuing ..it either exists or gives no service message .

    I have a problem with my viber.It has stopped working.I tried reinstalling it again .On the setup option after entering my phone number and continuing ..it either exists or gives no service message .My other applications are working fine ..other applications that require internet too are working fine.

    Please get in touch with Viber's customer support.

  • In ADDin JAVA upgrade , SAPJup is getting stopped after CHANGE_UME phase

    Hi ,
    We are upgrading our ECC 5.0 (ABAP + JAVA) to ERP2005 EHP4 SP level 5.
    In the Downtime phase of the upgrade, SAP Jup is automatically getting stopped after CHANGE_UME phase. I am not able to find out the error. Why it is getting stopped even i started it many times, it goes to the CHANGE_UME phase then automatically stopped.
    There is no error in CHANGE_UME_***_09.LOG file.
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[J:\DV2ERPUpgrade\jupgrade\log\CHANGE_UME_***_01.LOG]/>
    <!PATTERN[CHANGE_UME_***_01.LOG]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    #1.5 #C000AC101E650000000003F25B6DF84B00048B183E648670#1278836149094#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:758)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:758)#Java###Phase has been started.#1#UPGRADE/UPGRADE/CHANGE_UME#
    #1.5 #C000AC101E650000000003F35B6DF84B00048B183E648670#1278836149094#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:759)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.initialize(AbstractPhaseType.java:759)#Java###Phase type is .#1#com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling#
    #1.5 #C000AC101E650000000003F45B6DF84B00048B183E648670#1278836149094#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#Java###  Parameter =#2#connect#standard#
    #1.5 #C000AC101E650000000003F55B6DF84B00048B183E648670#1278836149094#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#Java###  Parameter =#2#inputFile#UMEHandling.xml#
    #1.5 #C000AC101E650000000003F65B6DF84B00048B183E648670#1278836149094#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.logParameters(AbstractPhaseType.java:412)#Java###  Parameter =#2#action#change#
    #1.5 #C000AC101E650000000003F75B6DF84B00048B183E64FF88#1278836149125#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.checkParameters(PhaseTypeUMEHandling.java:233)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.checkParameters(PhaseTypeUMEHandling.java:233)#Java###Checking phase parameters .#1#action, connect, inputFile#
    #1.5 #C000AC101E650000000003F85B6DF84B00048B183E64FF88#1278836149125#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.checkParameters(PhaseTypeUMEHandling.java:249)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.checkParameters(PhaseTypeUMEHandling.java:249)#Java###Phase parameters have been checked. All required phase parameters have been set.#1#3#
    #1.5 #C000AC101E650000000003F95B6DF84B00048B183E6578A0#1278836149156#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.execute(PhaseTypeUMEHandling.java:169)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j2ee.phases.PhaseTypeUMEHandling.execute(PhaseTypeUMEHandling.java:169)#Java###Backing up UME settings from configuration manager.##
    #1.5 #C000AC101E650000000003FA5B6DF84B00048B183E6578A0#1278836149156#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j630.configutils.ConfigUtils630#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j630.configutils.ConfigUtils630#Java###Reading properties of service on node .#2#com.sap.security.core.ume.service#server#
    #1.5 #C000AC101E650000000003FB5B6DF84B00048B183E66E7D0#1278836149250#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j630.configutils.ConfigUtils630#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j630.configutils.ConfigUtils630#Java###Batch config tool has been initialized.##
    #1.5 #C000AC101E650000000004025B6DF84B00048B183EA4A868#1278836153297#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j630.configutils.ConfigUtils630#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j630.configutils.ConfigUtils630#Java###Reading properties of service on node .#2#com.sap.security.core.ume.service#ID8895050#
    #1.5 #C000AC101E650000000004035B6DF84B00048B183EA4A868#1278836153297#/System/Server/Upgrade/Phases/UPGRADE/UPGRADE/CHANGE_UME##com.sap.sdt.j630.configutils.ConfigUtils630#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.j630.configutils.ConfigUtils630#Java###Batch config tool has been initialized.##
    My ABAP upgrade is ruuning fine in the downtime phase.
    Please suggest me ASAP.
    Thanks,
    Chetan

    Hello - we are facing the exact same problem while uprading a dual stack system.  How did you fix the problem?  We also opened up a ticket to SAP and we are waiting to hear back from them.  Any information you can share will be greatly appreciated.  
    Thank you.
    Nameeta

  • Installation of Flash stops after 30% complete, plugins and java are enabled in the browser and all browsers are closed.

    installation of Flash stops after 30% complete, plugins and java are enabled in the browser and all browsers are closed.

    Hi,
    I'm assuming you're machine is OS X (please include this in the future, avoids assumptions).  Are you using anti-virus software, if so, if you stop/exit the anti-virus software, does the installation proceed?
    If not, or if the installation still does not proceed after stopping the anti-virus software, please try the offline installer, posted at the bottom of the Installation problems | Flash Player | Macpage, in the 'Still having problems' section.
    Maria

  • In va02 tocde after entering the data only storage location field is not saving.why?

    Hai
    in va02 tcode after entering the data only storage location field is not saving. why?

    Hi Purnaiah,
    Are you using any user exit for this or not?
    Check for the below exit, this may be the place where you can implement your code for saving the value.
    SAP MV45AFZZ calling the user exit with a form USEREXIT_SAVE_DOCUMENT
    Regards,
    Rafi

  • Java? Stopping after criteria has been met?

    Hi, I have this piece of code I have written;
    num2 = Integer.parseInt(JOptionPane.showInputDialog("Enter second number"));
    if (num1<0){
    negative = ("You have entered a negative number!");
    JOptionPane.showMessageDialog (null, negative);
    num3 = Integer.parseInt(JOptionPane.showInputDialog("Enter third number"));
    if (num1<0){
    negative = ("You have entered a negative number!");
    JOptionPane.showMessageDialog (null, negative);
    if ((num1 == num2) && (num1 == num3))
    result = ("Your triangle is equalateral, all sides are the same length!");
    JOptionPane.showMessageDialog (null, result);
    Everytime the user enters a negative number a message pops up saying "You have entered a negative number" BUT then it goes onto the second string and then third string.
    I have 3 strings, e.g.
    String 1 -> User enters 10
    String 2 -> User enters -19 = You have entered a negative number
    String 3 -> User enters 99
    How can I get the program to stop after the "You have entered a negative number message? Thanx.

    Hi,
    How can I get the program to stop after the "You have entered a negative number message?{code}
    If you want to terminate the currently running jvm use
    {code}
    System.exit(0);
    {code}
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                               

  • My husbands ipad2 keeps freezing on the screen, when he has entered the password what ever he working on stops after approx 2 minutes. It only started this morning and has been working perfectly prior to this.  I purchased this 64gb 3G machine via eBay

    My husbands ipad2 64gb 3G the screen keeps freezing. What ever you are working on stops after about 2  minutes the screen freezes and after another few moments you are required to put you password in again. It only started this morning and had been working perfectly until today. I purchased from eBay three weeks ago. If watching bbc new you can only watch for 2 minutes and same for video and games. Keeps coming back to screen saver where all icons are.  Sometimes we are to use the on off button to get it going again.  I set it up the same as my own iPad 32gb. Hope you can help? Thanks.

    Spilled water without flavorings and especially without sugar is something from which your computer may recover. The best thing to do is to shut off as quickly as possible and remove the battery pack. Place the computer in a sunny window with the lid open to promote evaporation of the water. On top of a refrigerator is also a warm perch that'll promote drying. It is difficult to say exactly how long it takes to dry the computer; that depends on ambient temperature and humidity, and how how water is in there.
    The biggest threat from the water is corrosion of metal parts, so drying quickly is a must. Also, water can form mineral salt deposits that can grow conductive dendrites between adjacent traces on printed circuit boards. The formation of dendrites is aggravated if you apply power before the machine is dried out. The worst damage would be if water managed to get in the breather hole of the hard drive - luckily, the way the drive is mounted, that would be fairly unlikely.
    Bill

  • Execution stops after retrieving the factory from the ServletContext while

    Hi,
    I just started working with Quartz, so I am clueless as to why I am getting this error. This is my first time tying to integrate Quartz 1.6.0 in a web app. I am using the JSF Framework. Although I have added the necessary jars I am still getting the error above: servlet.jar not loaded. If you follow the java code and server output you can see that after retrieving the factory from the ServletContext there is no further execution . Following is the definition of the class used for scheduling:
    Quartz Version: 1.6.0
    IDE : Netbeans 5.0
    AppServer: Tomcat 5.5
    *************************************** JAVA CODE *************************************
    * BirthdayScheduler.java
    * Created on May 20, 2008, 5:24 PM
    package com.csg.cs.cscomwebdev.servlet.timer;
    import java.io.*;
    import java.net.*;
    import java.util.Date;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.quartz.JobDetail;
    import org.quartz.SchedulerException;
    import org.quartz.SimpleTrigger;
    import org.quartz.impl.StdSchedulerFactory;
    import org.quartz.Scheduler;
    * @author Arijit Datta
    * @version
    public class BirthdayScheduler extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    out.close();
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    public void init()
    System.out.println(" ------------ STARTTING JOB --------------");
    // Retrieve the ServletContext
    ServletContext theApplicationsServletContext = this.getServletContext();
    // Retrieve the factory from the ServletContext
    StdSchedulerFactory factory =(StdSchedulerFactory)theApplicationsServletContext.getAttribute("QuartzFactory Servlet.QUARTZ_FACTORY_KEY");
    System.out.println(" ------------ FACTORY GOT --------------");
    try {
    // Retrieve the scheduler from the factory
    Scheduler scheduler = factory.getScheduler();
    System.out.println(" ------------ SCHEDULER GOT --------------");
    // Start the scheduler
    scheduler.start();
    System.out.println(" ------------ SCHEDULER STARTED --------------");
    //Creating a job
    JobDetail birthdayJobDetail = new JobDetail("birthdayReminderJob", scheduler.DEFAULT_GROUP, BirthdayReminderJob.class );
    System.out.println(" ------------ JOB CREATED --------------");
    //Creating a trigger
    SimpleTrigger birthdayJobtrigger = new SimpleTrigger("birthdayReminderTrigger",scheduler.DEFAULT_GROUP, new Date(),null,SimpleTrigger.REPEAT_INDEFINITELY, 60L * 1000L);
    System.out.println(" ------------ TRIGGER CREATED --------------");
    //Scheduling the job
    scheduler.scheduleJob(birthdayJobDetail,birthdayJobtrigger );
    System.out.println(" ------------ JOB SCHEDULED --------------");
    } catch (SchedulerException ex) {
    System.out.println(ex.getMessage());
    } ************************************* SECTION OF WEB.XML ************************
    <servlet>
    <description>Quartz Initializer Servlet</description>
    <servlet-name>QuartzInitializer</servlet-name>
    <servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet -class>
    <init-param>
    <param-name>shutdown-on-unload</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>start-scheduler-on-load</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>BirthdayScheduler</servlet-name>
    <servlet-class>com.csg.cs.cscomwebdev.servlet.timer.BirthdayScheduler< /servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet> *********************************** SERVER OUTPUT *******************************
    Using CATALINA_BASE: C:\Documents and Settings\165171\.netbeans\5.0\jakarta-tomcat-5.5.9_base
    Using CATALINA_HOME: D:\Program Files\netbeans-5.0\enterprise2\jakarta-tomcat-5.5.9
    Using CATALINA_TMPDIR: C:\Documents and Settings\165171\.netbeans\5.0\jakarta-tomcat-5.5.9_base\temp
    Using JAVA_HOME: C:\Program Files\Java\jdk1.5.0_02
    May 20, 2008 7:27:13 PM org.apache.coyote.http11.Http11Protocol init
    INFO: Initializing Coyote HTTP/1.1 on http-8084
    May 20, 2008 7:27:13 PM org.apache.catalina.startup.Catalina load
    INFO: Initialization processed in 766 ms
    May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardService start
    INFO: Starting service Catalina
    May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardEngine start
    INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
    May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    May 20, 2008 7:27:14 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(D:\Java Programs\cs\CSCOMWEBDEV\build\web\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase).
    log4j:WARN Please initialize the log4j system properly.
    ------------ STARTTING JOB --------------
    ------------ FACTORY GOT --------------
    May 20, 2008 7:27:15 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8084
    May 20, 2008 7:27:15 PM org.apache.jk.common.ChannelSocket init
    INFO: JK: ajp13 listening on /0.0.0.0:8009
    May 20, 2008 7:27:15 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/32 config=null
    May 20, 2008 7:27:15 PM org.apache.catalina.storeconfig.StoreLoader load
    INFO: Find registry server-registry.xml at classpath resource
    May 20, 2008 7:27:16 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 2802 ms Can anybody please help out? Where exactly am I going wrong?
    Thanks a lot!
    AD

    Your stop condition is "continue if true". This means that, unless you press the button, the while loop will stop after one iteration.
    First, you should change the termination condition to "stop if true".
    Then you should make the stop button "latch when released" (right-click..mechanical action). Else you don't have a well defined state after the program stops.
    You should decide on a reasonable loop rate and enter it for the wait control. (beter use a diagram constant if the value is always the same).
    Why do you need to continue reading in a loop? Are you expecting the response to change over time?
    Do you want to keep appending to the string indicator or only show the latest characters received?
    Maybe you also need a wait between the writing and reading?
    Delete the ms timer value indicator, it is completely useless.
    Do you get any error codes?
    Don't use the run continous button. Use the plain run button.
    What device are you communicating with? Do you have documentation?
    LabVIEW Champion . Do more with less code and in less time .

  • Dispatcher stop after few second

    Dear friend, I have restore database using BRRESTORE. My dispatcher is stopped after few second.  Developer trace is as below.:
    Pls. give me solution as soon as possible.. Thanks. in advance.
    trc file: "dev_disp", trc level: 1, release: "640"
    Mon Jun 13 08:38:11 2011
    kernel runs with dp version 136(ext=102) (@(#) DPLIB-INT-VERSION-136)
    length of sys_adm_ext is 312 bytes
    sysno      00
    sid        PRD
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    218
    intno      20020600
    make:      multithreaded, ASCII
    pid        6128
    ***LOG Q00=> DpSapEnvInit, DPStart (00 6128) [dpxxdisp.c   1104]
         shared lib "dw_xml.dll" version 218 successfully loaded
         shared lib "dw_xtc.dll" version 218 successfully loaded
         shared lib "dw_stl.dll" version 218 successfully loaded
         shared lib "dw_gui.dll" version 218 successfully loaded
         shared lib "dw_mdm.dll" version 218 successfully loaded
    Mon Jun 13 08:38:23 2011
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0234.qqq.nxst) took 12 seconds
    Mon Jun 13 08:38:40 2011
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 17 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3881]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpIPCInit2: start server >abcbl_PRD_00                            <
    DpShMCreate: sizeof(wp_adm)          16640     (832)
    DpShMCreate: sizeof(tm_adm)          2379840     (11840)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpShMCreate: sizeof(comm_adm)          192000     (384)
    DpShMCreate: sizeof(vmc_adm)          0     (364)
    DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 051B0040, size: 2675472)
    DpShMCreate: allocated sys_adm at 051B0040
    DpShMCreate: allocated wp_adm at 051B17D8
    DpShMCreate: allocated tm_adm_list at 051B58D8
    DpShMCreate: allocated tm_adm at 051B5900
    DpShMCreate: allocated wp_ca_adm at 053FA940
    DpShMCreate: allocated appc_ca_adm at 053FEF90
    DpShMCreate: allocated comm_adm_list at 05400700
    DpShMCreate: allocated comm_adm at 05400718
    DpShMCreate: allocated vmc_adm_list at 0542F518
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 0542F540
    DpShMCreate: allocated wall_adm at 0542F548
    MBUF state OFF
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 2457 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( abcbl) [dpxxdisp.c   10127]
    DpStartStopMsg: send start message (myname is >abcbl_PRD_00                            <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 218
    Release check o.K.
    Mon Jun 13 08:39:20 2011
    ERROR => W0 (pid 6032) died [dpxxdisp.c   12698]
    ERROR => W1 (pid 6132) died [dpxxdisp.c   12698]
    ERROR => W2 (pid 564) died [dpxxdisp.c   12698]
    ERROR => W3 (pid 196) died [dpxxdisp.c   12698]
    ERROR => W4 (pid 4512) died [dpxxdisp.c   12698]
    ERROR => W5 (pid 4600) died [dpxxdisp.c   12698]
    ERROR => W6 (pid 6064) died [dpxxdisp.c   12698]
    ERROR => W7 (pid 4552) died [dpxxdisp.c   12698]
    ERROR => W8 (pid 4520) died [dpxxdisp.c   12698]
    ERROR => W9 (pid 6060) died [dpxxdisp.c   12698]
    ERROR => W10 (pid 4528) died [dpxxdisp.c   12698]
    ERROR => W11 (pid 4376) died [dpxxdisp.c   12698]
    ERROR => W12 (pid 4560) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W13 (pid 4484) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W14 (pid 4488) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W15 (pid 1700) died [dpxxdisp.c   12698]
    ERROR => W16 (pid 4380) died [dpxxdisp.c   12698]
    ERROR => W17 (pid 4464) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W18 (pid 5932) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W19 (pid 4620) died [dpxxdisp.c   12698]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-6032 (SIGUSR2)
    ERROR => DpWpKill(6032, SIGUSR2) failed [dpxxtool.c   2508]
    killing W1-6132 (SIGUSR2)
    ERROR => DpWpKill(6132, SIGUSR2) failed [dpxxtool.c   2508]
    killing W2-564 (SIGUSR2)
    ERROR => DpWpKill(564, SIGUSR2) failed [dpxxtool.c   2508]
    killing W3-196 (SIGUSR2)
    ERROR => DpWpKill(196, SIGUSR2) failed [dpxxtool.c   2508]
    killing W4-4512 (SIGUSR2)
    ERROR => DpWpKill(4512, SIGUSR2) failed [dpxxtool.c   2508]
    killing W5-4600 (SIGUSR2)
    ERROR => DpWpKill(4600, SIGUSR2) failed [dpxxtool.c   2508]
    killing W6-6064 (SIGUSR2)
    ERROR => DpWpKill(6064, SIGUSR2) failed [dpxxtool.c   2508]
    killing W7-4552 (SIGUSR2)
    ERROR => DpWpKill(4552, SIGUSR2) failed [dpxxtool.c   2508]
    killing W8-4520 (SIGUSR2)
    ERROR => DpWpKill(4520, SIGUSR2) failed [dpxxtool.c   2508]
    killing W9-6060 (SIGUSR2)
    ERROR => DpWpKill(6060, SIGUSR2) failed [dpxxtool.c   2508]
    killing W10-4528 (SIGUSR2)
    ERROR => DpWpKill(4528, SIGUSR2) failed [dpxxtool.c   2508]
    killing W11-4376 (SIGUSR2)
    ERROR => DpWpKill(4376, SIGUSR2) failed [dpxxtool.c   2508]
    killing W12-4560 (SIGUSR2)
    ERROR => DpWpKill(4560, SIGUSR2) failed [dpxxtool.c   2508]
    killing W13-4484 (SIGUSR2)
    ERROR => DpWpKill(4484, SIGUSR2) failed [dpxxtool.c   2508]
    killing W14-4488 (SIGUSR2)
    ERROR => DpWpKill(4488, SIGUSR2) failed [dpxxtool.c   2508]
    killing W15-1700 (SIGUSR2)
    ERROR => DpWpKill(1700, SIGUSR2) failed [dpxxtool.c   2508]
    killing W16-4380 (SIGUSR2)
    ERROR => DpWpKill(4380, SIGUSR2) failed [dpxxtool.c   2508]
    killing W17-4464 (SIGUSR2)
    ERROR => DpWpKill(4464, SIGUSR2) failed [dpxxtool.c   2508]
    killing W18-5932 (SIGUSR2)
    ERROR => DpWpKill(5932, SIGUSR2) failed [dpxxtool.c   2508]
    killing W19-4620 (SIGUSR2)
    ERROR => DpWpKill(4620, SIGUSR2) failed [dpxxtool.c   2508]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1525
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Jun 13 08:39:30 2011
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Mon Jun 13 12:39:30 2011
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     6032 Ended         no      1   0             0                                                             
    1 DIA     6132 Ended         no      1   0             0                                                             
    2 DIA      564 Ended         no      1   0             0                                                             
    3 DIA      196 Ended         no      1   0             0                                                             
    4 DIA     4512 Ended         no      1   0             0                                                             
    5 DIA     4600 Ended         no      1   0             0                                                             
    6 DIA     6064 Ended         no      1   0             0                                                             
    7 DIA     4552 Ended         no      1   0             0                                                             
    8 DIA     4520 Ended         no      1   0             0                                                             
    9 DIA     6060 Ended         no      1   0             0                                                             
    10 DIA     4528 Ended         no      1   0             0                                                             
    11 DIA     4376 Ended         no      1   0             0                                                             
    12 DIA     4560 Ended         no      1   0             0                                                             
    13 UPD     4484 Ended         no      1   0             0                                                             
    14 ENQ     4488 Ended         no      1   0             0                                                             
    15 BTC     1700 Ended         no      1   0             0                                                             
    16 BTC     4380 Ended         no      1   0             0                                                             
    17 BTC     4464 Ended         no      1   0             0                                                             
    18 SPO     5932 Ended         no      1   0             0                                                             
    19 UP2     4620 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Mon Jun 13 12:39:30 2011
    ===========================

    THanks for reply  pls find  dev_wo file.
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Mon Jun 13 11:05:11 2011
    B  create_con (con_name=R/3)
    B  Loading DB library 'K:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' ...
    B  Library 'K:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'K:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.199)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    218
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        3776
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3776) [dpxxdisp.c   1164]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          16640     (832)
    M  DpShMCreate: sizeof(tm_adm)          2379840     (11840)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (364)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 051B0040, size: 2675472)
    M  DpShMCreate: allocated sys_adm at 051B0040
    M  DpShMCreate: allocated wp_adm at 051B17D8
    M  DpShMCreate: allocated tm_adm_list at 051B58D8
    M  DpShMCreate: allocated tm_adm at 051B5900
    M  DpShMCreate: allocated wp_ca_adm at 053FA940
    M  DpShMCreate: allocated appc_ca_adm at 053FEF90
    M  DpShMCreate: allocated comm_adm_list at 05400700
    M  DpShMCreate: allocated comm_adm at 05400718
    M  DpShMCreate: allocated vmc_adm_list at 0542F518
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 0542F540
    M  DpShMCreate: allocated wall_adm at 0542F548
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Mon Jun 13 11:05:12 2011
    M  calling db_connect ...
    C  Prepending E:\oracle\ora92 to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.WE8DEC' from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPPRD's password
    C  Connecting as /@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   0463A5C8   0463F654   0463F0F8
    C  Attaching to DB Server PRD (con_hdl=0,svchp=0463F04C,srvhp=0463FC24)
    C  Starting user session (con_hdl=0,svchp=0463F04C,srvhp=0463FC24,usrhp=04648404)
    C  Now '/@PRD' is connected (con_hdl 0, nls_hdl 0).
    C  *** ERROR => ORA-980 when accessing table SAPUSER
    [dbsloci.c    11772]
    C  Disconnecting from connection 0 ...
    C  Close user session (con_hdl=0,svchp=0463F04C,usrhp=04648404)
    C  Now I'm disconnected from ORACLE
    C  Try to connect with default password
    C  Connecting as SAPPRD/<pwd>@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   0463A5C8   0463F654   0463F0F8
    C  Starting user session (con_hdl=0,svchp=0463F04C,srvhp=0463FC24,usrhp=04648404)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4508]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11404]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#3 @ 428] [dblink  0428 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#3 @ 428] [dblink  0428 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1282]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   9696]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server abcbl_PRD_00 on host abcbl (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Mon Jun 13 11:05:12 2011
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        9881
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  255]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 3776) [dpnttool.c   357]

  • Black or blank screen with blinking cursor after entering Windows password

    This document pertains to all HP computers and tablets with Windows 7 and Windows 8 (8.1).
    You can also link directly to this document at this URL
    http://support.hp.com/us-en/document/c04572861 
    Use the following steps if your computer stops at a black screen with a blinking cursor after entering the Windows password.
    On the black screen, press Ctrl, Shift, ESC to open the Task Manager window.
    note:     If the Task Manager window does not open, see Troubleshooting Black Screen Displays with No Error Messages During Startup or Boot.
    Click the Process tab.
    Look for one or both of the following tasks:
    Run Once Wrapper
    Run Once Wrapper (32-bit)
    Right-click the task, and then click the End task button. Windows should start normally.
    On the Windows 8 start screen type Control Panel then click Control Panel in the search results. In Windows 7, click Start then type Control Panel, then click Control Panel in the search results.
    From the Windows Control Panel, go to Programs and Features or Add/Remove Programs.
    Remove any of the following programs. Additionally, remove any other suspected programs that are not listed.
    Remove these suspected programs:
    Binkiland
    SevenZip
    Unchecky
    Image Repair
    SolutionReal
    Vosteran
    JetClean
    Speed Browser
    Web Bar 2.0.5273.16044
    mypcbackup
    Speed Checker
    Wincheck
    Omega Plus
    Spy Clear
    Word Proser
    Optimizer Pro
    Spyware Clear with PC Tech Hotline
    WSE_Binkiland
    Pepper Zip
    Storm Watch
    WSE_Taplika
    Pro PC Cleaner
    Strong Signal
    WSE_Vosteran
    Safe Search
    Taplika
    To resolve all other black/blank screen issues at boot, see Troubleshooting Black Screen Displays with No Error Messages During Startup or Boot.
    To resolve virus and malware issues, see About Spyware, Adware, and Browser Hijacking Software and Using Windows 8 Defender to Prevent Virus and Spyware Problems
    I work for HP, supporting the HP Experts who volunteer their time and technical knowledge to help others.

    This is not what happens.  The screen goes black, no curser or anything, then it comes right back on to the same page I was on when it went out.  It doesn't happen when I login, it happens as I am on a webpage or playing a online game.

  • Problem description: Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom-.

    Problem description:
    Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom….     Help is much appreciated!
    EtreCheck version: 2.0.11 (98)
    Report generated 3. november 2014 kl. 01.23.41 CET
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro7,1
      1 2.4 GHz Intel Core 2 Duo CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 320M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 2:49:19
    Disk Information: ℹ️
      Samsung SSD 840 EVO 500GB disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (260.35 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
      /etc/sysctl.conf - Exists
      /etc/hosts - Count: 15
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/IPVanish.app
      [not loaded] foo.tap (1.0) Support
      [not loaded] foo.tun (1.0) Support
      /Applications/LaCie Desktop Manager.app
      [not loaded] com.LaCie.ScsiType00 (1.2.13 - SDK 10.5) Support
      [not loaded] com.jmicron.driver.jmPeripheralDevice (2.0.4) Support
      [not loaded] com.lacie.driver.LaCie_RemoteComms (1.0.1 - SDK 10.5) Support
      [not loaded] com.oxsemi.driver.OxsemiDeviceType00 (1.28.13 - SDK 10.5) Support
      /Applications/Private Eye.app
      [loaded] com.radiosilenceapp.nke.PrivateEye (1 - SDK 10.7) Support
      /Library/Application Support/HASP/kexts
      [not loaded] com.aladdin.kext.aksfridge (1.0.2) Support
      /System/Library/Extensions
      [loaded] com.hzsystems.terminus.driver (4) Support
      [not loaded] com.nvidia.CUDA (1.1.0) Support
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.sony.filesystem.prodisc_fs (2.3.0) Support
      [not loaded] com.sony.protocol.prodisc (2.3.0) Support
      /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
      [not loaded] com.roxio.TDIXController (2.0) Support
    Startup Items: ℹ️
      CUDA: Path: /System/Library/StartupItems/CUDA
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.digitalrebellion.EditmoteListener.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.intego.backupassistant.agent.plist Support
      [running] com.mcafee.menulet.plist Support
      [invalid?] com.mcafee.reporter.plist Support
      [loaded] com.nvidia.CUDASoftwareUpdate.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.orbicule.WitnessUserAgent.plist Support
      [loaded] com.xrite.device.softwareupdate.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [running] com.aladdin.aksusbd.plist Support
      [failed] com.aladdin.hasplmd.plist Support
      [running] com.edb.launchd.postgresql-8.4.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.intego.BackupAssistant.daemon.plist Support
      [loaded] com.ipvanish.helper.openvpn.plist Support
      [loaded] com.ipvanish.helper.pppd.plist Support
      [invalid?] com.mcafee.ssm.ScanFactory.plist Support
      [invalid?] com.mcafee.ssm.ScanManager.plist Support
      [running] com.mcafee.virusscan.fmpd.plist Support
      [loaded] com.mvnordic.mvlicensehelper.offline.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.orbicule.witnessd.plist Support
      [loaded] com.radiosilenceapp.nke.PrivateEye.plist Support
      [running] com.xrite.device.xrdd.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.digitalrebellion.SoftwareUpdateAutoCheck.plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      Skype Program (/Applications/Skype.app)
      GetBackupAgent Program (/Users/[redacted]/Library/Application Support/BeLight Software/Get Backup 2/GetBackupAgent.app)
      PhoneViewHelper Program (/Users/[redacted]/Library/Application Support/PhoneView/PhoneViewHelper.app)
      EarthDesk Core UNKNOWN (missing value)
      Dropbox Program (/Applications/Dropbox.app)
      AdobeResourceSynchronizer ProgramHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      i1ProfilerTray Program (/Applications/i1Profiler/i1ProfilerTray.app)
    Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0
      SiteAdvisor: Version: 2.0 - SDK 10.1 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      GarminGPSControl: Version: 3.0.1.0 Release - SDK 10.4 Support
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.2 Support
      F5 Inspection Host Plugin: Version: 6031.2010.0122.1 Support
      f5 sam inspection host plugin: Version: 7000.2010.0602.1 Support
    Safari Extensions: ℹ️
      Facebook Cleaner
      Better Facebook
      SiteAdvisor
      Incognito
      Bing Highlights
      YouTube5
      AdBlock
      YoutubeWide
    Audio Plug-ins: ℹ️
      DVCPROHDAudio: Version: 1.3.2
    3rd Party Preference Panes: ℹ️
      CUDA Preferences  Support
      EarthDesk  Support
      Editmote  Support
      Flash Player  Support
      FUSE for OS X (OSXFUSE)  Support
      Growl  Support
      Java  Support
      Witness  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          13% taskgated
          12% WindowServer
          1% WitnessUserAgent
          1% sysmond
          1% Activity Monitor
    Top Processes by Memory: ℹ️
      327 MB com.apple.WebKit.WebContent
      137 MB softwareupdated
      94 MB Safari
      82 MB VShieldScanner
      82 MB Dock
    Virtual Memory Information: ℹ️
      65 MB Free RAM
      1.58 GB Active RAM
      1.54 GB Inactive RAM
      647 MB Wired RAM
      2.95 GB Page-ins
      260 MB Page-outs

    You have SCADS of extensions and the things running. McAfee, Intego, Orbicule, CleanMyMac, and others I've not ever even heard of. My first recommendation would be to remove all of these and see if things improve.

  • Program terminated error after entering sold to party no. in sales order

    hello friends,
                      can any help me, i was doing the topic of user exit for pre-defined sold to party using v45a0002 in cmod and i wrote a program for include 'if sy-uname= 'sapuser'.
    message e000(0) with ' you are not authorised to create so'
    endif
    while activating i got error msg 'The last statement is not complete (period missing)."  & i have saved inspite error
    after i tried create a order
    program terminated error after entering sold to party no. in sales order
    so i have deactivated the project created in cmod & deleted the project inspite i am getting the program terminated error
    i am sending total error plz reply quickly urgent friends
    Runtime Errors         SYNTAX_ERROR
    Date and Time          19.04.2008 17:51:58
    ShrtText
    Syntax error in program "SAPLXVVA ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLVKMP" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    In program "SAPLXVVA ", the following syntax error occurred
    in the Include "ZXVVAU04 " in line 5:
    "The last statement is not complete (period missing)."
    Author and last person to change the Include are:
    Author "SAPUSER "
    Last changed by "SAPUSER "
    What can you do?
    Please eliminate the error by performing a syntax check
    (or an extended program check) on the program "SAPLXVVA ".
    You can also perform the syntax check from the ABAP/4 Editor.
    If the problem persists, proceed as follows:
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    In program "SAPLXVVA ", the following syntax error occurred:
    "The last statement is not complete (period missing)."
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "mtpl7"
    Network address.......... "192.100.10.1"
    Operating system......... "Windows NT"
    Release.................. "5.1"
    Hardware type............ "2x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "MTPL7"
    Database type............ "ORACLE"
    Database name............ "ERP"
    Database owner........... "SAPERP"
    Character set............ "English_United State"
    SAP kernel............... "640"
    Created on............... "Nov 4 2004 23:26:03"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "43"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory usage.............
    Roll..................... 8112
    EM....................... 8362368
    Heap..................... 0
    Page..................... 122880
    MM Used.................. 4229224
    MM Free.................. 995472
    SAP Release.............. "640"
    User and Transaction
    Client.............. 800
    User................ "SAPUSER"
    Language key........ "E"
    Transaction......... "VA01 "
    Program............. "SAPLVKMP"
    Screen.............. "SAPMV45A 4701"
    Screen line......... 16
    Information on where terminated
    The termination occurred in the ABAP program "SAPLVKMP" in
    "SD_DETERMINE_KKBER".
    The main program was "SAPMV45A ".
    The termination occurred in line 0 of the source code of the (Include)
    program " "
    of the source code of program " " (when calling the editor 00).
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    4
    SY-LSIND
    0
    SY-PAGNO
    1
    SY-LINNO
    8
    SY-COLNO
    1
    SY-PFKEY
    U
    SY-UCOMM
    SY-TITLE
    Create Standard Order kb: Overview
    SY-MSGTY
    E
    SY-MSGID
    VP
    SY-MSGNO
    106
    SY-MSGV1
    BUS2032
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    13 FUNCTION     SAPLVKMP                            LVKMPU41                               91
    SD_DETERMINE_KKBER
    12 FUNCTION     SAPLVKMP                            LVKMPU41                               91
    SD_DETERMINE_KKBER
    11 FUNCTION     SAPLV09B                            LV09BU30                              148
    SD_PCHECK_PAYER_IN_CREDITAREA
    10 FUNCTION     SAPLV09B                            LV09BU26                              296
    SD_PARTNER_EXECUTE_CHECKS
    9 FUNCTION     SAPLV09B                            LV09BU25                               57
    SD_PARTNER_CHECK_BEFORE
    8 FUNCTION     SAPLV09A                            LV09AU26                              342
    SD_PARTNER_SINGLE_MODIFY
    7 FORM         SAPLV09A                            LV09AF39                              176
    PARTNER_SELECTION
    6 FUNCTION     SAPLV09A                            LV09AU29                              820
    SD_PARTNER_DETERMINATION
    5 FUNCTION     SAPLV05E                            LV05EU01                              654
    VIEW_KUAGV
    4 FORM         SAPMV45A                            MV45AF0K_KUAGV_SELECT                  40
    KUAGV_SELECT
    3 FORM         SAPMV45A                            MV45AF0A_AUFTRAGGEBER_PRUEFEN          46
    AUFTRAGGEBER_PRUEFEN
    2 FORM         SAPMV45A                            MV45AF0K_KUNDEN_PRUEFEN               454
    KUNDEN_PRUEFEN
    1 MODULE (PAI) SAPMV45A                            MV45AI0K_KUNDEN_PRUEFEN                15
    KUNDEN_PRUEFEN
    Chosen variables
    Name
    Val.
    No.      13 Ty.          FUNCTION
    Name  SD_DETERMINE_KKBER
    I_KKBER_KNVV
    2222
    0000
    I_KKBER_T001
    8888
    3333
    8888
    I_KKBER_TVTA
    2222
    0000
    I_KUNNR
    7000000000
    3333333333
    7000000000
    I_SPART
    SM
    54
    3D
    I_VKORG
    T000
    5333
    4000
    I_VTWEG
    S4
    53
    34
    XVBAK
    00000000000000            000000000000000000000000         00000000
    2222222222222333333333333332222222222223333333333333333333333332222222223333333322222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    E_KNVV_FLG
    2
    0
    RC
    0
    0000
    0000
    XVBKD[]
    Table[initial]
    XVBPA[]
    Table IT_1743[2x542]
    FUNCTION=SD_PCHECK_PAYER_IN_CREDITAREADATA=LVT_CREDIT_XVBPA
    Table reference: 275
    TABH+  0(20) = 70A2883B388BC43B0000000013010000CF060000
    TABH+ 20(20) = 020000001E020000FFFFFFFF04910100D82F0000
    TABH+ 40( 8) = 02000000C1248400
    store        = 0x70A2883B
    ext1         = 0x388BC43B
    shmId        = 0     (0x00000000)
    id           = 275   (0x13010000)
    label        = 1743  (0xCF060000)
    fill         = 2     (0x02000000)
    leng         = 542   (0x1E020000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000209
    occu         = 2     (0x02000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x28C1883B
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 1     (0x01000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2     (0x02000000)
    lineAlloc    = 2     (0x02000000)
    store_id     = 690   (0xB2020000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x28A4883B
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x109C883B
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    I_KKBER
    2222
    0000
    FCODE_KOMM_LIEF_MENGE_SICH
    MOD2
    44432222222222222222
    DF420000000000000000
    SYST-REPID
    SAPLVKMP
    5454544522222222222222222222222222222222
    310C6BD000000000000000000000000000000000
    %_SPACE
    2
    0
    FCODE_KONFIGURATION1
    POKO
    54442222222222222222
    0FBF0000000000000000
    CREDIT_CHECK
    2222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000
    SY-REPID
    SAPLVKMP
    5454544522222222222222222222222222222222
    310C6BD000000000000000000000000000000000
    SAV_BUKRS
    SS00
    5533
    3300
    CHAR_
    2
    0
    %_DUMMY$$
    2222
    0000
    AUTOMO_VOLVO
    08
    33
    08
    SPACE
    2
    0
    FCODE_ABRUF_GENERIEREN
    PABG
    54442222222222222222
    01270000000000000000
    XVBRK
    00000000          0000000
    2222222222222222222222222222222222222222222222223333333322222222223333333222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    KOPGR_LIEFERPLAN
    LL
    4422
    CC00
    FCODE_ZUSAETZE_FAB
    PFZU
    54552222222222222222
    06A50000000000000000
    FCODE_REPARATUR
    PREP
    55452222222222222222
    02500000000000000000
    XVBKD
    000000                                                 #####0000000000       ####
    2222222222222333333222222222222222222222222222222222222222222222222200000333333333322222220000
    000000000000000000000000000000000000000000000000000000000000000000000000C000000000000000000000
    FCODE_GEFAHRGUT
    KGGP
    44452222222222222222
    B7700000000000000000
    I_KKBER_HELP
    2222
    0000
    T001
    800SS00SRIYA TEXTILES           HYDERABAD                IN INR  EINT 10K41      0000050495DE1
    3335533554542545544452222222222245445444422222222222222224424452244452334332222223333333333443
    800330032991045849C530000000000089452121400000000000000009E09E20059E4010B410000000000050495451
    FCODE_STOFFBERICHTE
    IEHS
    44452222222222222222
    95830000000000000000
    T001-BUKRS
    SS00
    5533
    3300
    No.      12 Ty.          FUNCTION
    Name  SD_DETERMINE_KKBER
    I_KKBER_KNVV
    2222
    0000
    I_KKBER_T001
    8888
    3333
    8888
    I_KKBER_TVTA
    2222
    0000
    I_KUNNR
    7000000000
    3333333333
    7000000000
    I_SPART
    SM
    54
    3D
    I_VKORG
    T000
    5333
    4000
    I_VTWEG
    S4
    53
    34
    XVBAK
    00000000000000            000000000000000000000000         00000000
    2222222222222333333333333332222222222223333333333333333333333332222222223333333322222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    E_KNVV_FLG
    2
    0
    RC
    0
    0000
    0000
    XVBKD[]
    Table[initial]
    XVBPA[]
    Table IT_1743[2x542]
    I_KKBER
    2222
    0000
    XVBKD
    000000                                                 #####0000000000       ####
    2222222222222333333222222222222222222222222222222222222222222222222200000333333333322222220000
    000000000000000000000000000000000000000000000000000000000000000000000000C000000000000000000000
    I_KKBER_HELP
    2222
    0000
    No.      11 Ty.          FUNCTION
    Name  SD_PCHECK_PAYER_IN_CREDITAREA
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_CHECKTYPE
    I
    4
    9
    FIF_MSGTYPE
    E
    4
    5
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LVF_KKBER2
    2222
    0000
    LVF_KUNNR
    7000000000
    3333333333
    7000000000
    SYST-REPID
    SAPLV09B
    5454533422222222222222222222222222222222
    310C609200000000000000000000000000000000
    LVF_KURGV2
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    FIS_SDORGDATA-SPART
    SM
    54
    3D
    FIS_SDORGDATA-VKORG
    T000
    5333
    4000
    FIS_SDORGDATA-VTWEG
    S4
    53
    34
    %_O_SD_PARTNER_CONTEXT-HEX_0004
    1
    0
    LVT_CREDIT_XVBPA
    Table IT_1743[2x542]
    LVF_KKBER1
    2222
    0000
    GCS_HERTAB
    ABCDEFG
    24444444
    01234567
    %_DUMMY$$
    2222
    0000
    SY-SUBRC
    0
    0000
    0000
    LVF_BEFORE_PARVW
    2222
    0000
    No.      10 Ty.          FUNCTION
    Name  SD_PARTNER_EXECUTE_CHECKS
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BEFORE
    2
    0
    FIF_CHECKTYPE
    I
    4
    9
    FIF_DIALOG
    2
    0
    FIF_MSGTYPE_TO_EXEC
    E
    4222
    5000
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LVF_ALL_PREDECESSORS_SUCCEEDED
    X
    5
    8
    FALSE
    2
    0
    GS_MARKED_PARTNERS
    222222222222
    000000000000
    LVT_CHECKCALLSTACK
    Table IT_1515[21x52]
    FUNCTION=SD_PARTNER_EXECUTE_CHECKSDATA=LVT_CHECKCALLSTACK
    Table reference: 219
    TABH+  0(20) = E8C3863B0000000000000000DB000000EB050000
    TABH+ 20(20) = 1500000034000000F00000000491010058090000
    TABH+ 40( 8) = 15000000C1248000
    store        = 0xE8C3863B
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 219   (0xDB000000)
    label        = 1515  (0xEB050000)
    fill         = 21    (0x15000000)
    leng         = 52    (0x34000000)
    loop         = 240   (0xF0000000)
    xtyp         = TYPE#000033
    occu         = 21    (0x15000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x90BF863B
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 21    (0x15000000)
    lineAlloc    = 21    (0x15000000)
    store_id     = 595   (0x53020000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    LVS_CHECKCALLSTACK_WA
    80000018BUS2030   SD_PCHECK_PAYER_IN_CREDITAREA   XX
    3333333345533332225455444445545455445454445454422255
    80000018253203000034F03853BF01952F9EF325494125100088
    GT_MARKED_FOR_DEL_PARTNERS
    Table[initial]
    LVS_CHECKCALLSTACK_WA-FUNCNAME
    SD_PCHECK_PAYER_IN_CREDITAREA
    545544444554545544545444545442
    34F03853BF01952F9EF32549412510
    GC_NO_ACTION
    2
    0
    GC_NEW_PARTNER
    I
    4
    9
    GVC_PARTNER_CONTEXT
    CONTEXT_X_SD_PARTNER_CONTEXT            fò####################################################
    44454555555455455445544454552222222222226F0000000000000000000000000000000000000000000000000000
    3FE4584F8F34F0124E52F3FE4584000000000000620000000000000000000000000000000000000000000000000000
    GC_ERROR
    E
    4
    5
    GC_PROCESSMODE_DIALOG
    D
    4
    4
    LVF_MSGTYP
    E
    4
    5
    BUFFER_FULL_FILLED
    F
    4
    6
    POS_NUL
    000000
    333333
    000000
    BUFFER_PARTITIAL_FILLED
    P
    5
    0
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCS_PARTNER_ROLETYPES
    0001000200030004000500060007000800090010001100120013NONE
    33333333333333333333333333333333333333333333333333334444
    0001000200030004000500060007000800090010001100120013EFE5
    GCS_PARTNER_TYPE
    KUAPLIPE
    45454454
    B510C905
    LVF_RTYPE
    0003
    3333
    0003
    GCS_PARTNER_CALL_BACK_EVENTS
    CHANGE    DELETE    NEW
    444444222244445422224452222222
    381E75000045C5450000E570000000
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCF_INITIAL_PARTNER
    0
    32
    00
    GCF_CALLER_TRANSPORT
    T
    5
    4
    TPACHECKRELATION
    0000000000
    2223333333333
    0000000000000
    GC_APPL_LOG
    SDBFPD
    54445422222222222222
    34260400000000000000
    SY-REPID
    SAPLV09B
    5454533422222222222222222222222222222222
    310C609200000000000000000000000000000000
    GVC_PARTNER_CONTEXT-B0007-PARVW
    RG
    54
    27
    No.       9 Ty.          FUNCTION
    Name  SD_PARTNER_CHECK_BEFORE
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BEFORE
    2
    0
    FIF_CHECKTYPE
    I
    4
    9
    FIF_DIALOG
    2
    0
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LS_STATISTICS
    ########################4   ################
    00000000000000000000000032220000000000000000
    00000000000000000000000040000000000000000000
    No.       8 Ty.          FUNCTION
    Name  SD_PARTNER_SINGLE_MODIFY
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BOKRE
    2
    0
    FIF_CLEAR_APPL_LOG
    X
    5
    8
    FIF_DIALOG
    2
    0
    FIF_HARD_DELETION
    2
    0
    FIF_HISTUNR
    00
    33
    00
    FIF_HZUOR
    00
    33
    00
    FIF_INITIAL_VALUE
    X
    5
    8
    FIF_KNREF_PARNR
    2222222222
    0000000000
    FIF_KUNNR_NEW
    7000000000
    3333333333
    7000000000
    FIF_KUNNR_OLD
    2222222222
    0000000000
    FIF_LISTPROCESSING
    2
    0
    FIF_MANUAL_ADDRESS
    2222222222
    0000000000
    FIF_MANUAL_ADDRESS_ORIGIN
    2
    0
    FIF_NO_CPD_DIALOG
    2
    0
    FIF_NO_DIALOG
    2
    0
    FIF_NO_MESSAGES
    2
    0
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARTIAL_NEW_DETERMINATION
    2
    0
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_PRFRE
    2
    0
    FIF_VKORG
    2222
    0000
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FEV_ACTION_DONE
    I
    4
    9
    FRF_LOG_COUNT
    0
    0000
    0000
    SYST-REPID
    SAPLV09A
    5454533422222222222222222222222222222222
    310C609100000000000000000000000000000000
    GVT_LOCAL_CALL_BACK_MEMORY[]
    Table[initial]
    %_SPACE
    2
    0
    SY-REPID
    SAPLV09A
    5454533422222222222222222222222222222222
    310C609100000000000000000000000000000000
    LVF_ACTION_TODO
    I
    4
    9
    GC_UPD_PARTNER
    U
    5
    5
    %_VIASELSCR
    0
    4
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCS_PARTNER_ROLETYPES-SHIP_TO
    0002
    3333
    0002
    LVF_NRART
    KU
    45
    B5
    LVF_KUNNR_NEW
    7000000000
    3333333333
    7000000000
    GCS_ADDRESS_GROUP
    SD01CA01
    54334433
    34013101
    GCF_APPL_TABLE_SD
    VBUK
    5454222222
    625B000000
    LVF_ROLETYPE
    0003
    3333
    0003
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    LVF_MESSAGE_COUNT
    0
    0000
    0000
    %_DUMMY$$
    2222
    0000
    GCF_ADDRESS_TYPE_CONT_PERSON
    3
    3
    3
    No.       7 Ty.          FORM
    Name  PARTNER_SELECTION
    TVTA
    000
    222222222222222222222222222222222333222222222222222
    000000000000000000000000000000000000000000000000000
    TPAER
    00
    22222222222222332222
    00000000000000000000
    LVS_XVBPA
    000000RG7000000000          0000000000000000000000050510
    2222222222222333333543333333333222222222233333333333333333333333333332222222222222222222222222
    0000000000000000000277000000000000000000000000000000000000000000505100000000000000000000000000
    LVF_PARNR
    7000000000
    3333333333
    7000000000
    PIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    PIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    PIF_NO_DIALOG
    2
    0
    PIF_PARGR
    TA
    5422
    4100
    LVF_PARVW
    RG
    5422
    2700
    PIF_POSNR

    Hi Kartik,
    Could you please be more clearer as to how do you want me to proceed so that this syntax error stops bothering me while creating a standard order thru TCode VA01.Also what do you mean by "well comment the code in the include and activate the include"
    I created a projet in CMOD and than added the enhancement  V45A0002.The components shown as EXIT_SAPMV45A_002(Predefined sold to party when making the standard order),i double click on the exit and entered into the function module.After that i double clicked on the include ZXVVZU04 and entered in and wrote E_KUNNR=100171
    While activating i got error msg 'The last statement is not complete (period missing)." & i have saved inspite the error .After that i tried to create a order and program terminated error came after entering sold to party no. in sales order
    so now i have deactivated the project which i created in CMOD & deleted the project also inspite of this i am getting the program terminated error while making the order
    I would be great ful if somebody helps me *** out of this syntax error.
    Thanks
    Rishi

Maybe you are looking for

  • Creation of ACH pmt advice for EU C.Cd (PMW activated)

    Hi experts, I'm a little at loss with my 1st dealings with the payment medium workbench. I got a requirement to setup payment advice a EU company code that currently sends out ACH payments without advice. Currently In FBZP, 1- The EU CCd is a paying

  • Cannot open digitally signed PDF's with Acrobat but can with Reader.

    My users have PDF files that have been digitally signed by other users.  When opening these files with Adobe Acrobat Pro, it crashes the application.- a generic referenced memory error on some systems, a DDE server error on others, or a font capture

  • "Could not determine code page" inbound side error

    Guys, We are receiving a flat text file and sending an IDoc, but now I'm getting this error. Any idea what's wrong? And what is that "I::000" in the message? Any help is much appreciated. Thanks a lot, Viktor   <?xml version="1.0" encoding="UTF-8" st

  • Trouble shooting

    I've had to reset my Time Capsule which has caused my Time Machine to fail in its backups. The error message I receive is this: 'The network backup disk could not be accessed because there was a problem with the network username or password. Open Tim

  • Frozen Re-building Libr

    Hi guys, having problems... Had my Zen Touch about a month and a bit now, and was copying a track onto it when it said "unable to create file, please restart player and try again," so I restarted Mediasource, and pressed reset on my Zen as it had fro