USU 6009 counter error: DAQmxBase Error -200428

I want to use USB 6009  as an edge counter. I got this ouput :
create task
createCounterChan
start task
DAQmxBase Error -200428: Value passed to the Task/Channels In control is invalid.
with following code:
 // Channel parameters
   const char  counter[] = "Dev3/ctr0";
   // Read parameters
   uInt32 readArray[1];
   uInt32 arraySizeInSamps=1;
   uInt32 initialCount=0;
   int32 numSampsPerChan=1;
   int32 sampsPerChanRead;
   float64 timeout=100;
   DAQmxErrChk (DAQmxBaseCreateTask ("", &taskHandle));
   printf("create task\n");
   DAQmxErrChk (DAQmxBaseCreateCICountEdgesChan (taskHandle, counter, NULL, DAQmx_Val_Falling, initialCount, DAQmx_Val_CountUp));
   printf("createCounterChan\n");
   // Start Task (configure port)
   DAQmxErrChk (DAQmxBaseStartTask (taskHandle));
   printf("start task\n");
   DAQmxErrChk (DAQmxBaseReadCounterU32 (taskHandle, numSampsPerChan, timeout, readArray, arraySizeInSamps, &sampsPerChanRead, NULL));
   printf("Data read: 0x%X\n",readArray[0]);
Please help

Hello nguyendyhung,
Thank you for posting to the discussion forum. Here is a KnowledgeBase that explains this error.
NI-DAQmx Base Error -200428
http://digital.ni.com/public.nsf/websearch/7705D38D59EF562886256F79007E4B5A?OpenDocument
This document is going to reference LabVIEW, but the theory is still going to be applicable with your code. You can get this error message if the task is not configured correctly.
Also take a look at some of the shipping examples that come with DAQmx Base. You can find them in the following folder:
C:\Program Files\National Instruments\NI-DAQmx Base\Examples
Please take a look at these resources and let us know it resolves your issue.
Regards,
  Sandra T.
Applications Engineer | National Instruments

Similar Messages

  • How can I resolve Exception : "Count Field Incorrect" error

    Hi all,
    I am experiencing with "Count Field incorrect" error. What's wrong with it? How can I resolve it?
    This error is occured at UPDATE function of SQL. My JSP page is to update the old record.
    Sometimes, "Update statement error" message appear. These two problems I always confusing.
    What are the possible point of these error in my Java file and JSP page? I use package import to JSP Page.
    Pls help me.
    With thanks,

    Thanks,
    Your URLs help me exectly. But after I have changed my code, the error is changed to "Too Few Parameters : Expected 35". What's wrong with it? The following is my code.
    try {                                                                                                                                                                                                                
    String DRIVER = ("sun.jdbc.odbc.JdbcOdbcDriver");               
    String URL = "jdbc:odbc:Industrial_One_DSN";
    String sql = "UPDATE BusinessRegistration " +
    "SET [Date] = ?, ISIC = ?, BizName = ?, BizAddress = ?, " +
    "OwnerName = ?, OwnerNRC = ?, Investment = ?, EstablishedYear = ?, " +
    "L_Male = ?, L_Female = ?, F_Male = ?, F_Female = ?, " +
    "OwnershipType = ?, Remarks = ?, IndustialZoneName = ?, Unit = ?, " +
    "Fuel = ?, FactoryType = ?, FactoryName = ?, Township = ? " +
    "MainProductName = ?, MainProductCountType = ?, " +
    "MainProductQuantity = ?, MainProductValue = ?, RMName = ?, " +
    "RMCountType = ?, RMQuantity = ?, RMValue = ?, EnergyName = ?, " +
    "MachinePower = ?, AmountGallon = ?, StateDiv = ?, BizSize = ?  " +
    "WHERE RegistrationID = ?";
    Class.forName(DRIVER);
    Connection con = DriverManager.getConnection(URL);
    PreparedStatement pstmt = con.prepareStatement(sql);
    int ilmale = Integer.parseInt(lmale);
    int ilfemale = Integer.parseInt(lfemale);
    int ifmale = Integer.parseInt(fmale);
    int iffemale = Integer.parseInt(ffemale);
    int impq = Integer.parseInt(mpq);
    int impv = Integer.parseInt(mpv);
    int irmq = Integer.parseInt(rmq);
    int irmv = Integer.parseInt(rmv);
    int iamountgallon = Integer.parseInt(amountgallon);
    pstmt.setString(1, date);
    pstmt.setString(2, isic);
    pstmt.setString(3, bizname);
    pstmt.setString(4, bizaddress);
    pstmt.setString(5, ownername);
    pstmt.setString(6, ownernrc);
    pstmt.setString(7, investment);
    pstmt.setString(8, eyear);
    pstmt.setInt(9, ilmale);
    pstmt.setInt(10, ilfemale);
    pstmt.setInt(11, ifmale);
    pstmt.setInt(12, iffemale);
    pstmt.setString(13, ownershiptype);
    pstmt.setString(14, remark);
    pstmt.setString(15, izn);
    pstmt.setString(16, unit);
    pstmt.setString(17, fuel);
    pstmt.setString(18, ft);
    pstmt.setString(19, fname);
    pstmt.setString(20, township);
    pstmt.setString(21, mpn);
    pstmt.setString(22, mpct);
    pstmt.setInt(23, impq);               
    pstmt.setInt(24, impv);
    pstmt.setString(25, rmname);
    pstmt.setString(26, rmct);
    pstmt.setInt(27, irmq);
    pstmt.setInt(28, irmv);
    pstmt.setString(29, ename);
    pstmt.setString(30, mpower);
    pstmt.setInt(31, iamountgallon);
    pstmt.setString(32, statediv);
    pstmt.setString(33, bizsize);
    pstmt.setInt(34, Integer.parseInt(rid));
    pstmt.executeUpdate();
    }I have got 35 fields in my db. But i wanna edit 34 fields only. I have no primary key in my table. Is't alright?
    pls keep on helping me.
    With thanks,
    WTDAHL

  • "no row count was produced" error using mqsl commands through Access

    "no row count was produced" error using mqsl commands through Microsoft Access. This sql statement works when I use in in the Access program but it does not work when I try and put it through Access using my Java program. Here is the block of code that I have that does the search.
    public static Game searchRecord(String search) throws SQLException{
    String query = "SELECT* " + "FROM gamefields WHERE SKU = '" + search + "' ORDER BY SKU ASC";
    Game lastGame = new Game(gamefields.getString(1),
    gamefields.getString(2),
    gamefields.getString(3),
    gamefields.getString(4),
    gamefields.getString(5),
    gamefields.getString(6),
    gamefields.getString(7),
    gamefields.getDouble(8));
    Statement statement = connection.createStatement(); //Creates connection
    //statment to database
    statement.executeUpdate(query); //Executes the delete query and Updates the database
    statement.close();
    close();
    open();
    return lastGame;

    When you use the code from java, you access access (!) through the ODBC interface. Things can be different in ODBC and Jet. When you use PrepareadStatements, you should be on the save side:
    public static Game searchRecord(String search) throws SQLException
    String query = "SELECT * FROM gamefields WHERE SKU = ? ORDER BY SKU ASC";
    PreparedStatement statement = connection.prepareStatement(query);
    statement.setString(1,  search);
    ResultSet rs = statement.executeQuery(query);
    if(rs.next()
    // if a row retuned extract the details here
    rs.close();
    statement.close();
    return lastGame;
    }

  • Change retry count for temporary errors ?

    Hi,
    by default the counter for temporaryt errors is fixed to the value 3 in the FM SWP_GET_DEFAULT_VALUES.
    If i want to change this value, do i change the FM standard ?

    Apparently I am asleep today. SWWD is not the same as SWDD. But you can overrule this value set in the job per task. There is a tab in the task (called others). Here you can set a maximum number of repeats for temp errors for the task. When this is higher than the value in the job this value is taken ([according to SAPHelp|http://help.sap.com/saphelp_nw70/helpdata/en/96/57f804ef0f11d195280000e82dec10/frameset.htm]).
    Regards,
    Martin

  • Im getting exceptional error for website ...what is the problem for that error..error message is posted below

    The initial exception that caused the request to fail, was:
    com.sap.tc.useragent.UserAgentServiceException: Syntax Error in number '$4' of User-Agent Number Element ID 'engineVersion'.
    at com.sap.tc.useragent.ElementTypeNumber.createElement(ElementTypeNumber.java:34)
    at com.sap.tc.useragent.UserAgentElement.createElement(UserAgentElement.java:34)
    at com.sap.tc.useragent.UserAgentElement.copy(UserAgentElement.java:71)
    at com.sap.tc.useragent.UserAgentTemplate.instantiate(UserAgentTemplate.java:45)
    at com.sap.tc.useragent.detection.RegExpDetector.detectUserAgent(RegExpDetector.java:33)
    ... 62 more
    See full exception chain for details.
    Failed to process request. Please contact your system administrator.
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    For further information about the Web Dynpro error page, error analysis and a description of well-known error situations, see SAP note 1113811.
    Correction Hints
    Exception could be caused by the development component: com.sap.tc.useragent.interface
    Note: The above hints are only a guess. They are automatically derived from the exception that occurred and therefore can't be guaranteed to address the original problem in all cases.
    System Environment
    Client
    Web Dynpro Client Type AJAX Client
    User agent Mozilla/5.0 (Android; Mobile; rv:24.0) Gecko/24.0 Firefox/24.0
    Client Type ff
    Client Type Profile nn7
    ActiveX disabled
    Java Applets enabled
    Accessibility mode disabled
    Inline CSS n/a
    Validate by rendering true
    Server
    Web Dynpro Runtime vendor: 'sap.com', name: 'tc/wd/webdynpro', scV: 'sap.com', scN: 'WD-RUNTIME', location: 'SAP AG', counter: '7.3005.20130111125833.0000', R: '7.30', SP: '5', PL: '20', change number: '255333', codeline: NW730CORE_05_REL
    J2EE Engine 7.30.3710.270166.20130816104554
    System ID (SID) FP1
    Server Node ID |13769650|137696|Server 00 01_137696|ciFP1/10.72.16.58|SERVER|RUNNING
    Java VM SAP Java Server VM, version:6.1.038 19.1-b02, vendor: SAP AG
    Operating system Linux, version: 2.6.32-220.el6.x86_64, architecture: amd64
    Application
    Java EE Application (deployable object) sap.com/pb
    Web Dynpro Application PageBuilder
    Request URI /webdynpro/resources/sap.com/pb/PageBuilder
    Version vendor: 'sap.com', name: 'pb', scV: 'sap.com', scN: 'EP-RUNTIME', location: 'SAP AG', counter: '7.3005.20111228115104.0000', R: '7.30', SP: '5', PL: '4', change number: '160458'
    Session & Other
    Session Locale en_GB
    Session Timezone India Standard Time
    Time of Failure Sun Oct 27 09:59:27 IST 2013 (Java Time: 1382848167814)
    Session User ClientUser(id=USER.PRIVATE_DATASOURCE.un:CC172020, name=CC172020)
    Http Session Id 978BAO1ZCsh8JZ7REyIA575jsir4QQGyG9IA_SAP
    Client Window Id WID1382848129974
    Application Session Id CrXVdgZ0571vfwcUljh9Bw--Q4*zmQ0kblXVHMfCG18ZBg--
    Web Dynpro Code Generation Infos
    sap.com/pb
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:28+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000,
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/pb_api
    WD (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapIdeWebDynproCheckLayer 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:31+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/tc~wd~api
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:04+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:18+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapGenerationFrameworkCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:05:47+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapIdeWebDynproCheckLayer 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:20+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCommon 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:10:50+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:07:26+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelDictionary 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:22:41+0000, changelist=210375, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelWebDynpro 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:36+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:36+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:43+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproRuntimeGen 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:37:00+0000, changelist=223591, host=pwdfm257, is-central=true)

    Oh man it looks like a problem with the web server.
    Its an error that happens on SAP, even my dad reported an error like this to me but i wasn't able to solve it.
    What i find is that its an error with browser incompatibility,
    Check this http://scn.sap.com/message/10338540

  • SCSM 2012 R2 Authoring Tool Setup Error "An error occured while executing a custom action:_RegMainEditorPackage"

    Screenshot:
    Setup Log:
    Property(S): ProductToBeRegistered = 1
    MSI (s) (8C:BC) [10:55:05:914]: Note: 1: 1708
    MSI (s) (8C:BC) [10:55:05:914]: Note: 1: 2205 2:  3: Error
    MSI (s) (8C:BC) [10:55:05:914]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1708
    MSI (s) (8C:BC) [10:55:05:914]: Note: 1: 2205 2:  3: Error
    MSI (s) (8C:BC) [10:55:05:914]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (8C:BC) [10:55:05:914]: Product: Microsoft System Center 2012 R2 Service Manager Authoring Tool -- Installation failed.
    MSI (s) (8C:BC) [10:55:05:914]: Windows Installer installed the product. Product Name: Microsoft System Center 2012 R2 Service Manager Authoring Tool. Product Version: 7.5.3079.0. Product Language: 1033. Manufacturer: Microsoft Corporation. Installation
    success or error status: 1603.
    MSI (s) (8C:BC) [10:55:05:918]: Deferring clean up of packages/files, if any exist
    MSI (s) (8C:BC) [10:55:05:918]: MainEngineThread is returning 1603
    MSI (s) (8C:78) [10:55:05:920]: RESTART MANAGER: Session closed.
    MSI (s) (8C:78) [10:55:05:920]: No System Restore sequence number for this installation.
    === Logging stopped: 2/27/2014  10:55:05 ===
    MSI (s) (8C:78) [10:55:05:921]: User policy value 'DisableRollback' is 0
    MSI (s) (8C:78) [10:55:05:921]: Machine policy value 'DisableRollback' is 0
    MSI (s) (8C:78) [10:55:05:921]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (8C:78) [10:55:05:921]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (8C:78) [10:55:05:921]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (8C:78) [10:55:05:922]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (s) (8C:78) [10:55:05:922]: Restoring environment variables
    MSI (s) (8C:78) [10:55:05:922]: Destroying RemoteAPI object.
    MSI (s) (8C:9C) [10:55:05:922]: Custom Action Manager thread ending.
    MSI (c) (E4:DC) [10:55:05:923]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (E4:DC) [10:55:05:924]: MainEngineThread is returning 1603
    === Verbose logging stopped: 2/27/2014  10:55:05 ===
    I am trying to install on Windows 7 Ent. and Windows 2012 (both attempts fail with same error).
    The VS 2008 shell piece was installed, however, as others have experienced the prereq check issue, I removed it from the input file in the setup folder, which resolved that piece. 
    Any suggestions?
    Thank you.
    Regards, Zoeb Khan

    When installing the VS Isolated Shell, make sure the actual binaries (found on the root drive or where you extract the web installer) are installed. This will resolve the above error and also the Prerequisite issue that a lot of people are coming across.
    Regards, Zoeb Khan

  • Error "Compile error: Invalid character" after copy paste operations in VBE 6.5 PowerPoint 2011

    This is a weird problem with the VBE 6.5 in Office 2011, running natively on a Mac.
    Sometimes, yet often, when I select a word by double clicking on it or a line by highlighting that line in the editor and then copy/paste it somewhere else in the code, the compiler throws the error "Compile error: Invalid character"
    The thing is, what I see has been pasted is exactly the same as the source text. However, if I then paste the same clipboard item to a text editor, I can see that there is an 'invisible' character at the end of the string which is counted in the text editor
    where the cursor is shifted past it but does not shown on the screen!!!
    Back in the VBE, if I select a line that is dubious and drag it, the semi transparent dragged text has a '>' character on a new line.
    In some copy/paste cases, the compiler doesn't see an error but the code doesn't work as expected and I have spent hours debugging stuff that has invisible characters in it (the hardest debugging I've ever had to do!).
    I'm not sure if this example will paste correctly into the forum but this looks like 19 characters but is in fact 20 as there is the offending copy/paste invisible character between 'Test' and '.'
    <code>Test.Value = False</code>
    This seems to be a major oversight in the code of the VBE 6.5 so are Microsoft aware of this and when is it due to be fixed?
    Jamie.

    I had this exact issue.  This is a terrible bug.  The code looks perfect, but there are hidden characters that throw compiler errors.  Thanks for the quick fix, Microsoft.

  • Strange error: gpib error when using DAQmx

    Hello
    I try to out put a single puls using a counter on a PCI-6602 Board with the attached LabVIEW code.
    Strangely I get  the following error message:
    "Error 3 occurred at an unidentified location
    Possible reason(s):
    LabVIEW:  Internal error. Wrong memory zone accessed.
    =========================
    NI-488:  GPIB Controller not addressed correctly."
    Why do I get an GPIB-Error, although I don't even use a GPIB-Card?
    Attachments:
    ShortTrigger3.vi ‏23 KB
    ErrorMessage.GIF ‏9 KB

    Hello!
    The problem is coming from the simple error handler.
    The Simple Error Handler cannot decide if plots error + warnings, or only errors.
    You cannot put your enumerator to the simple error handler, it works only with the general error handler.
    In your program you are giving to the simple error handler a number 3 as error code. The VI convert this error number 3 with the error GPIB you received.
    You should so replace the Simple Error Handler.vi with the General Error Handler.vi
    Best regards
    Ken

  • Hitting error LDAP: error code 20 - mail attribute has duplicate value.

    Hi ,
    Anyone  faced this issue before LDAP: error code 20 - mail attribute has duplicate value. We are getting this error intermittently  in oid logs and 
    and due to that  provisioning stuck . I know that the issue due to the object class mismatch in attributes. But  map profile looks fine . Anything else need to check ?
    SSO verion 10.4.1.3 and DB version 10g .
    javax.naming.directory.AttributeInUseException: [LDAP: error code 20 - mail attribute has duplicate value.]; remaining name 'uid=abc,cn=users,dc=xyz ,dc=com'
            at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2972)
            at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2934)
            at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2740)
            at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1440)
            at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDirContext.java:255)
            at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:172)
            at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(PartialCompositeDirContext.java:161)
            at javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.java:146)
            at oracle.ldap.odip.gsi.LDAPWriter.modify(LDAPWriter.java:479)
            at oracle.ldap.odip.gsi.LDAPWriter.writeChanges(LDAPWriter.java:318)
            at oracle.ldap.odip.engine.AgentThread.mapExecute(AgentThread.java:656)
            at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:377)
            at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:238)
    DIP_LDAPWRITER_ERROR_MODIFY
    Error in executing mapping DIP_LDAPWRITER_ERROR_MODIFY
    DIP_LDAPWRITER_ERROR_MODIFY
            at oracle.ldap.odip.engine.AgentThread.mapExecute(AgentThread.java:830)
            at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:377)
            at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:238)
    DIP_LDAPWRITER_ERROR_MODIFY
    Setting Change Success Count : 27682
    Setting Change Failure Count : 11004
    CDSImportProfile:Error in Mapping EngineDIP_LDAPWRITER_ERROR_MODIFY
    DIP_LDAPWRITER_ERROR_MODIFY
            at oracle.ldap.odip.engine.AgentThread.mapExecute(AgentThread.java:851)
            at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:377)
            at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:238)
    CDSImportProfile:about to Update exec status

    did you search the LDAP server to see whether the email value you try to use already exist ?  typically LDAP server do not care whether email is duplicated or not, but by default OIM server do not allow duplicated email

  • Error: 544 Error in File UNKNOWN.RPT

    I have an application that is still running Crystal 8.5 Reports.
    I periodically get the following error:
    Error: 544 error in file unknown.rpt.
    Access to report file denied. Another program may be using it.
    Open print job <PEOpenPrintJob>.
    There does not seem to be any consistency to when it happens.
    The reports reside on a server and the runtime application uses a.rpt on a shared directory.
    I can identify the last user to successfully print the report, have them logout of the application and the error goes away for a while. Different users can continue to print using the same .rpt. Then the problem comes back a little while later.
    It only appears to happen to one of the reports
    If I reboot the server the problem goes away for a couple of days. Then it comes back again.
    I have verified and reverified the report and all seems to be OK.
    Any suggestions are appreciated.
    Thanks,
    Leonard

    Thanks Don,
    I'm sure that is the problem.
    I am using Delphi 7 and creating the Crpe Object  during runtime by using the procedure to follow.
    Can you tell me how I would set the AsTempCopy option during runtime?
    Also, my entire application is using crpe32.dll to run reports. Are you saying I can no longer do this?
    We have purchased and tested crystal XI with my application I have just put off implementation in favor of other priority projects. Are there many enhancements to Crystal 2008 or can I save on the upgrade right now and implement XI?
    procedure TfrmPOPrint.btnPrintClick(Sender: TObject);
    var x: integer;
        cr: TCrpe;
    begin
      inherited;
      cr := TCrpe.Create(nil);
      cr.WindowButtonBar.PrintSetupBtn := True;
      cr.OnWindowClose := crWindowClose;
      if (Sender as TButton).Tag = 0 then
          cr.Output := toPrinter
      else
          cr.Output := toWindow;
      try
        cr.ReportName := '';
        cr.ReportName := fcrReportPath + fcrReportName;
        x:=0;
        while x < cr.ParamFields.Count do
        begin
          if (UpperCase((cr.ParamFields[x].Name)) = 'USERNAME')then
              cr.ParamFields[x].CurrentValue := Username;
          inc(x);
        end;
        cr.execute;
      finally
        cr.Free
      end;
    end;

  • IManager Error: NDS Error -610

    We ugraded from BM3.8sp5 to BM3.9SP2 last night. We tested it the last week in our test environment. In de testfase everything went well.
    This morning I installed the bm39_iman27 plugins into iManager 2.7.3. There were no errors during installation.
    Under Roles and tasks-Bordermanager there are only 4 items (Access Rules, Legacy Filter Configuration, Proxy Services and VPN Services). In the test there were a few more items
    (Access Rules, Easy Filter Configuration, Filter Maintenance, Legacy Filter Configuration, List All Firewall Policies, Proxy Services, VPN Services).
    While opening for example Proxy Services in production, there are a lot of lines on the logger screen with count and a number. At last there is the Error: NDS Error -610
    Any suggestions?
    Thanks,
    Erik

    In article <jteLm.2561$[email protected]>, Erik wrote:
    > This morning I installed the bm39_iman27 plugins into iManager 2.7.3. There were no errors during
    installation.
    > Under Roles and tasks-Bordermanager there are only 4 items (Access Rules, Legacy Filter
    Configuration, Proxy Services and VPN Services). In the test there were a few more items
    > (Access Rules, Easy Filter Configuration, Filter Maintenance, Legacy Filter Configuration, List All
    Firewall Policies, Proxy Services, VPN Services).
    >
    Are you trying to use iManager to manage filter exceptions? The missing items are related to
    filtering. I just use FILTCFG to manage filters instead of iManager.
    Have you checked the Roles and Tasks in the iManager config menu? You might have to update RBS.
    > While opening for example Proxy Services in production, there are a lot of lines on the logger screen
    with count and a number. At last there is the Error: NDS Error -610
    OK, there's an issue with DS perhaps. The 610 error is illegal DS name. Could be some sort of problem
    in iManager, or perhaps an issue in DS. Do you have a replica on the server? Have you run DSREPAIR on
    the server? Do you have this error just when trying to select the proxy option, or do you get to the
    server name search field prompt? Do you have a long server name for the BM server?
    You can manage BM 3.9 from any iMan 2.7.x that has the plugins installed, including a Windows version
    running on your PC. Or an iMan 2.7.x installed in another tree.
    Craig Johnson
    Novell Support Connection SysOp
    *** For a current patch list, tips, handy files and books on
    BorderManager, go to http://www.craigjconsulting.com ***

  • Error: 1200370 Error executing formula

    Hi,
    I am running a calc script, which is verified successfully but is getting failed with following error:
    Error: 1200370 Error executing formula for [EffectedDistrict] (line 138): attempt to cross a null member in function
    Code at line 138 is:
    Normal= @SUMRANGE(normal, @RELATIVE(@CURRMBR("districts"),0));
    where 'normal' and 'districts' are the members in my outline and districts is having lot many districts as children.
    Please help me in resolving this
    Thanks,
    Ashish

    In 11 there is a set command SEt EMPTYMEMBERSETS On;^^^SET EMPTYMEMBERSETS is also available in System 9: http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/calc/set_emptymembersets.htm
    For once I get to correct you Glenn, no matter how small or trivial the correction may be. My ego requires me to count my successes -- I think the above is number four for me versus eleventy billion for you. :)
    Regards,
    Cameron Lackpour

  • Getting error "SQL error in the database when accessing a table."

    Hi All,
    We are getting Dump Error SQL error in the database when accessing a table for the batch job EISSD/REQUISITION 14 / which includes program AQ20FD==========A2============. Please reply. The Dump error details are as follows
    Short text
        SQL error in the database when accessing a table.
    How to correct the error
        Database error text........: "ORA-01555: snapshot too old: rollback segment
         number 21 with name "_SYSSMU21$" too small"
        Internal call code.........: "[RSQL/FTCH/VBRK ]"
        Please check the entries in the system log (Transaction SM21).
    Thanks
    Padmakar Kudtarkar
    Edited by: Rob Burbank on May 19, 2011 9:38 AM

    The query where we are getting error in Standard program AQ20FD==========A2============ for Job
    EISSD/REQUISITION 14 / is as follows:
    select VBRKBUKRS VBRKFKART VBRKFKDAT VBRKFKTYP VBRKGJAHR VBRKKUNAG VBRKKUNRG VBRKKURRF VBRKVBELN VBRKWAERK VBRP~AUBEL
           VBRPAUPOS VBRPFKIMG VBRPKVGR2 VBRPKZWI1 VBRPMATNR VBRPMWSBP VBRPNETWR VBRPPSTYV VBRPVBELN VBRPVGBEL VBRP~VGPOS
           VBRPVKBUR VBRPVKGRP VBRPVRKME VBRPWAVWR
    into (VBRK-BUKRS , VBRK-FKART , VBRK-FKDAT , VBRK-FKTYP , VBRK-GJAHR , VBRK-KUNAG , VBRK-KUNRG , VBRK-KURRF , VBRK-VBELN
         , VBRK-WAERK , VBRP-AUBEL , VBRP-AUPOS , VBRP-FKIMG , VBRP-KVGR2 , VBRP-KZWI1 , VBRP-MATNR , VBRP-MWSBP , VBRP-NETWR
         , VBRP-PSTYV , VBRP-VBELN , VBRP-VGBEL , VBRP-VGPOS , VBRP-VKBUR , VBRP-VKGRP , VBRP-VRKME , VBRP-WAVWR )
    from ( VBRK
           inner join VBRP
           on VBRPVBELN = VBRKVBELN )
           where VBRK~BUKRS in SP$00004
             and VBRK~FKDAT in SP$00001
             and VBRK~KUNAG in SP$00002
             and VBRK~VBELN in SP$00006
             and VBRP~MATNR in SP$00003.
      %dbacc = %dbacc - 1.
      if %dbacc = 0.
        stop.
      endif.
      check SP$00004.
      check SP$00001.
      check SP$00002.
      check SP$00006.
      check SP$00003.
      add 1 to %count-VBRK.
      %linr-VBRK = '01'.
      extract %fg01.
      %ext-VBRP01 = 'X'.
        extract %fgwrVBRP01.
    endselect.

  • Mail archiving throws I/O error : encoder error

    I've archived a few old mail folders and have one that is giving me some issues. There are a few thousand items in the folder but during the process where mail is "updating color for message y of x" it grinds to a halt and throws sporadic "I/O error : encoder error" to console. The status count will update eventually but it's taking forever! Mail that is being archived is coming off an IMAP folder.

    I should add, my HDD is fine - I run smartreporter and there is no IO issue with the drive itself. Seems like something with these messages via IMAP is causing the IO.

  • Error: Automation Error while creating a new app

    Hello Experts,
    Have installed FDM on one of our servers and trying to create a new application.
    Getting the following Error:
    Error: Automation Error. The System cannot find the file specified.
    We are using Oracle OLE DB Provider.
    Kindly Advise.
    Edited by: user7313376 on Apr 16, 2009 12:23 PM

    Check the path of the application and if its installed on server,pl check whether you have access to that path.
    If not get full access.

Maybe you are looking for

  • Yosemite mail attachments

    OSX Yosemite 10.10 MacBook Pro 17", 2009 Mail 8.0 Whe I attach in Mail a jpg file the recipient (windows) see the file as a bits map and he can not open and edit. I were sure to mark the attachment like a windows compatible file What to do? Thanks

  • Network time machine backup not showing on Yosemite

    Hi, One of the people within the office is having a problem with their Time machine backups. The password had been changed on the computer where the hard drive is shared but they where not concerned with their backups as they are using a Macbook so t

  • ICloud photo library size

    Hi all, I just have a quick question regarding iCloud photo library size. What happens when the iCloud photo library is larger than the space on my iPhone? My iCloud photo library size is 4gb (I am still within the free 5gb) however, the space on my

  • Can not get BT Vision app

    Hi all,when following the instructions to activater the BT Vision app, I log in etc fine, confirm my account number, but the system then tells me there is an open order on my line?  I am not aware of anything open.  This seems to be blocking me activ

  • Close reference from event data node

    When using an event structure, I often times use the Control Reference output in the Event Data Node.  Do I need to close these references each time the corresponding event fires?  In other words, are the reference created from this node unique each