UTL_MAIL  = ORA-29261: bad argument

Hi All,
I am using UTL_MAIL for the first time. I was tring execute UTL_MAIL without setting SMTP_OUT_SERVER
ORA-29261: bad argument
Is it mandatory to set SMTP_OUT_SERVER parameter to user UTL_MAIL?
Thanks in advance for the help.
Regards
Murali

muralirachakonda wrote:
I am using UTL_MAIL for the first time. I was tring execute UTL_MAIL without setting SMTP_OUT_SERVER
ORA-29261: bad argument
Is it mandatory to set SMTP_OUT_SERVER parameter to user UTL_MAIL?Yes. Else how is the UTL_MAIL code to know what the mail server hostname (or IP address) is, and what port to connect to? Lemme check...
Okay - had a look at the code. You do not need to explicitly set this paramater. UTL_MAIL checks for SMTP_OUT_SERVER. If this parameter does not exist or is null, then it uses the DB_DOMAIN parameter as the mail server's name.
Hmmm.. not sure that that will work as the standard is to use mail.domain.com and not domain.com for the domain's SMTP server.
Rather set SMTP_OUT_SERVER explicitly.
PS. Correction. The code is buggy (no surprises there), assuming the unwrapping worked correctly. The code does not cater for a NO_DATA_FOUND exception, the code that assigns the DB_DOMAIN will never be executed. To be honest - this code looks like it has been written by an utter PL/SQL n00b. Which is of concern as this is a standard Oracle PL/SQL supplied package.
Edited by: Billy Verreynne on Feb 4, 2011 6:06 AM

Similar Messages

  • ORA-29261: bad argument using UTL_HTTP.REQUEST_PIECES

    I am running Oracle 10gR2.
    I keep getting ORA-29261: bad argument when setting the proxy either by the UTL_HTTP.SET_PROXY or UTL_HTTP.REQUEST_PIECES code. I have searched this forum and found no resolutions. I have set this proxy in the browser and it works fine. The following are excerpts of my code:
    Begin
       utl_http.set_proxy('http://myproxy/theProxyFile');
    End;The error is:
    ORA-29261: bad argument
    ORA-06512: at "SYS.UTL_HTTP", line 22
    ORA-06512: at "SYS.UTL_HTTP", line 888
    ORA-06512: at line 2
    I get the same error when trying to set the proxy via UTL_HTTP.REQUEST_PIECES.
    Thanks in advance,
    Becky
    Edited by: Becky Eisen on Aug 8, 2011 10:15 AM
    Edited by: Becky Eisen on Aug 8, 2011 10:21 AM

    After submitting this, I realized that I needed to look in the Proxy file for the actual proxy! Duh.

  • ORA-29261: bad argument after searching web service from IBM UDDI

    I was following the steps listed in the Chapter 6 How to Implement a Web Service of "Database Express Edition 2 Day Plus Application Express Developer Guide" , after the steps of
    To create a Web service reference by searching for a business name:
    On Application Builder home page, click Shared Components.
    Under Logic, select Web Service References.
    The Web Service References page appears.
    Click Create.
    When prompted whether to search a UDDI registry to find a WSDL, select Yes and click Next.
    For UDDI Location, select IBM UDDI and click Next.
    On Search:
    For Search Type, select Business Name.
    In Name, enter:
    %xMethods%
    Click Search.
    I got the error ORA-29261. Please help. Thanks

    Version of APEX? Version of database?
    Looks like you passed in a bad argument to a procedure... Maybe you should wrap the string in single quotes?
    Thank you,
    Tony Miller
    Webster, TX
    If vegetable oil is made of vegetables, what is baby oil made of?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-29261

    FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-29261.
    I m getting above message when I try to click on the button on form created using Form Builder 10G.
    I want to send email using UTL_MAIL.
    Code is:
    declare
    vSend VARCHAR2(30) := '[email protected]';
    vSubj VARCHAR2(50) := '10g new mail package';
    vMesg VARCHAR2(4000);
    vMType VARCHAR2(30) := 'text/plain; charset=us-ascii';
    BEGIN
    vMesg:= 'Hello mail 10g worked';
    utl_mail.send(vSend, '[email protected]', NULL, NULL, vSubj, vMesg, vMType, NULL);
    END ;

    Pl tell me asap whether I am right or not?

  • Encountering ORA-39000: bad dump file specification while using datapump

    Hello,
    I am trying to use datapump to take a export of a schema(Meta_data only). However, I want the dump file to be named after the date & time of the export taken.
    When i use the following command -- the job runs perfectly.
    expdp system@***** dumpfile=expdp-`date '+%d%m%Y_%H%M%S'`.dmp directory=EXP_DP logfile=expdp-`date '+%d%m%Y_%H%M%S'`.log SCHEMAS=MARTMGR CONTENT=METADATA_ONLY
    However, I want to run the export using an parfile. but if use the below parfile, i am encountering the following errors.
    USERID=system@*****
    DIRECTORY=EXP_DP
    SCHEMAS=TEST
    dumpfile=expdp-`date '+%d%m%Y_%H%M%S'`
    LOGFILE=MARTMGR.log
    CONTENT=METADATA_ONLY
    expdp parfile=martmgr.par
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning option
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-39157: error appending extension to file "expdp-`date '+%d%m%Y_%H%M%S'`"
    ORA-07225: sldext: translation error, unable to expand file name.
    Additional information: 7217
    How do i append date&time to the dumpfile name when using a parfile.
    Thanks
    Rohit

    I got the below error while using the dumpfile parameter as dumpfile=dump_$export_date.dmp
    Export: Release 11.2.0.2.0 - Production on Thu Feb 7 16:46:22 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning option
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-39157: error appending extension to file "dump_$export_date.dmp"
    ORA-07225: sldext: translation error, unable to expand file name.
    Additional information: 7217
    Script i used is as follows
    export ORACLE_HOME=/orcl01/app/oracle/product/11.2.0.2
    export ORACLE_SID=$1
    export PATH=$PATH:$ORACLE_HOME/bin
    echo $ORACLE_HOME
    export export_date=`date '+%d%m%Y_%H%M%S'`
    echo $export_date
    expdp parfile=$2
    parfile is
    DIRECTORY=EXP_DP
    SCHEMAS=MARTMGR
    dumpfile=dump_$export_date.dmp
    LOGFILE=MARTMGR.log
    CONTENT=METADATA_ONLY

  • ORA-39000: bad dump file specification

    Hi ,
    i exported the dumpfile with %U and its genereated successfully with suffix of 101..102..till 243.
    But while importing its searching the file from 01 02 and so in other env.
    Could you please assist.
    Actual file name start with:
    Dump file set for EXPDPUSER.EXPFULL_NW is:
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw101.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK8/asm_dpump/prod_data_expdb_nw201.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw102.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK8/asm_dpump/prod_data_expdb_nw202.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw103.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK8/asm_dpump/prod_data_expdb_nw203.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw104.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK8/asm_dpump/prod_data_expdb_nw204.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw105.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK8/asm_dpump/prod_data_expdb_nw242.dmp
      +LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw143.dmp
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, Automatic Storage Management, OLAP, Data Mining
    and Real Application Testing options
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-31640: unable to open dump file "+LMDRSITERDB_ASM_DATA1/dpump/PROD_data_expdb_NW01.dmp" for read
    ORA-17503: ksfdopn:2 Failed to open file +LMDRSITERDB_ASM_DATA1/dpump/PROD_data_expdb_NW01.dmp
    ORA-15173: entry 'PROD_data_expdb_NW01.dmp' does not exist in directory 'dpump'Thanks,

    Mishra wrote:
    Hi ,
    i exported the dumpfile with %U and its genereated successfully with suffix of 101..102..till 243.
    But while importing its searching the file from 01 02 and so in other env.
    Could you please assist.
    Use the SAME format (with the %U) that you used for the export.
    This:
    "+LMDRSITERDB_ASM_DATA1/dpump/PROD_data_expdb_NW01.dmp"does not look anything like these:
    "+LMDRPRDERDWDB_ASM_DATA_DISK9/asm_dpump/prod_data_expdb_nw101.dmp":p

  • ORA-39000: bad dump file specification in 11gRAC environment...

    Hi All,
    I am having two version of Database. Source database is non-RAC environment and target is having RAC environment. I want to perform expdp from 10g and impdp to 11g RAC env.
    expdp db is : Oracle 10.2.0.4 (Enterprise Edition) and impdp is : Oracle 11.2.0.1 (EE) RAC environment.
    when I do impdp its giving error:
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-31640: unable to open dump file "/home/oracle/try_1.dmp" for read
    ORA-27037: unable to obtain file status
    Linux-x86_64 Error: 2: No such file or directory
    and the below is the syntax for impdp:
    impdp system/<password>@<service_name> remap_schema=scott10g:scott11g dumpfile=try_1.dmp logfile=scott11g.log  directory=mydir
    Is there any specific method to do impdp in RAC?
    Thanks...

    see the below method:
    ~~~~~~~~~~~~~~
    SQL> select * from dba_directories;
    SYS DATA_PUMP_DIR /u01/app/oracle/admin/prod_db/dpdump/
    SYS DPUMP_DIR /u01/app/oracle/product/10.2.0/db_1/impdata_dir
    SQL> !
    [oracle@temple01 ~]$ expdp system/manager dumpfile=try_1.dmp logfile=try.log directory=data_pump_dir schemas=tom
    Export: Release 10.2.0.1.0 - Production on Monday, 15 November, 2010 17:08:53
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Starting "SYSTEM"."SYS_EXPORT_SCHEMA_01": system/******** dumpfile=try_1.dmp logfile=try.log directory=data_pump_dir schemas=tom
    Estimate in progress using BLOCKS method...
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 0 KB
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Master table "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded
    Dump file set for SYSTEM.SYS_EXPORT_SCHEMA_01 is:
    /u01/app/oracle/admin/prod_db/dpdump/try_1.dmp
    Job "SYSTEM"."SYS_EXPORT_SCHEMA_01" successfully completed at 17:09:03
    [oracle@temple01 ~]$ cd /u01/app/oracle/admin/prod_db/dpdump/
    [oracle@temple01 dpdump]$ impdp system/manager dumpfile=try_1.dmp logfile=try_imp.log directory=data_pump_dir remap_schema=tom:test1
    Import: Release 10.2.0.1.0 - Production on Monday, 15 November, 2010 17:10:33
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "SYSTEM"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_FULL_01": system/******** dumpfile=try_1.dmp logfile=try_imp.log directory=data_pump_dir remap_schema=tom:test1
    Processing object type SCHEMA_EXPORT/USER
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Job "SYSTEM"."SYS_IMPORT_FULL_01" successfully completed at 17:10:34
    Edited by: CKPT on Nov 15, 2010 5:20 PM

  • Ora 600 error  Arguments [25012] [11]

    hi,
    i've an ORA-00600: error Arguments [25012], [2], [11], [], [], [], [], [] by DELETE FROM table WHERE filed = :b1
    ther are only 8 file in database. (not 11)
    Can anybody help, or give me an information about Bug number: 742709
    OS NT 4 / SP6 ORACLE RDBMS Version: 8.0.5.2.1.
    Thank in advice
    JFA

    Trace File Contents:
    ============================================================================================
    [oracle@oem trace]$ more /d01/app/guest/diag/rdbms/db11g/db11g/incident/incdir_191809/db11g_smon_4198_i191809.trc
    Dump file /d01/app/guest/diag/rdbms/db11g/db11g/incident/incdir_191809/db11g_smon_4198_i191809.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORACLE_HOME = /d01/app/guest/product/11.2.0/dbhome_1
    System name: Linux
    Node name: oem.tap.com
    Release: 2.6.18-164.el5xen
    Version: #1 SMP Thu Sep 3 02:41:56 EDT 2009
    Machine: i686
    Instance name: db11g
    Redo thread mounted by this instance: 1
    Oracle process number: 13
    Unix process pid: 4198, image: [email protected] (SMON)
    *** 2010-10-15 12:05:24.395
    *** SESSION ID:(16.1) 2010-10-15 12:05:24.395
    *** CLIENT ID:() 2010-10-15 12:05:24.395
    *** SERVICE NAME:(SYS$BACKGROUND) 2010-10-15 12:05:24.395
    *** MODULE NAME:() 2010-10-15 12:05:24.395
    *** ACTION NAME:() 2010-10-15 12:05:24.395
    Dump continued from file: /d01/app/guest/diag/rdbms/db11g/db11g/trace/db11g_smon_4198.trc
    ORA-00600: internal error code, arguments: [13013], [5001], [267], [8444108], [2], [8444108], [17], [], [], [], [], []
    ========= Dump for incident 191809 (ORA 600 [13013]) ========
    *** 2010-10-15 12:05:24.399
    dbkedDefDump(): Starting incident default dumps (flags=0x2, level=3, mask=0x0)
    ----- Current SQL Statement for this session (sql_id=dma0vxbwh325p) -----
    update smon_scn_time set time_mp=:1, time_dp=:2, scn=:3, scn_wrp=:4, scn_bas=:5, num_mappings=:6, tim_scn_map=:7 where scn = (sele
    ct min(scn) from smon_scn_time)
    ==========================================================================================

  • ORA-39001: invalid argument value dbms_datapump.open

    Hello,
    I'm trying to import objects in a tablespace from a remote database.
    The link source.de is working, but the dbms_datapump.open statements fails with below errors
    SQL> var h number;
    SQL> exec :h := dbms_datapump.open (operation => 'IMPORT',job_mode => 'TABLESPACE', remote_link => 'source.de');
    BEGIN :h := dbms_datapump.open (operation => 'IMPORT',job_mode => 'TABLESPACE', remote_link => 'source.de'); END;
    ERROR at line 1:
    ORA-39001: invalid argument value
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 2953
    ORA-06512: at "SYS.DBMS_DATAPUMP", line 4603
    ORA-06512: at line 1
    When I describe dbms_datapump.open:
    FUNCTION OPEN RETURNS NUMBER
    Argument Name Type In/Out Default?
    OPERATION VARCHAR2 IN
    JOB_MODE VARCHAR2 IN
    REMOTE_LINK VARCHAR2 IN DEFAULT
    JOB_NAME VARCHAR2 IN DEFAULT
    VERSION VARCHAR2 IN DEFAULT
    COMPRESSION NUMBER IN DEFAULT
    Anyone familier with this problem?
    Regards,
    Tim

    ORA-39001: invalid argument value, could be because of the db_link (is not seen by the owner of the code, by the schema which has the rights to run the code).
    You can take a look at:
    <p>
    http://www.oracle-home.ro/Oracle_Database/10g_New_Features/Schema_refresh_DP.html</p>

  • Bridge CS4 Bad argument {LiveObject("Thumbnail").property(0)}

    Can anyone assist with resolving this error message? Bad argument {LiveObject("Thumbnail").property(0)}
    It happens after saving a Gallery.
    Using Windows 7 + Dreamweaver CS4
    Thank you

    Hi
    Can you provide more details to reproduce such error?
    e.g.
    1. launch bridge
    2. choose some files, in output mode, choose a template..
    3..etc
    thanks.

  • Error when running script to reset size - bad argument gettokenmanager

    Hello,
    I use RoboHelp HTML 8 (currently on 8.0.2.208) and have a project with a number of user interface images that are going to be translated. The translated images will likely be of different size, so I need to have a fast way of reseting all the image sizes in my project.
    I discovered Chasnikov's script "reset all images" on the thread:
    http://forums.adobe.com/message/2128583#2128583
    which seems just perfect for my situation.
    Not wanting to test this on my real project, I made a copy in a different location and tested out the script. The script ran for a while, but then abruptly ended with the following message:
    Bad argument getTokenManager
    In looking at the output window it seemed like it stopped in the middle of a topic after going through a number of topics. For my test situation, I only replaced a few graphics in a few topics and when I checked this limited sample, they all seemed to be correctly resized.
    However, my concern is that if I use this script in my real project, it won't actually resize all of the images.
    Any ideas why the script is terminating abruptly?
    By the way, I did find a similar question about this error message in the thread http://forums.adobe.com/message/2551147
    however, the solution to add the line msg(filepath); to the script resulted in another error -- RH did not recognize 'msg' as a valid command.
    Thanks, Rose

    Thanks Willam for the advice. In the meantime I realized that there was something wrong with my project--because the word count script also gave me the same error message -- so I ran it on another version of the project and it was just fine.
    There are two questions that your response brings to mind:
    1. How are you able to see the line numbers in the script?  When I edit the script, it opens in Notepad and I can't turn on line numbers. I have discovered, that if I have word wrap off, I can use Goto and specifiy a line number to go to.  Are you using a different text editor?
    2. The reset size script doesn't announce that it is finished.  It just seems to stop displaying things in the output window, but it doesn't give me a message to say it has finished.  Can you recommend some code I could add to the reset size script to output that it has finished processing sucessfully?
    Thanks in advance.
    Rose

  • Bad argument openProject when running SaveAsProjectTemplate.jsx

    Hi
    I have created a RoboHelp 8 project template and rolled it out to the team for use in an upcoming project.
    Six authors have been able to load the project then, using the Script Explorer, have run the SaveAsProjectTemplate.jsx script to make it a project template. One author has attempted to run this script and been confronted with the error Bad argument openProject once they accepted the default location.
    The installation process was identical for all seven machines, it activated/registered without a hitch and all available updates have been run on the seven machines (we are all on 8.0.2.208).
    Does anybody know, please, why this error might be occuring on just one machine?
    Many thanks
    Nigel

    Hi Nigel and welcome to the RH forums. Things to try include:
    Running one of the pre-installed scripts (e.g. Word Count).
    Reinstalling the Extend Script add on.
      The RoboColum(n)
      @robocolumn
      Colum McAndrew

  • ORA-39005: inconsistent arguments

    Hi,
    Im trying to export 11g db using 11g's expdp ( i have set my oracle home and can connect to the db fine ..) but for some strange reason it comes back with 10.g inconsistent arguments!! we do have 10g installation on the server but not sure why its affecting my exp...
    [oracle@server1 ~]$ expdp system/*** full=Y DIRECTORY=export parallel=4 dumpfile=abc%U.dmp COMPRESSION=ALL
    Export: Release 11.1.0.6.0 - Production on Friday, 12 March, 2010 13:05:26
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    With the Partitioning, Real Application Clusters, Oracle Label Security, OLAP,
    Data Mining and Real Application Testing options
    ORA-39005: inconsistent arguments
    ORA-39055: The COMPRESSION feature is not supported in version 10.2.0.3.0.
    thanks

    The reason this failed is because datapump needs to create a dumpfile that looks like a dumpfile generated on a 10.2.0.3.0 system (your compatible setting). If datapump allowed you to export with compression, then you took that dumpfile to a real 10.2.0.3.0 system, you would not be able to import it. The 10.2.0.3.0 datapump doesn't know how to uncompress the dumpfile information.
    The compatible parameter is alot more important that your database version. If you exported from a db version 11.2 and your compatible was set to 10.2, then you would be able to import that 10.2 dumpfile on any database that had compatible set to 10.2 or higher. If you tried to import it on a 11.2 db version with compatible set to 10.1, it would not be imported.
    Hope this helps.
    Dean

  • Bad argument #1 to "ipairs" error

    Hi,
    I use LR 2.1 on a Mac X 10.5.5.
    I've been getting this error message: an internal error has occured, bad argument #1 to 'ipairs' (table expected, got userdata) when I try to use the create slideshows button in the Collections Panel in the Slideshow Module.
    This happens mostly when I have reordered images to do the slideshow. The problem is intermittent, occurring about 95% of the time, so that I think it is fixed when it isn't. It occurs, though somewhat less frequently (maybe 85% of the time) if I have not reordered the images. It remains a major annoyance.
    BTW, sometimes I can (and sometimes I can not) reorder the images in the slideshow module. Sometimes only in the Library module.
    I have tried ALL that Adobe recommends both working with their tech support folks for hours and hours on the phone and by e-mail and on my own...
    I've replaced the preferences file (any number of times), I've created any number of new catalogs, I've tried creating a new administrator file, I've created a tiny catalogue and just imported a few images etc, etc, etc. Each time I think it's resolved it's not.
    Does anyone have any ideas about how to fix this or does anyone have any ideas for workarounds?
    thanks
    stephanie

    'IPAIRS' -Bad argument #1 ERROR UPDATE...
    I originally posted here on 11/23 and after lots of long conversations with the good folks at Adobe and being "bumped up" to higher level tech support there is good news and bad news and I'm not really sure which is which :-)
    The higher level tech support guy logged onto my computer, watched what I did (new catalog, safe mode, new admin file, 2 of adobe's images) and, after watching me, was able to recreate the error on his machine. I guess that's the bad news because the problem is now, clearly, not a bug that is in each of our hardware. Rather the bug is, as we were all figuring, in the program. It seems that the create web collection or create print collection or create slideshow collection, either on Mac or Windows, all give the same ipairs error.
    (Oh, the good news is that means that I don't have to reinstall my OS).
    Tech support's plan is to take this info to other people and at some point they'll decide whether to create a fix for the problem in the next, or later down the road, version of the program.
    I'm told that the best way for the fix to end up happening is for EVERYONE who is having this problem to go to www.adobe.com and file feedback or a bug report. Squeaky wheels get the oil, as they say.
    Stephanie

  • "bad argument was passed" message error

    Hello,
    I have a message "A bad argument was passed to a manager function. VI "VI name" was stop at node 0x1CA94 of subVI "SubVI name".
    I work with LabVIEW 6.0.3.
    I develop the application on my laptop and test it and there are not problem to execute the application.
    But on the industrial PC, the application plant and post this message when the application compiled but not when I lauch the application with the source code.
    If I delete the subVI and I recall it in my VI, that resolve my problem ?
    Thanks.

    I think what I stated earlier is almost definitely your problem.  I see in configuration cycle .VI and the Initializer case a case where you use a global variable called VI path.  I'm not sure where the global variable gets written to.  But the path of a VI looks different in the development environment then it does in a compiled executable.
    Development environment:   c:\myfiles\mysub.vi
    Compiled environment:   c:\myfiles\myexecutable.exe\mysub.vi
    By the way, when posting a large zip file like this with numerous sub-VI's.  It is helpful if you state which one is the main or toplevel VI.    It is even harder for someone who doesn't know your project to figure out which is the top VI when everything is written in a foreign language.
    Message Edited by Ravens Fan on 08-22-2007 11:24 AM

Maybe you are looking for

  • How to stop the background job "Sap_collector_for_job_statistic"

    Dear All, Kindly let me know how to stop the Background job "Sap_collector_for_job_statistic" which is running everyday. We want to stop this background job. Kindly suggest. Regards, Mullairaja

  • App server 10.1.2 deploy error

    Hi All, I am using Jdev 10.1.3 and configured it with Jdk 1.4 and compiled my code. No errors (I had to do this configuration, bcza we have Oracle 10.1.2 app server ) Then, I deploy this application on 10.1.2, it is deployed successfully. First login

  • Loading flat idoc via report RSEINB00 into integration server fails

    Hi, we have PI/700. We get idocs (in flat format NOT XML) via filesystem from an external partner. Now I try to load these idocs with the report RSEINB00 into my integration server. My problem is, that the report says that the sender port + client(of

  • StreamTokenizer or any other alternative?

    I am looking for a way to read a file that contains words and decimals separated by ; The file looks something like this: String ; Decimal String ; Decimal String ; Decimal I think that StreamTokenizer could be a way to do it, but can't find any info

  • Run TIme Error Message- Array Out of Bounds Exception

    Good evening all, I seem to have a run time error with the below segment of code. I've changed the (args[0]) a variety of ways but still get the same message. I have a few questions regarding my methodology. First, am I headed down the right path (no