Avoid MathScipt Comments in EXE, Build & Run Problems - NI Please Fix these Bugs!

Hello,
After 4 days of intensive work, I have finally found the solution for two major MathScript Problems:
1) Mathscript Comments are included in your EXE File !!
    - Yes, if you do not watch your steps, the EXE will include all your % Mathscript Comments!
2) Problems building, but even worse: An app that builds with NO Error and NO Warnings will not RUN and creates the following misleading Erro Message:
    "The VI is not Executable. The full development version of LabView is required to fix the errors"
    With absolutely NO hint to what VI have the problem.
I have made myself an internal note how to avoid this problem. I am using LabView 2009, 2010 DS1 Release (I think this is 9.01) under WInXP SP2.
Rather than retyping everything, I will post the full text of my Notes below. I also mention several other LV BUG in this note, so pleae read carefully.
One is the TagSrv Error that occurs in LabView 2009 if I programatically deploy Shared Variables under the WinXP Development Environment. After this problem has occured, it will occur every time I restart XP, and in essense I have to restore to before I did this (thanks Nortong Ghost !!!).
Below you can find the full unabridged version of my Build, Run and Bug Notes for LV 2009 / 2010 DS1 (9.01). Hope they can be helpful to my fellow LabView programmers!
2010-07-03:
Building under LabView 2009 / 2010 DS1 Release (version 9.01)
Follow the steps below:
a) To successfully build an EXE that also runs
b) Avoid that MathScript Comments are included in the EXE !!!!!!!!!!!!!!!!
Before Building:
I) Recompile All  by pressing Ctrl+Shift and pressing the RUN button on the Application_References.vi
   Then Save All (about 1200 Vis are saved)
II) Make Sure that NO User Defined Mathscript (and Mathscript Nodes?) define Empty Functions:
    This seemed to cause the following problem with the built EXE: The main VI will be broken, and a dialog reports:
    "The VI is not Executable. The full development version of LabView is required to fix the errors"
    MathScitp BUG: Empty Functions causes no Build Errorm but RUN Error:
    The following User Defined MathScript .m files are candidates:
    log_write() and log_clear() whith do_log_write() and do_log_clear() commented out, these functions are empty.
    When calls to log_write() and log_clear() where removed, the problem above vanished !
Building the EXE:
1) Additional Exclusions:
 -"Disconnect type definitions": YES
 - "Remove unused polymorphic VI instantces": YES
 - "Remove unused members of project libraries": NO (do not know if this is important)
2) Advanced:
 - Enable Debugging: "NO"
3) Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE if you use the New Build File Layout:
   IMPORTANT !!!!!!!!!!!!!
   Advanced:
   "Use LabView 8.x file layout": YES !!!!!!!
   Using the new layout, causes ALL COMMENTS FROM USER DEFINED MATHSCRIPT .M FILES TO BE INCLUDED IN THE .EXE !!!!!!!
4) BUG: DSC Reference Problem in LabView 2010 DS1 release:
   In VI Deploy_Shared_Variables.vi we deploy alle Shared Variables using the "Deploy Libraries.vi" which is a part of the DSC option.
   As long as only deploying of Variables is used, using this VI should NOT require any DSC Runtime license.
   We have used this before with no compilation problems.
   However, starting with LV 2009 SP1 (or was it the DS1 2010 upgrade) LV will start nagging us to resolve references to tens of VIs
   in the DSC lib file ! Solution: Used press "Stop" on the dialog, and the Build will succeed and the EXE will work !
   Optionally, we could use the following Invoke node for the deployment:
   (see: http://digital.ni.com/public.nsf/allkb/04D9A85B6967EE87862571140065EEC6). Excerpt from this description:
  <<Right-click the block diagram to bring up the programming palette and go to Programming»Application Control and place the
    Invoke Node on the block diagram. Using the hand tool, click Method and select Library»Deploy Library>>
5) LabView BUG: Do NOT RUn the Application under the WIn XP SP2 Development Environment if the APP Deploys Shared Vars:
   This will cause the Dreaded TagSrv Error:  "TagSrv.exe: This application has requested the runtime to terminate in an unusual way".
   After this Error has occured, it will reoccur each time WinXP SP2 is restarted, and (Network) Shared Variables will NOT work any more!
Geir Ove
Attachments:
LabView_Tagsrv_Error.jpg ‏26 KB

Hello Geir,
I have tried to reproduce the behavior you are seeing where .m file comments appear in the final built executable.  However, I am unable to do so using LabVIEW 2009 SP1.  I have a caller VI with a MathScript node that calls the adder function in adder.m.  The contents of adder.m are as follows:
% ADDER This function adds 3 to its input variable
%   y = adder(x)
%   INPUT: x
%   OUTPUT: y, equal to x + 3
function y = adder(x)
y = x + 3;
I have configured the build specification as you mention in steps (1) and (2):
Additional Exclusions
 - "Disconnect type definitions" Yes
 - "Remove unused polymorphic VI instances" Yes
 - "Remove unused members of project libraries" No
Advanced
 - "Enable Debugging" No
At first, I did not include the adder.m file in the project.  I built the application and was not able to find the text "adder" anywhere in the EXE.  Then, I added the .m file to the project and put it in the "Always Included" section in "Source Files."  Again, I was not able to find the search text in the built EXE.  In step 3, you mention
geirove wrote:    
   "Use LabView 8.x file layout": YES !!!!!!!
but in the 5th post in this thread, you state
geirove wrote:
Compile using the new compile method ( Use LabView 8.x file layout": NO),
I have tried both settings in the Advanced section, but again, I am not able to find any comments in the EXE.  I even added a call to the "path" function in adder.m.  This puts a warning glyph on the caller MathScript node and generates different code.  The EXE will return an unknown symbol error for adder (any VI with a warning glyph will not work in a built app), but I am not able to find any comments in the EXE.  This project is attached below.
As for your other item with a broken EXE if you call empty functions, I am unable to reproduce this as well.  I have taken the last attachment to your third post in this thread (the log_write function) and called it from the caller VI as well.  The EXE runs just fine and I do not find any comments in this EXE either.
Unfortunately, there was a rather serious issue in the LabVIEW 2009 MathScript RT Module, where some internal MathScript VIs could become corrupted when building executables.  Have you tried running the "Find Bad Instantiations" tool from this Knowledge Base article?  Simply installing the SP1 version on top may not have corrected any VIs that may be corrupted.
Due to our difficulty in reproducing the issues you mention, could you modify the attached project or else attach a new project, appropriately configured, that builds an EXE with .m comments embedded in it?  This way, we can uncover any minute details that we're overlooking.
Grant M.
Senior Software Engineer | LabVIEW MathScript | National Instruments
Attachments:
MComments.zip ‏186 KB

Similar Messages

  • Tip: How to Avoid some tough LV 2009 Build & Run Problems

    Hello,
    I posted some tips I think may be useful to my fellow LabView 2009 programmers on the MathScript forum here:
    http://forums.ni.com/t5/LabVIEW-MathScript-RT-Module/Avoid-MathScipt-Comments-in-EXE-Build-amp-Run-P...
    Allthough some of the problems are MathScript related, the post contains information on how to avoid some other LabView 2009 problems as well. I thought this info would be interesting to other than "MathScript programmers":
    The post contains information on how to circumvent the following problems:
    * "The VI is not Executable. The full development version of LabView is required to fix the errors"
    * Avoid that MathScript Comments are included in the EXE !
    * Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE
    * DSC Reference Problem in LabView 2010 DS1 release
    * TagSrv Error "TagSrv.exe: This application has requested the runtime to terminate in an unusual way"
    Geir Ove

    Hello,
    I posted some tips I think may be useful to my fellow LabView 2009 programmers on the MathScript forum here:
    http://forums.ni.com/t5/LabVIEW-MathScript-RT-Module/Avoid-MathScipt-Comments-in-EXE-Build-amp-Run-P...
    Allthough some of the problems are MathScript related, the post contains information on how to avoid some other LabView 2009 problems as well. I thought this info would be interesting to other than "MathScript programmers":
    The post contains information on how to circumvent the following problems:
    * "The VI is not Executable. The full development version of LabView is required to fix the errors"
    * Avoid that MathScript Comments are included in the EXE !
    * Mathscript BUG: The Application Builder Includes ALL MathScript Comments in the EXE
    * DSC Reference Problem in LabView 2010 DS1 release
    * TagSrv Error "TagSrv.exe: This application has requested the runtime to terminate in an unusual way"
    Geir Ove

  • Yoga 3 Pro lmcfrundll​.exe Run Problem, how to fix?

    While Lenovo is in the process of developing a solution, an official work-around to the automatic update delivered on February 7th to Yoga 3 Pro laptops bas been released to address the following errors:
    lmcfrundll.exe application error       unable to start correctly (0xc000007b)
    problem starting c:\program files\lenovo\communications utility\libstartstub.dll      specified module could not be found
    Please note this is a work-around, not the final solution.
    It is intended for Yoga 3 Pro systems running Win 8.1 on Lenovo Settings Dependency Package version 2.3.1.30 only.
    The readme file and work-around can be obtained here:
    https://drive.google.com/folderview?id=0B0Wzd6g3yn​HwfmpTQmhxOHBUSGRSN05tejU1cU1hT1hDN3ZEN1MzUlR4LWRO​...
    Thank you,
    2/20/15 EDIT: Tagging this temp fix as a solution so it can be found by others joining the conversation. I will tag the permanant fix when it becomes available. Amy_Lenovo
    Amy Tupper
    Technical Resolution Lead, Pervasive Issues
    Lenovo US
    ThinkPad T431s, S3 Yoga 14, Helix, Edge 11 & 14, E431, IdeaTab A1107, IdeaPad A1-07, IdeaCentre Horizon, Yoga Tablet 2 10 1051
    First computer was a 1980 Commodore 64 from Radio Shack/ GEnie SFRT member from 1993-1996
    Solved!
    Go to Solution.

    I have a Yoga 3 Pro, Windows 8.1 Pro x64.
    There are errors in the Event Viewer related to the problems of LMCSTART1, LMCSTART2, LMCSTART3, which I will cut and paste below. These are there because they are failing to load as the error message on the pop-up window states.
    As for the libstartstub.dll "specified module could not be found", there were not errors or warnings in the Event Viewer related to this, but I have noticed that if I disable LENOVO.TPKNRRES from running (via OneKey Optimizer), that particular error doesn't come up.
    Here are the errors now from Event Viewer:
    Event ID 1005 (same error listed 3 times as an Application error, with a different RecordID listed below)
    Windows cannot access the file  for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program Lenovo® Multimedia and Communications Framework Custom Rundll because of this error.
    Program: Lenovo® Multimedia and Communications Framework Custom Rundll
    File:
    The error value is listed in the Additional Data section.
    User Action
    1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again.
    2. If the file still cannot be accessed and
        - It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted.
        - It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer.
    3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER.
    4. If the problem persists, restore the file from a backup copy.
    5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance.
    Additional Data
    Error value: 00000000
    Disk type: 0
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1005
       [ Qualifiers]  49152
       Level 2
       Task 100
       Keywords 0x80000000000000
       EventRecordID for the three different times: 13645 - 13648 -  13651
    - EventData
       Lenovo® Multimedia and Communications Framework Custom Rundll
       00000000
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0x644
    Faulting application start time: 0x01d04337a63a774e
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 33af5abb-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID:
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:22.000000000Z
       EventRecordID 13650
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       644
       01d04337a63a774e
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       33af5abb-af2b-11e4-8287-f87dd6bcf066 
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0x15e4
    Faulting application start time: 0x01d04337a609bbd0
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 33170cdc-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID:
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:21.000000000Z
       EventRecordID 13647
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       15e4
       01d04337a609bbd0
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       33170cdc-af2b-11e4-8287-f87dd6bcf066 
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0xb74
    Faulting application start time: 0x01d04337a5c87954
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 32206a90-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID: 
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:19.000000000Z
       EventRecordID 13644
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       b74
       01d04337a5c87954
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       32206a90-af2b-11e4-8287-f87dd6bcf066

  • Adobe ColdFusion Builder Bugbase: Vote for Some of these Bugs to be Fixed

    As I'm sure you know CF Builder 3 isn't quite perfect yet and the Adobe Bugbase has a not-so-great search interface so I thought I would share some issues I reported recently which have impacted my workflow with the product.  Perhaps some of my fellow developers have also run into these annoyances.  If you have, or if you feel like supporting these issues to get Adobe's developers to fix them, I encourage you to also leave a note on each bug to increase the likelihood that they get fixed in the next release.  Feel free to also post links to bugs/feature requests you've submitted and perhaps the community will also support your bug reports as well.
    Below please find the name and link to each bug/feature request. To vote for the bug please click the "my vote" button at the bottom right corner of the page.
    Bug 1:Code Coloring Breaks When Comments Used Within Function with Named Arguments
    Bug#3831825 - Code Coloring Breaks When Comments Used Within Function with Named Arguments
    Bug 2: ColdFusion Builder 3.0 Hangs When Using Code Assist on Large Files
    Bug#3833130 - ColdFusion Builder 3.0 Hangs When Using Code Assist on Large Files 
    Note: Adobe has asked for code samples on this one. If you have a large CFM or CFC file that hangs when trying to provide suggestions please upload your file to the bug report.
    Feature Request 1: Code Suggest Enhancement: Ability to disable code suggest for variables / tags independantly
    https://bugbase.adobe.com/index.cfm?event=selectBug&CFGRIDKEY=3854326
    Note: This one is related to the above bug (bug #2). I believe that if we can turn on/off specific types of suggestions we can improve the performance when using code assist. This one will need a lot of votes since it's a feature request.
    Bug 3: ColdFusion Builder Ignores CFELSEIF/CFELSE Tags in Outline
    https://bugbase.adobe.com/index.cfm?event=selectBug&CFGRIDKEY=3865754

    Thanks Carl.  I haven't tried Twitter yet as I don't really have any followers that are fellow developers.  I've been looking for other people with relevant problems though on forums (this one, stackoverflow, etc...) and when I encounter them I pass along my bugbase submissions.

  • GT70 2OD again microphone problem somebody please fix it

      I am going to crazy I have 1 post https://forum-en.msi.com/index.php?topic=168316.msg1300035#msg1300035 and topic about it https://forum-en.msi.com/index.php?topic=180690.msg1299457#msg1299457 but this time can not fix I wanted help from offical msi central but they couldnt do anything they just offer me technical support, so I gave but they couldnt fix they said its about software beceause when delete msi driver microphone is working but this time strange sounds coming why msi do not add new drivers noise equalization when add it its work perfectly but when didnt its so buggy and I am honestly bored give technical support or say my problem to msi central as a gamer I need it so much and I cant do this everytime, its imporant for me

    yes now I have 6.0.1.7283_MS-16F4_EQ_Win8.1_Win8_Win7_WHQL downloaded from http://www.msi.com/support/nb/GT70_2OD.html#down-driver&Win8.1 64 but new drives come without noise equalization. with that feature my microphone always works, I should setup old driver for record voice from headphone , old drives have noise equalization but this time a random day when I open my laptop its going to crash because its old and when I try to install old drivers its not work so , I dont have any choose should install new one
    for example this record without headphone https://soundcloud.com/andrey-eren-bozkurt/without-headphone and this one with headphone  https://soundcloud.com/andrey-eren-bozkurt/mikrofonlu there is no problem with headphone because its work with other computers or laptops I also have another one but doesnt work, when I delete I sound drivers microphone work with headphone or without but speakers work weird I couldnt fix , offical support also and I gave technical support they said its about software

  • *.exe build error, files not on system error

    I have recently had to rebuild my laptop meaning a full instal of 8.5.1.
    I have just got to the stage of building an existing project that has been live for a number of months and built a number of times.
    The *.exe builds no problem but the installer comes up with a build error
    Has anyone saw this before?
    Any ideas anyone???

    your some guy.
    Worked a treat!
    Will that be that the previous build was from a previous version of labview & a previous version of laptop and just got its knickers in a twist?
    Thanks for your help, I did search but obviously not good enough

  • When I use FF 4 I have problem with my Intranet user interface, I lost the ability to acces my intranet database? So for now I go back to previous version. I hope that kind of problem can be fix soon.

    I usually use FF 3.6 version to download data from my company intranet. With old FF version I can access the intranet easily. But when I upgrade to the FF 4, I lost the ability to customize the variable data I want to collect. It kind of stuck. Usually when I right click I have option what to do. with the new version my option is none. nothing change. It's frustrating. So now, I go back to previous version. You said previous version is vulnerable to phishing or virus or something but still it user friendly for me to access my company data. Please fix that bug and I'll upgrade to the newest version.

    I want to add my progress about this problem. I find this problem in IE 9, but it has compatibility view, though not too perfect but quite helpful. Whereas FF 4, from article in support, said it doesn't have one. So, I beg you FF team to accommodate us who still deal with old web design so we still can use this FF 4. Please..please..please. I still believe Firefox is the best browser and I hope FF team also responsive about current problem. I think I don't have any option, but to downgrade FF to 3.6 until someone tell me how to deal with this kind of problem. Thanks.

  • Installer build spec loses spec for exe to run after

    I don't know why, but now & then the build spec for my application installer loses the setting in the Advanced tab to run a certain .exe after installing. The .exe to run after installing is created by a build spec in the same project (from LV source). Besides rebuilding that .exe (without changing the .exe's build spec, name, or location, just minor source code mods), nothing has changed in the project, but the installer's Advanced setting will suddenly be gone. What the heck?!
    My project & source files are too large to attach.

    Hi Meg,
    I noticed this forum post and figured I would chime in here as well.
    We have been working on this issue and are hoping to isolate the exact steps that cause the sporadic loss of the postbuild EXE setting. An initial suspicion was the EXE being moved or rebuilt to a different location. That being said, if anyone has run into this issue in the past and has any insight it would be appreciated, as this problem has not been consistently reproduced.
    Thanks,
    Matt
    Product Owner - NI Community
    National Instruments

  • [Self Solved] Problems trying to get the install.exe to run

    After trying for 3 days to get the install.exe to run on my new computer I eventually ran out of options. You could see, however, that in the task manager, once you clicked on the .exe that it would run for a bit, max out at ~8k and then disappear. The two things I could think of were that A. It might have been a registry error that is preventing me from running the .exe and B. that it might be a service that is blocking it. I did not want to go through the stress of re-installing windows just so I could get the install.exe to run over a hunch that my registry might be foul. Instead I performed a clean boot that would prevent a service from stopping the installation. Upon restarting I was able to run the install.exe and I finally have adobe reader running. For anyone who is not familiar with a clean boot it can be done as follows:
    Pressing [Win] + r OR Start > search
    and then typing "msconfig.exe" + enter will open up the system configuration screen.
    then click on the "Services" tab, followed by clicking the box "Hide all Microsoft services" so that it has a checkmark inside it, followed by clicking the button "Disable All"
    Your computer will then be prompted to restart
    Upon launching your windows interface go to your downloads folder and then try to run the install.exe, if it works, as did mine, it would appear that a certain service was blocking it.
    Hope this helps the .02% of people who actually have this problem when installing

    Alternate solution: use the offline installer from http://get.adobe.com/reader/enterprise/

  • Winlogon.exe file running from an improper path

    Apologies if this is already covered,
    i have a toshiba satellite T8100 and recently it has been switching itself off and it then takes up to three attempts to reboot. I ran a scan using AVG and the results showed that the file winlogon.exe was running from  an improper path. The error actually shows up twice in the same scan as follows: C:\ Program Files\Windows User\winlogon.exe and then again with (2044) on the end. It then goes on to say: File is running from an improper path. Help and suggestions to solve this problem is greatly appreciated.  Thanks in advance 

    Tecra 8100
    A machine that switches off needs more than software fixing. The usual reason for this is heat building up. Better take care of that.
    I would ignore what the AVG scan says.
    Unless you are running Windows Vista, you should certainly avoid the advice you got here.
    -Jerry

  • Saposcol.exe encountered a problem and needed to close.

    Some days ago I successfully installed trial version 7.02 on a virtual Windows XP: Host Windows 7 professional 64 bit.
    Immediately after installation I created SAPLOGON, started the system using SAPMMC and logged on as BCUSER in client 001. I did some work and everthing was fine.
    Two days later there is an error message when XP mode has started:
    saposcol.exe encountered a problem and needed to close.
    If I try to start the system using SAPMMC it turns to green but shortly after that it is yellow.
    Syslog shows following messages:
    Info:  SAP Basis System: Buffer SCSA     Generated with Length      4096
    Info:  SAP Basis System: Start Msg Server,  1 times since system startup. PID     2996
    Info:  SAP Basis System: Start SAP System, SAPSYSTEM 00, Dispatcher Pid     3004
    Info:  SAP Basis System: Active ICU Version    3.4; Compiled With ICU    3.4; Unicode Version    4.1
    Info:  SAP Basis System: Connection to message server (on                  VXP) established
    Info:  SAP Basis System: MsgServer Hardware ID Was Determined
    Info:  SAP Basis System: Start Workp.   0, Pid     2276
    Info:  SAP Basis System: Start Workp.   1, Pid     3112
    Info:  SAP Basis System: Start Workp.   2, Pid     3120
    Info:  SAP Basis System: Start Workp.   5, Pid     3148
    Info:  SAP Basis System: Start Workp.   7, Pid     3164
    Info:  SAP Basis System: Start Workp.   6, Pid     3156
    Info:  SAP Basis System: Start Workp.   3, Pid     3128
    Info:  SAP Basis System: Start Workp.   4, Pid     3140
    Info:  Communications data: SAP Gateway Started (PID:       2304)
    Error:  Communications data: Service initialization failed
    Info:  SAP Basis System: ICM started on host VXP (PID: 2300)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)  
    Error: SAP Basis System: Initialization           DB-Connning:ect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON  
    Database: > Connection failed (RTE:[5] database not running)
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON   
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON 
    Database: > Connection failed (RTE:[5] database not running)
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    Warning: Database: SQL error -1070 occurred (possible network problems?). Work process is stopped
    Error: Database: Database error -10709 at CON
    Database: > Connection failed (RTE:[5] database not running) 
    Error: SAP Basis System: Initialization           DB-Connect Failed, Return Code  000256
    there are more messages and I stop to give them all.
    Does anybody have an idea how I can solve my problems? Why does the saposcol error occur when I start XP?
    Thanks
    Otto

    Hi Nirmal,
    this is the error signature of saposcol.exe:
    szAppName: saposcol.exe   szAppVer: 7200.71.18.26355  szModName: unknown
    szModVer: 0.0.0.0     offset: 00020005
    Sorry Nirmal it is not possible to send all three log files in one message because it extends maximum message length,
    the two other logfile are in a separate message
    this is logfile dev_w0:
    trc file: "dev_w0", trc level: 1, release: "720"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        NSP
    M systemid   560 (PC with Windows NT)
    M relno      7200
    M patchlevel 0
    M patchno    70
    M intno      20020600
    M make       multithreaded, Unicode, optimized
    M profile   
    VXP\sapmnt\NSP\SYS\profile\NSP_DVEBMGS00_VXP
    M pid        3396
    M

    M Thu Feb 03 21:29:33 2011
    M  kernel runs with dp version 129000(ext=118000) (@(#) DPLIB-INT-VERSION-129000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 3396) [dpxxdisp.c   1330]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm)          20000     (2000)
    M  DpShMCreate: sizeof(tm_adm)          4323912     (21512)
    M  DpShMCreate: sizeof(wp_ca_adm)          32000     (64)
    M  DpShMCreate: sizeof(appc_ca_adm)     32000     (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/556056/556064
    M  DpShMCreate: sizeof(comm_adm)          556064     (1104)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (96)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (80)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1792)
    M  DpShMCreate: sizeof(wall_adm)          (40056/34360/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: sizeof(j2ee_adm)     3920
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 094A0040, size: 5055296)
    M  DpShMCreate: allocated sys_adm at 094A0048
    M  DpShMCreate: allocated wp_adm_list at 094A2F28
    M  DpShMCreate: allocated wp_adm at 094A3020
    M  DpShMCreate: allocated tm_adm_list at 094A7E48
    M  DpShMCreate: allocated tm_adm at 094A7E70
    M  DpShMCreate: allocated wp_ca_adm at 098C78C0
    M  DpShMCreate: allocated appc_ca_adm at 098CF5C8
    M  DpShMCreate: allocated comm_adm at 098D72D0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 0995EEF8
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 0995EF50
    M  DpShMCreate: allocated j2ee_adm at 0995EF88
    M  DpShMCreate: allocated ca_info at 0995FEE0
    M  DpShMCreate: allocated wall_adm at 0995FEF8
    M  DpCommAttachTable: attached comm table (header=098D72D0/ft=098D72D8)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE

    M Thu Feb 03 21:29:34 2011
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0

    M Thu Feb 03 21:29:39 2011
    M  ThInit: running on host VXP

    M Thu Feb 03 21:29:40 2011
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' ...

    B Thu Feb 03 21:29:41 2011
    B  Library 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' loaded
    B  Version of 'C:\usr\sap\NSP\DVEBMGS00\exe\dbsdbslib.dll' is "720.00", patchlevel (0.65)

    C  DBSDBSLIB : version 720.00, patch 0.065 (Make PL 0.70)
    C  MAXDB shared library (dbsdbslib) patchlevels (last 10)
    C    (0.065) Send wp type to the database (note 1340617)
    C    (0.062) Row counter limit set to 65535 (note 1340617)
    C    (0.054) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.053) ABAP: Return technical database PPMS information (note 1419552)
    C    (0.047) Connection table corrected (note 1466271)
    C    (0.045) Unknown primary key (note 1459400)
    C    (0.039) Define your own command buffersize (note 1340617)
    C    (0.031) Dbm commands support added (note 1420733)
    C    (0.027) Count of records for bulk insert optimized (note 1340617)
    C    (0.021) Connect with special xuser key (note 1390464)


    C  Loading SQLDBC client runtime ...
    C  SQLDBC Module  : C:\sapdb\clients\NSP\pgm\libSQLDBC77.dll
    C  SQLDBC SDK     : SQLDBC.H  7.7.4    BUILD 009-123-173-450
    C  SQLDBC Runtime : libSQLDBC 7.8.1    BUILD 018-121-240-252
    C  SQLDBC client runtime is MaxDB 7.8.1.018 CL 240252
    C  SQLDBC supports new DECIMAL interface : 1
    C  SQLDBC supports VARIABLE INPUT data   : 1
    C  SQLDBC supports VARIABLE OUTPUT data  : 1
    C  SQLDBC supports Multiple Streams      : 1
    C  SQLDBC supports LOB LOCATOR KEEPALIVE : 1
    C  SQLDBC supports LOB LOCATOR COPY      : 1
    C  SQLDBC supports BULK SELECT with LOBS : 1
    C  INFO : SQLOPT= -I 0 -t 0 -S SAPR3
    C  Try to connect (DEFAULT) on connection 0 ...
    C  *** ERROR => Connect to database failed, rc = -10709 (Connection failed (RTE:[5] database not running))
    [dbsdbsql.cpp 139]

    B Thu Feb 03 21:29:42 2011
    B  ***LOG BV3=> severe db error -10709    ; work process is stopped [dbsh         1241]
    B  ***LOG BY2=> sql error -10709 performing CON [dblink       540]
    B  ***LOG BY0=> Connection failed (RTE:[5] database not running) [dblink       540]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1474]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11060]

    M  Info for wp 0

    M    pid = 3396
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 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    attachedVm = no VM

    M  ThIErrHandle: current request:

    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -   
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         0       rq_id -1

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server VXP_NSP_00 on host VXP (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Thu Feb 03 21:29:42 2011
    M  *  RELEASE     720
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        11337
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   779]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  303]
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 3396) [dpnttool.c   339]
    Thanks a lot  for your support
    Otto

  • Isqlplussvc.exe encountered a problem and needed to close.

    Does anyone have any information on fixing this error. It is killing me.
    The situation is:
    I am running windows xp pro sp2 on a AMD 64bit box. It is 32bit windows. It has 1GB of RAM and 40 GB of hd.
    the release I am using is Oracle 10.2.01 db and client installs.
    When I get to the client install and install it ... then restart the computer I get the
    "isqlplussvc.exe encountered a problem and needed to close. "
    error.
    I have attempted to manually install this thing and automatically start this thing with no luck. The oracle client and db are install to the same locations on my "C:\oracle\product\10.2.0" directory one id db_1 and the other client_1.
    What is the deal with this and is there a fix to this what is wrong?
    Anyhelp will be greatly appreciated. Thanks..
    MADSCIENTIST

    I am receieving the same error. Same OS, SP2. Same Oracle version. Installed by server and client in same location. Were you able to resolve?

  • Oracle.exe and java.exe are running my CPU 100% under XP Prof SP3

    11gR1
    oracle.exe and java.exe are running 100% CPU
    I have increased virtual memory to 4 gig
    I have defragmented the drive.
    I checked the drive for errors.
    I am searching the whole drive for viruses
    I do not have the problem with Redhat Fedora 12 running 11gR1
    I have 1 gig of RAM but cannot install release 2 because the installer expects
    1 gig + 1

    ooops!!! left that off...sorry
    XP Prof SP3 32 bit..*.no problem with Redhat Fedora 12 running MySQL and 11gR1*
    1 gig RAM Dell precision W/S 1.5 Gig rate 74 GiG SCSI HD 15000 RPM
    Don't pass out but I am also running MySQL server 5.1.41 and MS SQL Server Express 2008.
    Lucky it didn't catch fire
    I installed XP prof months ago but this CPU domination occurred only starting last night!
    However slow everything works in 11gR1
    sqlplus myname/password and then select rows from table
    sqldeveloper
    PHP web sites
    I've had plenty of trouble with Java running slow and hogging memory!
    Edited by: landonmkelsey on May 2, 2010 12:21 PM
    Edited by: landonmkelsey on May 2, 2010 12:24 PM
    Let me guess...stop services for MySQL and MS SQL Server and see what happens!
    Edited by: landonmkelsey on May 2, 2010 12:26 PM

  • Integration builder login problem

    hi all,
    i am not able to login into integation builder,while i am trying to open the integration builder,it is giving
    the error, i.e ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable
    Thrown:
    MESSAGE ID: com.sap.aii.utilxi.misc.api.ReconnectRuntimeException
    com.sap.aii.utilxi.misc.api.ReconnectRuntimeException:
    please help me what could be the problem,
    regards,
    subba reddy

    Hi Reddy,
    Possible checks
    1) Have you added the Host file in the following path
    C:\WINDOWS\system32\drivers\etc--Hosts
    2) Ping the IP address of the XI Server from Your Local Machine whcih you are trying to conect.
    3) Check whether you have Installes the J2SDK on Your Local Machine
    to check goto Run-cmd--java -version
    Refer these threads same exception came here and It was solved.
    Re: Integration Repository and Integration Directory access problem.
    cannot connect to server using message server ms://host:8120/P4
    Thanks.

  • Changes to .fla don't show up in Flash Builder run

    All,
    So, I've been developing applications in the Flash Pro IDE, and I've decided to try and use Flash Builder 4's advanced coding tools to make things a bit speedier and to help in profiling and debugging.
    The applications I'm looking at creating generally have a lot of complex  graphic elements, and a lot of timeline based animations. So, I still want to use Flash Pro as my drawing/animation tool, but use Flash Builder to test, profile and debug the ActionScript code.
    I've successfully created a new "Flash Professional Project" in Flash Builder.
    It is a very simple project consisting of a Main.fla
    The first time I ran the Project (using the actual Flash Builder "Run" and not the "Test Movie in Flash Professional"), everything went smoothly.
    I was also able to use Flash Builder's "Debug" to successfully debug the application. (Again, not the Flash Professional Debugger).
    So, I wanted to see how/if Flash Builder updates the project if I make a change to a graphic within a .fla file in the project.
    With both Flash Builder 4 and Flash Pro CS5 open, I opened Main.fla and just drew a square Shape on the stage.
    I saved Main.fla, and then went back to Flash Builder.
    I hit F5 to refresh the project, but when I attempted to "Run" the Project, a new browser window opened, but the square was not displayed.
    Same thing happens when I choose "Debug".
    How do I get Flash Builder 4 to update the project so any graphical/animation changes I make in a .fla will be reflected when I Run/Debug in Flash Builder?
    When I hit "Run", Flash Builder opens the "bin-debug/Main.html" file in a new browser window. So, I assume this is the file that is not getting updated... or more accurately... the "bin-debug/Main.swf" that the .html file loads.
    Thanks!

    Hi, Hammer Chick,
    Here are two recent threads where other users have reported
    similar problems:
    "Multiple/broken/repeated
    listings in Search results"
    "Double-entry
    Search results!"
    So the proposed solutions are:
    1) Make a backup of your project, and then rename the .cpd
    file and reenter your project.
    2) Try creating a new single source layout.
    3) Check the hyperlinks in your topics for any that
    inadvertently point to target topics that are above the root folder
    of the help project.
    Pete

Maybe you are looking for

  • How to overrule a exception on the line items?

    Hi, Any suggestion will be appreciated. I have a query where I apply a couple exceptions, one to show all the lines with key figure (KF1) not equal to zero and the other one to hide all the lines with KF1 equal to zero. Is there any way, in the 2nd e

  • My iMac has gotten very slow lately

    Hi! I have an iMac 21.5-inch, purchased August 2010.  OS X 10.8.5 Lately it is been running very slow.  I double-click on an image, and Preview takes 30 seconds to open it.  I have done some reading and ran the EtreCheck report.  I see there are some

  • Employee Search iView  and dyanmic iViews

    We are implementing MSS Business package (mySAPERP 2005). We have a requirement to design a page with Employee search iView ( Team viewer), universal worklist and a report iView. What we are trying to achieve is that if a manager selects an employee

  • Getting Error code.

    I installed AVG Internet security trial. Upon setup, it had me download and run a program by AVG to configure and run for speeding up pc. I did all the recomended things it recomended and then my laptop (Sonny Vaio) win 7 home premium vaio is a quad

  • Photo not working

    I was cropping a photo on the Photo app, but the upper place to allow me to crop isn't there. I can't go back, but I can exit. Does anyone know how to fix this?