Replace Text script returns error when dropped in automator

Hi Friends,
I have a series of pdfs that were saved with spaces in their file names. I need to put them into folders for a website (there's a lot). Pretty newbie on this too but I figured I'd try.
I tried using the example script "Replace Text in Item names" which worked on it's own.
(hd:applications:applescript:example scripts:finder scripts)
When I applied it as an action in Automator, I would get an error about "expected end but found on."
I think that resulted from the default script. So I deleted that. Put the replace script in.
I cut out the dialog boxes and specified folders, search, and replacement items. And cut out the second half (after the beep)
However as I step through, when I get to the script it returns the error: No result was returned from some part of this expression.
So I'm not sure what I'm missing.

It is hard to tell without seeing the mangled modified script. Your main problem is probably related to the run handler, which needs to be defined in Automator's Run AppleScript action. Every AppleScript has a run handler, but in the case of the Replace Text in Item Names it is implied (not explicitly defined). You will need to place the main statements of the script inside the Run AppleScript action on run handler, leaving the other handlers (for example, setitemname) outside of the run handler.

Similar Messages

  • RMAN script gives error when scheduled

    Hi,
    I have this rman script....
    run {
    allocate channel 'dev_0' type 'sbt_tape'
    parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=TPRD,OB2BARLIST=test TPRD)';
    backup incremental level <incr_level>
    format 'test TPRD<TPRD_%s:%t:%p>.dbf'
    database;
    backup
    format 'test TPRD<TPRD_%s:%t:%p>.dbf'
    archivelog all;
    backup
    format 'test TPRD<TPRD_%s:%t:%p>.dbf'
    current controlfile;
    When this script is executed to run at the present moment, it gives no problems. However, when this script is scheduled and when executed at the scheduled time, it gives the following error:
    RMAN> CONNECT TARGET *
    2> run {
    3> allocate channel 'dev_0' type 'sbt_tape'
    4> parms 'ENV=(OB2BARTYPE=Oracle8,OB2APPNAME=TPRD,OB2BARLIST=test TPRD,OB2BARHOSTNAME=+server.com+)';
    5> backup incremental level
    6> format
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "format": expecting one of: "equal, integer"
    RMAN-01007: at line 6 column 1 file: C:/ob2.cmdfile.12274.c1e9.rman
    [Major] From: ob2rman@+server.com+ "TPRD" Time: 2-11-2009 13:35:16
    The database reported error while performing requested operation.
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "format": expecting one of: "equal, integer"
    RMAN-01007: at line 6 column 1 file: C:/ob2.cmdfile.12274.c1e9.rman
    [Major] From: ob2rman@+server.com+ "TPRD" Time: 2-11-2009 13:35:16
    Oracle Recovery Manager completed with errors.
    Does anyone know what the problem is and why it only gives the error when it is scheduled and not otherwise?
    Thanks in advance.

    Hi user629987,
    The error comes from the following line
    backup incremental level <incr_level>(found "format": expecting one of: "equal, integer"
    see link:
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96565/rcmsynta9.htm#78484)
    Can you replace it with
    backup incremental level 0and retry?
    Might be you have to adjust your format string to avoid <, > and : characters.
    Regards,
    Tycho

  • Error when dropping a user/tablespace

    Hi
    I am trying to drop user/tablespaces, but I got the following error
    SQL> drop user SM92 cascade;
    drop user SM92 cascade
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00942: table or view does not exist
    Currently this user has not tables or view, the statement select * from all_tables where owner='SM92' return no row
    ANyone knows why I can't drop this user? What should I check?
    Thanks
    Li

    Hi, probably the user has dependency with other schemas, please review the Note:361576.1 into metalink site.
    Good luck.
    Regards.

  • Basic Search portlet returns error when Display in New Browser Window set

    Ora AS Portal 10G release 2 (10.1.2.x)
    Have a region of type Portlets.
    The enable users to include content in this region is enabled.
    I added a Basic Search Portlet in this region.
    Basic search works fine if launched from current area, however if change attributes of region to have a link that displays item in new browzer window, then
    basic search portlet opens in new browzer window but returns error "Error: You do not have permission to perform this operation. (WWC-44131)"
    The Basic search portlet in the new window contains a link to advanced search. If use advanced search, results are returned.
    to test further, I added a advanced search portlet to this region, also with the display option to display item in a new window. In this case, the same error is obtained when doing a search.
    Has anyone experienced this?
    Any solutions?
    Thks in advance.
    Paulo

    Hi,
    Can you clarify what you mean by "change attributes of region to have a link that displays item in new browzer window"?
    Are you referring to Edit Region > Attributes tab ? Which of the Available Attributes did you select?
    Thanks,
    Chris

  • Shell Script gives error when run through cron job.

    Hi,
    The following shell script runs without any problem when executed manulally.
    USED=$(df -h /arch | tail -1 | awk '{print $5}' | cut -d '%' -f 1)
    if [ ${USED} -gt 90 ]
    then
    find /arch/AUBUAT/ -type f -mtime +0 | xargs rm
    find /arch/AUBMIG/ -type f -mtime +0 | xargs rm
    fi
    But the same gives below error when called from a cron job:
    /backup/arch_test.sh: syntax error at line 1: `USED=$' unexpected
    We are running following version:
    bash-3.00$ uname -a
    SunOS uaeaubdbdr01.aub.af 5.10 Generic_141444-09 sun4u sparc SUNW,SPARC-Enterprise
    Kindly assist.
    Thanks
    Edited by: user13362786 on Apr 20, 2011 4:36 AM

    Hi,
    When I used #!/usr/bin/sh now even the manul execution of the script fails with the same err:
    bash-3.00$ ./arch_test.sh
    ./arch_test.sh: syntax error at line 2: `USED=$' unexpected
    And when I used #!/usr/bin/ksh the manual execution runs fine but again when the script is run from cronjob it now give dirrect err:
    /backup/arch_test.sh[2]: df: not found
    /backup/arch_test.sh[2]: tail: not found
    /backup/arch_test.sh[2]: cut: not found
    /backup/arch_test.sh[2]: awk: not found
    /backup/arch_test.sh[3]: test: argument expected

  • Bug Report - DB toolkit returns error when calling the DefaultDatabase property with SQLite

    There's an old bug in the DB toolkit where calling the DefaultDatabase property returns error -2147217887 if you're using certain DBs (such as SQLite or PostgreSQL and I believe MySQL as well).
    The problem is that this property is called by a VI which is used in some of the commonly used VIs (such as the insert VI),
    causing them to fail. Whoever wrote the code was aware of this issue,
    since they added a comment about it, as you can see below.
    The immediate fix for this is pretty easy -  add code to ignore the error or don't call the property at all. It's not used anywhere in the toolkit and unless you're using the VI yourself to get the property, this won't break any code. The problem with this is that you need to do this in every PC.
    NI already has a CAR for this (CAR 232063) and should hopefully fix it, so there's no need to take further action at the moment. This post is for people searching for this in the future.
    Try to take over the world!

    Interesting. I have seen this before but it returned a different error code. (Error -2147352567)
    =====================
    LabVIEW 2012

  • Error when dropping a script usind dbms_recoverable_script

    Hi all, I am trying to set up streams on Oracle 11g R2 on Windows 2008 server. The streams propagation failed with an error.
    SQL> select * from dba_recoverable_script;
    SCRIPT_ID                        CREATION_ INVOKING_PACKAGE_OWNER
    INVOKING_PACKAGE               INVOKING_PROCEDURE
    INVOKING_USER                  STATUS       TOTAL_BLOCKS DONE_BLOCK_NUM
    SCRIPT_COMMENT
    9F726B92950A4DB2A76416714F134A6A 07-OCT-13 SYS
    DBMS_STREAMS_ADM               MAINTAIN_TABLES
    STRMADMIN                      ERROR                  72             23
    Now I just want to drop the script and start all over again but i get the below error? STRMADMIN user does have DBA privs, please help. Regards,
    SQL> exec dbms_recoverable_script.drop_script(script_id=> '9F726B92950A4DB2A76416714F134A6A');
    BEGIN dbms_recoverable_script.drop_script(script_id=> '9F726B92950A4DB2A76416714F134A6A'); END;
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'DBMS_RECOVERABLE_SCRIPT.DROP_SCRIPT' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored

    Hi,
    -- replace the raw value with the one you receive
    exec dbms_recoverable_script.drop_script(TO_RAW(TO_BLOB('CB68CBC3E4264A1680AE4620CFE6CD66')));
    Please cheek this link: Morgan's Library Oracle DBMS_RECOVERABLE_SCRIPT Examples Sample Code Demos Tutorials SQL PL/SQL Streams&lt;/title&gt;&lt…
    Thank you

  • Script Logic error when trying to Calculate P*Q

    I am new to MDX and Script Logic and need some help. 
    I am trying to calculate Price * Qty.  Prices are stored in an Account called Unit_Price, and Qtys are stored in Accounts as well.  We have a Service property called "DRIVER" that points to the Account that holds the Q for that Service, but I can't seem to refer to it in Script Logic.  So, for each Service, I want to find the corresponding Unit_Price, lookup the Driver for that service and then use that to find the corresponding Quantity.  However, I'm having trouble with the portion that points to the Quantity. 
    Can someone please help? 
    This is the error that I get when I try to run it in the Logic Debugger: 
    "Warning no. -2147467259 reading cell 0; The hierarchy '[SERVICE.DRIVER]' was not found in the cube when the string, [ACCOUNT].[SERVICE.DRIVER],was parsed. "
    Here is my Script Logic:
    *MEMBERSET(%BILL_ENTITY%,FILTER(DESCENDANTS([ENTITY].[547],99,LEAVES), [ENTITY].CurrentMember.Properties("BILLED_ENTITY")="X") )
    *XDIM_MEMBERSET ENTITY = %BILL_ENTITY%
    *MEMBERSET(%PQ_SERVICE%,FILTER(DESCENDANTS([SERVICE].[TOTAL_SERVICE],99,LEAVES), [SERVICE].CurrentMember.Properties("ALLOC_METHOD")<>"") )
    *XDIM_MEMBERSET SERVICE=%PQ_SERVICE%
    *XDIM_MEMBERSET CATEGORY = %CATEGORY_SET%
    *XDIM_MEMBERSET TIME = %TIME_SET%
    *XDIM_MEMBERSET DATASRC = INPUT
    *FOR SERVICE.ALLOC_METHOD = "PQ" 
                [ACCOUNT].[#16404ZZZ] = ( [ACCOUNT].[UNIT_PRICE], [TIME].currentmember) * ([ACCOUNT].[SERVICE.DRIVER], TIME].currentmember)
    *NEXT           
    *COMMIT

    1. completely uninstall all the nokia PC Suite products with this http://nds1.nokia.com/files/support/global/phones/software/Nokia_PC_Suite_Cleaner_7_1_1.exe, and also uninstall all OVI Suite products
    2. reboot pc
    3. download & Install a fresh copy of PC Suite
    4. it will then have you download and install a new version of the software installer after you connect your e90
    it should be fine after that. i had to do the same thing a while back.
    re: no able to sync the calendar with ovi suite:
    go to the Sync drop down and then select Sync Calendar.
    hope that helps

  • [10G2 on XP PRO] Rename file script returns error

    Hi,
    I mistakenly created a "Users03" datafile without the .dbf extension.
    Now I would like to add it in order to use wildcards in scripts.
    Here is the "Rename" script:
    >
    alter tablespace users rename datafile
    'l:\oracle\product\10.2.0\oradata\oracompta\users01.dbf',
    'l:\oracle\product\10.2.0\oradata\oracompta\users02.dbf',
    'l:\oracle\product\10.2.0\oradata\oracompta\users03'
    to
    'l:\oracle\product\10.2.0\oradata\oracompta\users01.dbf',
    'l:\oracle\product\10.2.0\oradata\oracompta\users02.dbf',
    'l:\oracle\product\10.2.0\oradata\oracompta\users03.dbf'
    Here are the output from the "dba_datafiles" view and error message for the rename:
    >
    SQL> @c:\jb\data\sources\oracle\dba\datafiles
    ...[RETURN].......
    FILE_NAME TABLESPACE_NAME AUTO MAXBYTES INCREMENT_BY
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\EXAMPLE01.DBF EXAMPLE YES 34359721984 80
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\SYSAUX01.DBF SYSAUX YES 34359721984 1280
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\SYSTEM01.DBF SYSTEM YES 34359721984 1280
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\UNDOTBS01.DBF UNDOTBS1 YES 34359721984 640
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\UNDOTBS02.DBF UNDOTBS2 YES 629145600 12800
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\USERS01.DBF USERS
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\USERS02.DBF USERS
    L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\USERS03 USERS
    8 ligne(s) sélectionnée(s).
    SQL> @c:\jb\data\sources\oracle\dba\renamefile
    alter tablespace users rename datafile
    ERREUR à la ligne 1 :
    ORA-01525: échec du changement de noms de fichier de données
    ORA-01523: impossible de renommer le fichier de données en 'l:\oracle\product\10.2.0\oradata\oracomp
    Maybe there is some limit to the input line length in SQL*Plus?
    I can't find how to rename a datafile from the OEM console.
    Looks like I'll have to create a "usersbis" tablespace and copy every object into it, then drop users tablespace.
    Or I'll find an inocuous DBA command to test the correct syntax for referencing datafiles names under Windows.
    Many thanks for your help :-)

    Hi,
    I tried your commands after a cold backup.
    Here is the SQL*PLUS output:
    ******************** QUOTE ********************************************
    SQL> startup mount
    Instance ORACLE lancée.
    ...[RETURN].......
    Total System Global Area 272629760 bytes
    Fixed Size 1248504 bytes
    Variable Size 100664072 bytes
    Database Buffers 167772160 bytes
    Redo Buffers 2945024 bytes
    Base de données montée.
    SQL> alter tablespace users rename datafile
    2 'l:\oracle\product\10.2.0\oradata\users03'
    3 to
    4 'l:\oracle\product\10.2.0\oradata\users03.dbf';
    alter tablespace users rename datafile
    ERREUR à la ligne 1 :
    ORA-01109: base de données non ouverte
    SQL> alter database open;
    alter database open
    ERREUR à la ligne 1 :
    ORA-01157: impossible d'identifier ou de verrouiller le fichier de données 7 - voir le fichier de tr
    ORA-01110: fichier de données 7 : 'L:\ORACLE\PRODUCT\10.2.0\ORADATA\ORACOMPTA\USERS03'
    SQL> alter tablespace users rename datafile
    2 'l:\oracle\product\10.2.0\oradata\users03'
    3 to
    4 'l:\oracle\product\10.2.0\oradata\users03.dbf';
    alter tablespace users rename datafile
    ERREUR à la ligne 1 :
    ORA-01109: base de données non ouverte
    ********************** END QUOTE ********************************************
    I must have done something wrong.
    I'll try renaming the file from DOS and open the database.
    Many thanks for your reply.

  • Ora-00600 error when dropping a table

    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    When I tried to drop a table, I got 600 error:
    SQL> desc DEV.ATTR_IDX$EX
    Name Null? Type
    NODE_ID NOT NULL NUMBER
    COL1 NUMBER
    SQL> show user;
    USER is "DEV"
    SQL> select count(*) from DEV.ATTR_IDX$EX;
    COUNT(*)
    0
    SQL> drop table DEV.ATTR_IDX$EX;
    drop table DEV.ATTR_IDX$EX
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [15265], [], [], [], [], [], [], [],
    SQL> drop table DEV.ATTR_IDX$EX purge;
    drop table DEV.ATTR_IDX$EX purge
    ERROR at line 1:
    ORA-00600: internal error code, arguments: [15265], [], [], [], [], [], [], [],
    I guess this is because it had a parent table, which I dropped (I used "drop table <parent_table>", and it did not give me error, very strange).
    SQL> select dbms_metadata.get_ddl('TABLE','ATTR_IDX$EX') from dual;
    DBMS_METADATA.GET_DDL('TABLE','ATTR_IDX$EX')
    CREATE TABLE "DEV"."ATTR_IDX$EX"
    ( "NODE_ID" NUMBER NOT NULL ENABLE,
    "COL1" NUMBER,
    FOREIGN KEY ("NODE_ID")
    REFERENCES () ON DELETE CASCADE ENABLE
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"
    MONITORING
    Try to drop FK constraints yields the same error.
    So now how can I drop this table table, any work around?
    Thanks.

    This is a bug. There is no Patch avaialble for this yet. This error is seen where recyclebin is enabled. Possible workaround is to disable the recyclebin.
    This happens with the dictionary corruption due to inconsistency between obj$ and seg$.
    This is a correct answer but still i would suggest to contact Oracle support.

  • ORA 3113 error when dropping user

    I have an instance of oracle 9.2 that when I drop a user I get the ORA-3113 error.
    I have no other problems with this database, It can be started and stopped with out error, users can connect...etc.
    I tried the following oracle solution without success
    Subject:      ORA-03113 While Dropping a User     
          Doc ID:      Note:291186.1     Type:      PROBLEM     
          Last Revision Date:      21-JUL-2005     Status:      MODERATED     
    The information in this document applies to:
    Oracle Server - Enterprise Edition - Version: 9.2.0.5
    This problem can occur on any platform.
    Errors
    ORA-03113 "end-of-file on communication channel"
    Symptoms
    ORA-03113 is thrown, while dropping a User
    SQL> drop user test9 cascade;
    ORA-03113 end-of-file on communication channel
    Cause
    Corrupted password file
    Check whether REMOTE_LOGIN_PASSWORDFILE is set to { SHARED | EXCLUSIVE}
    Fix
    -- Recreate the password file.
    ++ $ orapwd file=orapw<sid> password=<sys's password> entries=<max # user's>
    NOTE:
    -- Set the REMOTE_LOGIN_PASSWORDFILE=NONE
    -- Drop the user
    -- If it is successful, You are hitting this problem.

    Are u getting this error sometimes while connecting to DB.
    If not check the trace file generated on the server at failure time.
    Regards
    Raman

  • Agilent 34970A doesn't return error when it should

    See attached subvi. When I run this in my main vi and enter nothing in the RELAY string control (which is the required scanlist for the Agilent) and click RESET, the Agilent, as expected, beeps and displays an error on the front panel but the error status in this vi doesn't go true. Why not? (The Agilent Initialize.vi occurs before this vi is run in the main vi.)
    Attachments:
    RESET.vi ‏20 KB

    Why should there be an error returned? There is no error in writing or reading. You are not doing an error query of the instrument.
    If you were to use the driver, you would find the error query function and you could place that in your code to check to see if you have sent an illegal command. What would be better though, would be to ensure that the value that is entered into the string is valid before wasting the time with the VISA Write and Read. An empty string should never be allowed to exit the while loop.

  • EEM Scripting for error and drop counters

    Hi,
    We want to check the following counters for drops every 5 minutes and generate an alarm if a certain threshold of errors (example: increment of 100 in the error/drop counters in the last 5 minutes) is overcome:
    My sample script is inline, i'm missing how to parse and generate the alarm if the threshold is surpassed:
    Example command:
    SPLAB_7600_3#remote command module 4 show platform hardware drops | include Selene|drp                
    ------ Selene 0 Channel 0 ------
    Selene Ingress Drop Counters Ch[0]
    Selene Egress Drop Counters Ch[0]
        egr_tot_fifo_drp_ctr                          25
    Selene Drop Counters
    ------ Selene 1 Channel 0 ------
    Selene Ingress Drop Counters Ch[0]
    Selene Egress Drop Counters Ch[0]
    Selene Drop Counters
    Best Regards,
    Afonso
    ::cisco::eem::event_register_timer watchdog time $check_interval nice 1
    # EEM policy to monitor a internal counters
    # August 2012, Cisco Systems
    # Copyright (c) 2012 by cisco Systems, Inc.
    # All rights reserved.
    namespace import ::cisco::eem::*
    namespace import ::cisco::lib::*
    # 2. Execute the counter show commands
    if [catch {cli_open} result] {
        error $result $errorInfo
    } else {
        array set cli1 $result
    if [catch {cli_exec $cli1(fd) "enable"} result] {
        error $result $errorInfo
    if [catch {cli_exec $cli1(fd) "cisco"} result] {
        error $result $errorInfo
    # - - - - - -  Interface error counters
    if [catch {cli_exec $cli1(fd) "remote command module x show platform hardware selene np-idx 0 counters | include drop"} result] {
            error $result $errorInfo
    set egr_drp_ctr $result
    #- Parsing and conditional programming for the generation of traps based on the drop value extracted from the show command
    action_syslog priority info msg "Counter Alarm"
    #Exit
    if [catch {cli_exec $cli1(fd) "end"} result] {
        error $result $errorInfo

    I believe this is what you are looking for:
    set egr_drp_ctr $result
    expr {$egr_drp_ctr + 100} sumof
    if {$egr_drp_ctr >= $sumof}
        puts "Alarm"
    It may need correction on the syntax , but thats the logic.

  • Error when dropping users

    I accidently created several users that have an apostrophe attatched to the end of the user name.
    The database versions are 10.2.0.2 and 10.2.0.3.0
    The way I initially created the users was in SQLPLUS like : create user "SCOTT'";
    Now, when I go to try to drop the user fro the database, I receive the following error:
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01740: missing double quote in identifier
    ORA-06512: at line 7
    I have also tried to drop the users in Enterprise Manager Console and received the same error.
    Any ideas how else I can drop these users?
    Thanks!
    Edited by: 897877 on Aug 20, 2012 3:33 PM

    Thank you. I can reproduce the problem in 10.2.0.1.0 on Windows.
    A search indicates this is a known bug and I found this article that gives an explanation and shows a way around it.
    http://mikesmithers.wordpress.com/2010/02/17/dropping-quoted-users-%E2%80%93-why-sometimes-oracle-cant-bear-to-say-goodbye/
    This query
    SELECT owner, trigger_name, trigger_type  
    FROM dba_triggers  
    WHERE base_object_type LIKE 'DATABASE%'  shows three triggers owned by MDSYS and after the author disabled the triggers the user could be dropped.
    SDO_DROP_USER, SDO_DROP_USER_BEFORE, SDO_GEOR_DROP_USER
    Edited to add the commands needed - but you should read the post
    ALTER TRIGGER mdsys.sdo_drop_user disable;  
    ALTER TRIGGER mdsys.sdo_drop_user_before disable;  
    drop user "SCOTT'";
    ALTER TRIGGER mdsys.sdo_drop_user enable;  
    ALTER TRIGGER mdsys.sdo_drop_user_before enable;  

  • Why Does My MATLAB Script Return Error 1048?

    I am running Matlab 6.5, and the matlab scrip is
    M_thred2=M > Thred;
    M is 2 dimensional array and Thred is a constant, so M_thred2 will have thresholded array from M.
    If I make M as output, it works fine, but M_thred2 doesn't.

    Hi,
    This error can occur if your variable name is the same as a function name in MATLAB. For instance, using the variable name disp and then trying to return this variable will generate this error. To fix this, choose variable names that are not reserved names used by MATLAB. See the MATLAB online help or user manual for a list of reserved function names.
    This error can also be generated if the Clear All function is used in your MATLAB script. To resolve the error, simply remove this function from your script. For more information on creating and using MATLAB scripts in LabVIEW, refer to LabVIEW's VI, Function, & How-To Help.
    Hope this helps,
    Isabelle
    Ingénieur d'applications
    National Instruments France

Maybe you are looking for

  • Can i set up tabs that automatically appear when i launch safari?

    can i set up tabs that automatically launch when i start safari?

  • Counter in Query

    Hi all, I need to create a counter that counts the sales order items per sales order. For example Sales Order 00001 has 5 line items. I need the counter to show "5" in all five rows for that sales order. I have Sales Order Number & Sales Order Item i

  • NOKIA X6 PROBLEM!

    I'm having a problem with my Nokia X6. Whenever I get a phone call the number does not appear. It just says 'call'. If I get a missed call the number does not appear in the log either. Please help!

  • How do I get rid of plugin check?

    How can I prevent the Plugin Check tab from loading every time I start Fire Fox?

  • Service complaint - mandatory fileds

    Hi all, We  are facing a small issue in service  compliant processing. The transaction is getting saved without maintaining any entries. Our requirement is , - The order should not be saved , if system display any errors in transaction. Regards Yaswa