example simpftp does not compile

Hello

I'm developing an application in which I use the ftp InetFTPAutoSend function.  When I compile, I get unresolved symbol error:

error: Undefined symbol "_InetFTPAutoSend@24" referenced in the «...» XPSWrapper.obj ".

I decided to check if it was a problem in my project of compilation of the simpftp example provided with labwindows CVI in the debug and release version, I get the same problem of undefined symbol:

Build status (simpftp.prj - Release)
simpftp.c
Link simpftp.exe
error: Undefined symbol "_InetFTPAutoRetrieve@24" referenced in "c:\Users\Public\Documents\National Instruments\CVI2015\samples\internet\simpftp\cvibuild.simpftp\Release\simpftp.obj".
error: Undefined symbol "_InetFTPAutoSend@24" referenced in "c:\Users\Public\Documents\National Instruments\CVI2015\samples\internet\simpftp\cvibuild.simpftp\Release\simpftp.obj".
error: Undefined symbol "_InetGetErrorMessage@4" referenced in "c:\Users\Public\Documents\National Instruments\CVI2015\samples\internet\simpftp\cvibuild.simpftp\Release\simpftp.obj".
Build failed.

I found nothing that has worked to resolve this issue on this forum.  Anyone using ftp and managed should operate?

Thanks in advance to those who take the time to read and those who take the time to answer.

Hello Remy,.

You might have the LabWindows/CVI Base package, which includes a Library of the Internet. See here.

To check which package you have installed you can click Help-> on LabWindows/CVI. In the splashscreen, you can see in the lower right package you have. You can also check in Manager license OR (start-> National Instruments-> NI License Manager) which license is enabled.

Constantine.

Tags: NI Software

Similar Questions

  • My first ARM VI does not compile

    Hello

    I'm a beginner full and just tried to compile the example VI of the "Getting started with LabVIEW Embedded Module for ARM microcontrollers. I understand not all uVision and correlations LV Embededd ARM and the VI does not compile. Here is my system:

    LabVIEW 8.61f1

    LabVIEW Embedded for ARM 8.6

    Keil uVision 4.13 has

    MCB2378 & ULINK2 purchased through the JTAG Board of NOR

    I created the project step by step as indicated in the manual above. Before attemtping to Build/Run the VI 'Processor Status' window shows:

    uVision status: [LED = Blue] loan

    uVision request: [LED = Green] Application

    After I start Build/Run I get "Build error" window saying "failed script uVision build tools. By pressing the button "View error...". "gives me the following result"detailed ":

    Call library function node in UVSC_OpenConnection.vi-> UVSock_Start_Daemon.vi->

    UVSock_Start.vi-> UVControl_Start.vi-> LEP_RV_Build.vi-> LEP_RV_Run_Debug.vi->

    LEP_RV_Debug.VI-> LEP_RV_Run.vi-> LEP_RV_Run.vi.ProxyCaller (7)

    Until I have leave this window "the uVision status led" in 'the processor status' is Orange!

    I would really appreciate help to overcome this situation, I do not understand so I could continue with the chessboard of ARMS by LV instead of via programming uVision. Examples of uVision compile and work OK, so theere must be a problem between the LV-ARM and the native build tools.

    Thank you in advance,

    OK, solved!

    If there is leftover uVision3 or one simply preses in the dialog asking if upgraded to uVision3 model after the first use of the saved in uVision3 - last project there will be an ongoing problem, as initially indicated.

    Just uninstall the two LV to ARMS 2010 and Keil uVision 4 toolchain and reinstall them - it works OK.

    Best regards

  • Filepicker example does not compile

    I downloaded the example filepicker, and they do not compile with the following error message:

    MAKEFILE_GENERATORC:\bbndk\host_10_0_9_52\win32\x86\usr\bin\ntox86-ld: cannot find - lfilepicker

     


    I was wondering how to fix this error?

    Updated now. Need someone to update the documentation and example

    Change the ViewMode to FilePickerViewMode

    The library reference must be LIBS +=-lbbcascadespickers instead of-lfilepicker

  • newbie question: sql runs under sqlplus but does not compile in pl/sql?

    I have the following two tables, I have a SQL in pl/sql packages so I can use dbms_jobs to automate it however, I get the compile time error. It seems to me that pl/sql dislikes my sql that works well in sqlplus. Here is the error message and my test case?

    mdb_user@cmd > view the error
    PACKAGE BODY DATA_QUALITY_REPORT_P errors:

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    10/1 PL/SQL: statement ignored
    13/42 PL/SQL: ORA-00942: table or view does not exist





    create the table S_ORG_EXT
    (
    accnt_type_cd varchar2 (100),
    cust_stat_cd varchar2 (100)
    )
    /

    insert into s_org_ext
    Select column_name, data_type for user_tab_columns where rownum < = 100
    /

    Select * from s_org_ext
    /


    create the table data_quality_report
    (
    RunId number not null,
    report_type number of non-null, - type of report as dup dup or not other measures
    org_level number not null, - organization level nsgn, sgn, shipto
    loc_level number of non-null, - local level by city, by country, by region, grand_total
    name varchar2 (100) not null,-the line output of the tot name.
    Value number not null, - line value of the tot.
    rundate date default sysdate
    )
    /

    create sequence data_quality_report_seq with 1000
    INCREMENT BY 1
    NOCACHE
    NOCYCLE
    /


    insert into data_quality_report
    Select data_quality_report_seq.nextval, 3, 99, 99, accnt_type_cd, cnt, sysdate from
    (
    Select accnt_type_cd, count cnt (*) of S_ORG_EXT where cust_stat_cd = 'VARCHAR2' group by accnt_type_cd by 2 desc order
    )
    /

    Select * from data_quality_report
    /



    truncate table data_quality_report

    CREATE or replace PACKAGE data_quality_report_p AS
    function pull_data return data_quality_report.runid%type;
    END data_quality_report_p;
    /


    create or replace package body data_quality_report_p as
    function pull_data return data_quality_report.runid%type is

    new_rid data_quality_report.runid%type;


    Start
    Select data_quality_report_seq.nextval in the double new_rid;

    insert into data_quality_report
    Select new_rid, 3, 999999, 999999, accnt_type_cd, cnt, sysdate from
    (
    Select accnt_type_cd, count cnt (*) of S_ORG_EXT where cust_stat_cd = 'VARCHAR2' group by accnt_type_cd by 2 desc order
    );


    Return new_rid;
    exception
    When no_data_found then
    DBMS_OUTPUT. Put_line ("NO_DATA_FOUND handles the exception.");
    while others then
    DBMS_OUTPUT. Put_line ("' handling ANOTHER exception.");


    end; -end pull_data

    end data_quality_report_p;
    /

    Hello

    Sorry, I was not clear about that.
    The owner of the package needs direct privileges (not only privileges through a role) to compile the code, whehter it is DEFINE AUTHID or AUTHID CURRENT_USER. Option (3) does not help in this case; my mistake.

    I usually create packages in the same schema tables they use, which was option (2) in my previous message. There may be good reasons why you can't do that; for example, the package may reference multiple schemas tables. In this case, grant the necessary privileges directly to the owner of the whole.

  • Beta 3 DW - compass does not compile when DW is reopened

    Hello

    I created DW Beta 3 this week and everything looks good except for the compilation CSS via the compass

    Wednesday I had all works well - config.rb and correct records (I used SASS in the past so have some experience)

    The sass/screen.scss has been compiling stylesheets/screen.css - all good. Closed at the end of the day

    Thursday, I opened DW and files were compilation not so I have reinstalled the compass installation files, set up the screen.scss again and everything was OK

    Saturday - open DW to start work and the compiler has not yet

    I'm using the latest beta on Windows 10 with the Google Chrome browser

    Any help or advice would be much appreciated

    Thank you very much

    Julie

    You must report all problems from beta to Beta team directly.  They are not always aware of the problems.

    Log-on the opening page and click on comments in the menu dropdown.

    Adobe Prerelease

    Or, if this does not work for some reason, you can report bugs in the beta version on the link below.

    Adobe Dreamweaver (2017 Beta) cc: Feature ideas

    Nancy O.

  • VMWare Tools shared folder code does not compile on VMWare Fusion 7, Ubuntu asked 14.10, and Clipboard sharing does not work.

    Hello

    After the upgrade to a guest of 14.04 to 14.10 Ubuntu, I tried to reinstall the VMWare tools.  The problems I've come across so far:

    Shared folder code will not compile.  I get the following result:

    do: enter the directory "/ tmp/modconfig-ElOCTG/vmhgfs-only.

    Using the kernel build system.

    / usr/bin/make /lib/modules/3.16.0-23-generic/build/include/ - c... SUBDIRS = $PWD SRCROOT = $PWD. \

    MODULEBUILDDIR = modules

    make [1]: Entering directory ' / usr/src/linux-headers-3.16.0-23-generic'

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/message.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/dir.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/request.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/hgfsUtil.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/cpName.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/rpcout.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/stubs.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/hgfsEscape.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/link.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/transport.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/module.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/file.o

    CC [M] /tmp/modconfig-ElOCTG/vmhgfs-only/super.o

    /tmp/modconfig-ElOCTG/vmhgfs-only/file.c: in function 'HgfsAioRead ':

    /tmp/modconfig-ElOCTG/vmhgfs-only/file.c:714:4: error: implicit declaration of function 'generic_file_aio_read' [-Werror-implicit-function-declaration =]

    result = generic_file_aio_read (iocb, iov, numSegs, offset);

    ^

    /tmp/modconfig-ElOCTG/vmhgfs-only/file.c: in function 'HgfsAioWrite ':

    /tmp/modconfig-ElOCTG/vmhgfs-only/file.c:786:4: error: implicit declaration of function 'generic_file_aio_write' [-Werror-implicit-function-declaration =]

    result = generic_file_aio_write (iocb, iov, numSegs, offset);

    ^

    Cc1: some warnings are treated as errors

    scripts / Makefile.build:257: recipe for target ' / tmp/modconfig-ElOCTG/vmhgfs-only/file.o' failed

    make [2]: * [/ tmp/modconfig-ElOCTG/vmhgfs-only/file.o] error 1

    make [2]: * waiting unfinished...

    Makefile:1345: recipe for target ' _module_/tmp/modconfig ElOCTG/vmhgfs-only' failed

    make [1]: * [_module_/tmp/modconfig ElOCTG/vmhgfs-only] error 2

    make [1]: leaving directory ' / usr/src/linux-headers-3.16.0-23-generic'

    Makefile:120: doesn't have a recipe for target 'vmhgfs.ko '.

    make: * [vmhgfs.ko] error 2

    make: leaving directory ' / tmp/modconfig-ElOCTG/vmhgfs-only.

    The filesystem (vmhgfs module) driver is used only for the shared folder

    feature. The rest of the software provided by VMware Tools is designed to work

    regardless of this function.

    If you want the shared folders feature, you can install the driver of

    running vmware-config - tools.pl again after making sure that gcc, binutils, make

    and your kernel sources are installed on your computer.

    These packages are available on the installation of your distribution CD.

    [Press the Enter key to continue]

    In addition, the shared clipboard does not work.

    I'm under VMWare 7.0.0 on OS X 10.10.

    Any help or advice will be greatly appreciated.


    Thank you

    Jonathan Morgan

    The VMWare Tools included with fusion 7.0.1 solved this problem for me (and without any serious regressions I noticed so far, at least, which is nice but not something I intend on with vmware), so probably the next update of each VMware product should include the updated tools.  Don't know how long updates to other products are coming, however.  Wonder if there is a separate place to get just the tools to day?

  • 6.5.5 workstation does not compile with the 2.6.37 kernel (os11.4)

    Hi all

    I have to stay with VMware Workstation 6.5.5 because of my lack of EAP robot. 6.5.5 workstation has worked well with a patch on openSUSE 11.3. Now I want to migrate to oS 11.4. But I could not find a patch to date. If someone knows something about a patch or how to solve the error message following (ioctl to the end), then please send me the Info:

    Stopping VMware services:
    Virtual machine communication interface is
    Virtual machine monitor makes
    File system is blocking
    Using 2.6.x kernel build system.
    do: enter the directory ' / tmp/vmware-root/modules/vmmon-only '.
    do /lib/modules/2.6.37.1-1.2-default/build/include/ - C... SUBDIRS = $PWD SRCROOT = $PWD. \
    MODULEBUILDDIR = modules
    make [1]: Entering directory ' / usr/src/linux-2.6.37.1-1.2-obj/i386/default'
    make - C /... /.. /Linux-2.6.37.1-1.2 O=/usr/src/linux-2.6.37.1-1.2-obj/i386/default/. modules of
    CC [M] /tmp/vmware-root/modules/vmmon-only/linux/driver.o
    In file included from tmp/vmware-root/modules/vmmon-only/./include/vmware.h:38:0,
    from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:100:
    /tmp/vmware-root/modules/vmmon-only/./include/vm_basic_types.h:108:7: warning: "__FreeBSD__" is not defined
    In file included from tmp/vmware-root/modules/vmmon-only/./common/vmx86.h:32:0,
    of tmp/vmware-root/modules/vmmon-only/linux/driver.h:29.
    from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:102:
    /tmp/vmware-root/modules/vmmon-only/./include/x86msr.h:164:0: warning: 'MSR_THERM2_CTL' redefined
    /usr/src/linux-2.6.37.1-1.2/arch/x86/include/ASM/MSR-index.h:235:0: Note: this is the location of the previous definition
    In file included from tmp/vmware-root/modules/vmmon-only/./include/vcpuset.h:103:0,
    of tmp/vmware-root/modules/vmmon-only/./include/modulecall.h:37.
    of tmp/vmware-root/modules/vmmon-only/./common/vmx86.h:33.
    of tmp/vmware-root/modules/vmmon-only/linux/driver.h:29.
    from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:102:
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:329:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:333:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:401:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:407:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_And ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:506:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Or ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:595:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Xor ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:684:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Add ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:773:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:775:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Sub ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:860:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:862:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Inc ":
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:945:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:947:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: in function 'Atomic_Dec ':
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1028:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1030:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h: at the highest level:
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1223:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1227:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1536:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_atomic.h:1663:7: warning: "_MSC_VER" is not defined
    In file included from tmp/vmware-root/modules/vmmon-only/./include/vm_basic_asm.h:46:0,
    of tmp/vmware-root/modules/vmmon-only/./include/rateconv.h:45.
    of tmp/vmware-root/modules/vmmon-only/./include/modulecall.h:40.
    of tmp/vmware-root/modules/vmmon-only/./common/vmx86.h:33.
    of tmp/vmware-root/modules/vmmon-only/linux/driver.h:29.
    from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:102:
    /tmp/vmware-root/modules/vmmon-only/./include/vm_basic_asm_x86.h:62:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_basic_asm_x86.h:177:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_basic_asm_x86.h:346:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_basic_asm_x86.h:453:7: warning: "_MSC_VER" is not defined
    In file included from tmp/vmware-root/modules/vmmon-only/./include/vm_asm.h:43:0,
    from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:104:
    /tmp/vmware-root/modules/vmmon-only/./include/vm_asm_x86.h:486:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_asm_x86.h:779:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_asm_x86.h:820:7: warning: "_MSC_VER" is not defined
    /tmp/vmware-root/modules/vmmon-only/./include/vm_asm_x86.h:922:7: warning: "_MSC_VER" is not defined
    In file included from /tmp/vmware-root/modules/vmmon-only/linux/driver.c:120:0:
    /tmp/vmware-root/modules/vmmon-only/./common/hostif.h:53:7: warning: 'WINNT_DDK' is undefined
    /tmp/vmware-root/modules/vmmon-only/Linux/driver.c: in function 'init_module(2) ':
    /tmp/vmware-root/modules/vmmon-only/Linux/driver.c:427:15: error: 'struct file_operations' has no member named 'ioctl '.
    make [4]: * [/ tmp/vmware-root/modules/vmmon-only/linux/driver.o] error 1
    make [3]: * [_module_/tmp/vmware-root/modules/vmmon-only] error 2
    make [2]: * [branded] error 2
    make [1]: * [all] error 2
    make [1]: leaving directory ' / usr/src/linux-2.6.37.1-1.2-obj/i386/default'
    make: * [vmmon.ko] error 2
    make: leaving directory ' / tmp/vmware-root/modules/vmmon-only '.
    Cannot install vmmon

    15/04/2011

    I wrote a patch for the kernel 2.6.37.1 - 1.2. Now, all modules compile without error. But the application does not start!

    Error message:

    / usr/bin/VMware: line 31: 1372 Segmentation fault "$BINDIR" / vmware-modconfig - appname = "VMware Workstation" - icon = "vmware-workstation.

    Someone at - it ideas? Any help is the apprecated!

    The patch file and the output of the compiler are attached.

    Thanks a lot for the patch! Works very well with 6.5.5 on suse 11.4 (2.6.37.1 - 1.2 - desktop)

    Search for your VMWARE_USE_SHIPPED_GTK = yes environment variables

    When that was settled, I had the same problem (segmentation fault). Set to = no or been completely just unplugged

    Hope this works for you, as your patch worked for me

  • Procedure does not compile

    Hi all

    I'm writing a procedure that contains a loop, however its compilation does not. Please take a look.
    I'm using Oracle 11 g and SQL Dev 3.0.

    Let me explain what I'm trying to do, the procedure is to loop through the layout table for the submission_id where status_code in 1 and 3.
    Then, I need to use a case statement to check the status_code. When status_code = 1 do something when status_code = 3 do something else.

    Currently, my procedure is not compiled, please take a look at my procedure below.
    create or replace
    PROCEDURE RUN_ENQUEUE
    AS
         CODE NUMBER(2) := 0;
    BEGIN
         FOR I IN (SELECT SUBMISSION_ID 
                     FROM       USSC_CASES.SUBMISSION 
                     WHERE  STATUS_CODE IN (1,3))
          LOOP
    
          SELECT      STATUS_CODE 
          INTO      CODE
          FROM      USSC_CASES.SUBMISSION 
          WHERE     SUBMISSION_ID = I.SUBMISSION_ID;  //getting status_code for current submission_id (I.SUBMISSION_ID)
    
              CASE
                   -- SUBMIT CASES
                   WHEN CODE = 1   // CHECK CODE
                        THEN EXECUTE ONDEMAND_CASE_QUEUE_PKG.ENQUEUE_SUBMIT(I.SUBMISSION_ID)
                   -- REJECT CASES
                   WHEN CODE = 3
                        THEN EXECUTE ONDEMAND_CASE_QUEUE_PKG.ENQUEUE_REJECT(I.SUBMISSION_ID)
              END;
    
         END LOOP;
    END RUN_ENQUEUE;
    Errors
    Error(17,18): PLS-00103: Encountered the symbol "ONDEMAND_CASE_QUEUE_PKG" when expecting one of the following:     := . ( @ % ; immediate The symbol ":=" was substituted for "ONDEMAND_CASE_QUEUE_PKG" to continue. 
    
    Error(19,4): PLS-00103: Encountered the symbol "WHEN" when expecting one of the following:     . ( * % & = - + ; < / > at in is mod remainder not rem    <an exponent (**)> <> or != or ~= >= <= <> and or like like2    like4 likec between || multiset member submultiset The symbol ";" was substituted for "WHEN" to continue. 
    
    Error(20,18): PLS-00103: Encountered the symbol "ONDEMAND_CASE_QUEUE_PKG" when expecting one of the following:     := . ( @ % ; immediate The symbol ":=" was substituted for "ONDEMAND_CASE_QUEUE_PKG" to continue. 
    
    Error(21,3): PLS-00103: Encountered the symbol "END" when expecting one of the following:     . ( * % & = - + ; < / > at in is mod remainder not rem    <an exponent (**)> <> or != or ~= >= <= <> and or like like2    like4 likec between || multiset member submultiset 
    Thanks for the help.

    I just edited, missing the *; * After the ONDEMAND_CASE_QUEUE_PKG call. ENQUEUE_SUBMIT procedures.

    Please try to run it again:

    create or replace
    PROCEDURE RUN_ENQUEUE
    AS
         CODE NUMBER(2) := 0;
    BEGIN
         FOR I IN (SELECT SUBMISSION_ID
                     FROM       USSC_CASES.SUBMISSION
                     WHERE  STATUS_CODE IN (1,3))
          LOOP
    
          SELECT      STATUS_CODE
          INTO      CODE
          FROM      USSC_CASES.SUBMISSION
          WHERE     SUBMISSION_ID = I.SUBMISSION_ID;  
    
         IF CODE = 1  THEN
                 ONDEMAND_CASE_QUEUE_PKG.ENQUEUE_SUBMIT(I.SUBMISSION_ID);
    
         ELSIF CODE = 3 THEN
                 ONDEMAND_CASE_QUEUE_PKG.ENQUEUE_REJECT(I.SUBMISSION_ID);
         END IF;
    
         END LOOP;
    END RUN_ENQUEUE;
    
  • .chm does not compile

    I'm trying to compile a lengthy document with a large number of imported MS Word 2003 files. The view of the output gives me the following warning and does not complete the compilation:

    "HHC4001: warning:
    "The alias next line does not contain a" ="character separating the identifications: i '.

    FOSS_Spiral_1_Master_Document.HHK

    Fatal Error: Unexpected error from the Microsoft HTML compiler.
    Finished compiling HTMLHELP in 23 seconds"

    Please help me. I'm on a tight schedule.

    Here is the view of full power:

    From compilation...
    HTMLHELP preprocessor 7.00.145

    C:\Documents and Settings\ambacherge\My Documents\My Projects\FOSS S1 Master with can imported RoboHelp compilation! SSL! \FOSS_Spiral_1_Master_Document\! chm_tmp_folder_0\FOSS_Spiral_1_Master_Document .chm...

    Preparation create HTMLHELP...
    Compensation output folder...
    Preparation of the HTML Help files...
    Copying files...
    Updating files...
    Finish the preparation in 6 seconds

    Initializing the compiler...
    HTMLHELP (7.01.001).. generation.
    Updating of the topics...

    Update of Document_and_File_Viewer/_Discussion_Papers/An argument for role types.htm...
    Last updated 11-12 - 2008.htm of the Document_and_File_Viewer/_Meeting_Agendas_and_Notes/Architecture Conference Call...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/Architecture 110408.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/Architecture 111208.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/FIS Architecture 100108.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/FIS Architecture 100608.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/FIS Architecture 100708.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/FIS Architecture 100808.htm of meeting Notes...
    Updated Document_and_File_Viewer/_Meeting_Agendas_and_Notes/FIS Architecture 111808.htm of meeting Notes...
    Update of Document_and_File_Viewer, A_Project_Leadership, Business_Process_Definition_Effort, process goals.htm...
    Updated Document_and_File_Viewer/A_Project_Leadership/spiral 1 - PMP.htm...
    Update Document_and_File_Viewer/B_-_Technical_Architecture/B - Architecture.htm technical...
    Update Document_and_File_Viewer/C_-_User_Scenarios/suggested the scenario Syntax.htm...
    Update Document_and_File_Viewer/C_-_User_Scenarios/spiral 1 - user scenario 1 (revised) .htm.
    Update Document_and_File_Viewer/C_-_User_Scenarios/spiral 1 - user scenario 1...
    Update Document_and_File_Viewer/C_-_User_Scenarios/spiral 1 - user scenario 2.htm...
    Updating Portlet UI Requirements.htm Document_and_File_Viewer E_-_Portal CLI...
    Updated Document_and_File_Viewer/E_-_Portal/Portlets requirements.htm...
    Update Document_and_File_Viewer/F_-_Catalog/FOSS model metadata 111408.htm...
    Updated Document_and_File_Viewer/F_-_Catalog/FOSS-Cat 20081114 meeting Draft.htm...
    Updated Document_and_File_Viewer/F_-_Catalog/FOSS-Cat 20081119 meeting Draft.htm...
    Update Document_and_File_Viewer/F_-_Catalog/NMFS EDM data Categories.htm...
    Updating Document_and_File_Viewer/G_-_Hub/NOAA_FOSS_SRS-V1.0.htm...
    Update Document_and_File_Viewer/H_-_Adapter/H - Adapter.htm...
    Update Document_and_File_Viewer/I_-_Quality_Assurance/I - Assurance.htm of quality...
    Updating files Document.htm consolidated FREE software...
    Updated FOSS in spiral a Documents Title Page.htm...
    Updating Revision_History.htm...
    Updating Spiral_1_Consolidated_Documents_List.htm...




    C:\Documents and Settings\ambacherge\My Documents\My RoboHelp imported S1 Master with can Projects\FOSS! SSL! \FOSS_Spiral_1_Master_Document\! chm_tmp_folder_0\FOSS_Spiral_1_Master_Document .hhp
    Compiler Microsoft HTML Help 4.74.8702


    C:\Documents and Settings\ambacherge\My Documents\My Projects\FOSS S1 Master with can imported RoboHelp compilation! SSL!\FOSS_Spiral_1_Master_Document\FOSS_Spiral_1_Master_Document.chm


    HHC4001: caveat:
    "The alias next line does not contain a" ="character separating the identifications: i '.

    FOSS_Spiral_1_Master_Document.HHK

    Fatal Error: Unexpected error from the Microsoft HTML compiler.
    Finished compiling HTMLHELP in 23 seconds

    Compilation is complete.


    Thank you.

    Gambacher

    "C:\Documents and Settings\ambacherge\My Documents\My Projects\FOSS S1 Master with can imported RoboHelp compilation! SSL! \FOSS_Spiral_1_Master_Document\! chm_tmp_folder_0\FOSS_Spiral_1_Master_Document .chm '.

    Man, it's a path of output destination! Try to create a new folder "C:\FOSS" and another provision of HTML help that generates its output to 'C:\FOSS\S1_Master.chm '. You will experience probably less grief.

    Good luck
    Leon

  • Function standard SQL does not compile in formula

    I get an error when trying to use nvl2 within a formula. It returns an error "nvl2 identifier must be declared. I am connected to a database while trying to compile. What could be the problem?

    BTW, I tried this in the database (10g, 11 g have), and it does not work either. Pl/sql v10 just does not support the nvl2.

    declare
       mynumber  number(1);
    begin
       mynumber := nvl2(null, 1, 2);  -- this gives a compilation error
       dbms_output.put_line(mynumber);
       mynumber := nvl(null, 1);  -- this works
       dbms_output.put_line(mynumber);
    end;
    
  • PL/SQL procedure does not compile

    Hello guys! I worked on a procedure these days, and even if the result looks good to me, I can not compile the proc error ORA-00933.

    Can you please have a look at - 4 eyes can detect more than two ;-)

    Thank you very much! I appreciate your help and your advice!

    ARO

    SEB
    create or replace
    PROCEDURE "PR_FANGZAHLEN_TW_SK"
    (PR_falle NUMBER, PR_fallennummer NUMBER, PR_schaedling NUMBER)
    
    IS
       datum_letzter_datensatz   DATE;
       diff_datum                NUMBER (10);
       tagesfang                 NUMBER (12);
       y                         NUMBER (10);
       
    BEGIN
               
       /*Date of first record*/
       select min(f.date_datum)
       into   datum_letzter_datensatz
       from   borki.fangzahlen f
       where  f.lng_falle = PR_falle
       and    f.int_fallennummer = PR_fallennummer
       and    f.lng_schaedling = PR_schaedling;
     
    IF EXISTS (select *
              FROM borki.fangzahlen f
              WHERE f.lng_falle = PR_falle
               AND  f.int_fallennummer = PR_fallennummer
               AND (f.lng_schaedling = PR_schaedling)
               AND ((f.date_datum - datum_letzter_datensatz) > 0)
               AND ((f.int_anzahl > 0) or (f.int_volumen > 0))
               )
    THEN
        select (case 
               when f.int_volumen > 0 and f.lng_schaedling = 1 then f.int_volumen * 40
               when f.int_volumen > 0 and f.lng_schaedling = 2 then f.int_volumen * 550
               when f.int_anzahl > 0 then f.int_anzahl
               end)
               / (f.date_datum - datum_letzter_datensatz)
          into tagesfang
          from fangzahlen f
         where (f.lng_falle = pr_falle)
           and (f.int_fallennummer = pr_fallennummer)
           and (f.lng_schaedling = pr_schaedling)
           and ((f.date_datum - datum_letzter_datensatz) > 0)
           and ((f.int_anzahl > 0) or (f.int_volumen > 0))
     
              y := 1;
              WHILE y < diff_datum + 1
              LOOP
                 /* Insert FANGZAHLEN_TAGESWERTE*/
                 INSERT INTO fangzahlen_tageswerte
                             (objectid, lng_falle,
                              date_datum, int_fallennummer, 
                              lng_schaedling, int_volumen, int_anzahl, lng_fangzahlen
                             )
                 SELECT seq_fangzahlen_tageswerte.NEXTVAL, f.lng_falle,
                        datum_letzter_datensatz + y, f.int_fallennummer, 
                        f.lng_schaedling, f.int_volumen, tagesfang, f.objectid
                  from fangzahlen f
                  where f.lng_falle = PR_falle
                   and f.int_fallennummer = PR_fallennummer
                   and f.lng_schaedling = PR_schaedling
                   and (f.date_datum - datum_letzter_datensatz) > 0
                   and (f.int_anzahl > 0) or (f.int_volumen > 0)
     
                   y := y + 1;
                   
              END LOOP;
    
    END IF;
    
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          NULL;
       WHEN OTHERS
       THEN
          -- Consider logging the error and then re-raise
          RAISE;
          
    END "PR_FANGZAHLEN_TW_SK";
    Edited by: skahlert the 06.04.2010 07:57

    It's your EXISTS, you cannot use this way. You will need to use a different SELECT INTO (you can add AND ROWNUM = 1) or a CASE statement. Looks like you are testing the existence of certain data and depending on whether you want to process the data.
    It reminds me of this: http://tkyte.blogspot.com/2008/12/doing-it-wrong.html
    You might consider restructuring your code. (Less code is less bugs =)

  • Using Dev - C++ 5.0 beta 9.2 (4.9.9.2) on Windows Vista. Nothing does not compile.

    I'm trying to use Dev - c++ on windows vista. the program installs fine
    but when I run the application, it gives a message below
    IT IS NOT GNU MAKE FILE IN THE PATH OR THE BIN FILE
    .
    .
    .
    NOTHING WILL BE COMPILED

    and when I write a code and try to compile n run it message "SOURCE FILE NOT COMPILE.

    do I have a problem with my operating system

    According to the Director, Bloodshed.net, it is not compatible with Windows Vista http://www.bloodshed.net/download.html. I got it running (and do everything else) while following the instructions here: http://www.cs.okstate.edu/~katchou/devcpp-vista-dirs/devcpp.htm.
    I hope this helps.

  • WebGL has stopped working since the last update of NVIDIA drivers. Decommissioning of the pilots did not help. WebGL is enabled, but it does not compile shaders and fail.

    I use Firefox on Ubuntu 12.04 49.0.2. Until a few days ago, WebGL worked. A few days earlier, it has stopped working (one day after I installed the latest version of the Nvidia drivers). I tried the option "enable force", without success. WebGL context is created, but debugging, it looks that the shader is not compiled (so made is not possible). I already tried to change the options on the angle, without success. I tried to downgrade the graphics drivers and their modernization once again, without success.

    My nvidia drivers are version 304.132 (latest version)

    OK, solved. The problem is caused by a bug in the NVidia driver, as shown here:

    http://UNIX.StackExchange.com/questions/321185/after-update-GLX-works-only-for-root-NVIDIA/321339

    After decommissioning, everything worked fine

  • Help: Code does not compile!

    Hello
    Whenever I'm trying to compile my code, I get the following error and I can not understand what the problem is. It started to not once I built a release build and then cleaned the project and tried to build this new (device debugging). I know that in my code has changed, but I can't understand why it won't build. Does anyone have any suggestions?

    **** Build of configuration Device-Debug for project JewelSmuggler Trunk ****
    
    make -j8 Device-Debug
    make -C .//translations -f Makefile update
    make[1]: Entering directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations'
    C:/bbndk/host_10_1_0_132/win32/x86/usr/bin/lupdate JewelSmuggler.pro
    Updating 'JewelSmuggler_de.ts'...
        Found 61 source text(s) (0 new and 61 already existing)
    Updating 'JewelSmuggler_es.ts'...
        Found 61 source text(s) (0 new and 61 already existing)
    Updating 'JewelSmuggler_fr.ts'...
        Found 61 source text(s) (0 new and 61 already existing)
    Updating 'JewelSmuggler_it.ts'...
        Found 61 source text(s) (0 new and 61 already existing)
    Updating 'JewelSmuggler.ts'...
        Found 61 source text(s) (0 new and 61 already existing)
    make[1]: Leaving directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations'
    make -C .//translations -f Makefile release
    make[1]: Entering directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations'
    C:/bbndk/host_10_1_0_132/win32/x86/usr/bin/lrelease JewelSmuggler.pro
    Updating 'C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations/JewelSmuggler_de.qm'...
        Generated 61 translation(s) (61 finished and 0 unfinished)
    Updating 'C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations/JewelSmuggler_es.qm'...
        Generated 61 translation(s) (61 finished and 0 unfinished)
    Updating 'C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations/JewelSmuggler_fr.qm'...
        Generated 61 translation(s) (61 finished and 0 unfinished)
    Updating 'C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations/JewelSmuggler_it.qm'...
        Generated 61 translation(s) (61 finished and 0 unfinished)
    Updating 'C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations/JewelSmuggler.qm'...
        Generated 0 translation(s) (0 finished and 0 unfinished)
        Ignored 61 untranslated source text(s)
    make[1]: Leaving directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/translations'
    make -C ./arm -f Makefile debug
    make[1]: Entering directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    c:/bbndk/host_10_1_0_132/win32/x86/usr/bin/qmake.exe -spec c:/bbndk/target_10_1_0_1020/qnx6/usr/share/qt4/mkspecs/blackberry-armv7le-qcc CONFIG+=debug_and_release CONFIG+=device -o Makefile ../JewelSmuggler.pro
    make[1]: Leaving directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    make[1]: Entering directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    make -f Makefile.Debug
    make[2]: Entering directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    C:/bbndk/host_10_1_0_132/win32/x86/usr/bin/moc.exe -DQT_NO_IMPORT_QT47_QML -DQ_OS_BLACKBERRY -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_CORE_LIB -DQT_SHARED -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/share/qt4/mkspecs/blackberry-armv7le-qcc -I../../JewelSmuggler\ Trunk -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4/QtCore -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4/QtDeclarative -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4 -I../src -Io.le-v7-g/.moc -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/freetype2 -I. -D__QNXNTO__ ../src/applicationui.hpp -o o.le-v7-g/.moc/moc_applicationui.cpp
    qcc -Vgcc_ntoarmv7le -Wno-psabi -lang-c++ -fstack-protector -fstack-protector-all -mcpu=cortex-a9 -g -Wno-psabi -Wall -W -D_REENTRANT -DQT_NO_IMPORT_QT47_QML -DQ_OS_BLACKBERRY -DQT_DECLARATIVE_DEBUG -DQT_DECLARATIVE_LIB -DQT_CORE_LIB -DQT_SHARED -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/share/qt4/mkspecs/blackberry-armv7le-qcc -I../../JewelSmuggler\ Trunk -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4/QtCore -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4/QtDeclarative -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/qt4 -I../src -Io.le-v7-g/.moc -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include -Ic:/bbndk/target_10_1_0_1020/qnx6/usr/include/freetype2 -I. -x c++-header -c ../precompiled.h -o o.le-v7-g/.obj/JewelSmuggler.gch/c++
    cc1plus: fatal error: "-I../../JewelSmuggler Trunk": Invalid argument
    compilation terminated.
    cc: C:/bbndk/host_10_1_0_132/win32/x86/usr/lib/gcc/arm-unknown-nto-qnx8.0.0eabi/4.6.3/cc1plus caught signal 1
    make[2]: *** [o.le-v7-g/.obj/JewelSmuggler.gch/c++] Error 1
    make[2]: *** Waiting for unfinished jobs....
    make[2]: Leaving directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    make[1]: *** [debug] Error 2
    make[1]: Leaving directory `C:/Users/Rahul/ndk-10.1.0-workspace/JewelSmuggler Trunk/arm'
    make: *** [Device-Debug] Error 2
    

    I found the problem here. This problem arose when I put a space in the name of the project. Once I got the space on the compiled for free code number.

  • Does not compile due to problem of fonts

    I am not able to compile my film because oif this error:

    Fonts must be included for any text that can be changed during execution, other than text with the parameter "Use Device Fonts". Use the text > order embedding fonts to embed fonts.

    ReferenceError: Error #1065: Variable TCMText is not defined.

    What does ir mean?

    Thank you

    Thanks ned

Maybe you are looking for

  • The time on the clock continues to change at the wrong time.

    The time on the clock continues to change at the wrong time. First of all, make sure that your clock is set to the correct time zone. Right click on the clock. Select adjust date and time. Then select change time zone. If your time zone is correct, y

  • How do I send pictures

    How do I send pictures

  • Lost Win 7

    My Windows 7 operating system was lost when trying to install Ununtu with WIn 7 64 bit with a Boot Manager.  The computer is model gt6 - 1 d 00 and I would like to recover the original 64-bit Windows 7 operating system.

  • Laptop screen resolution

    I have a laptop HP ENVY dv6t-7300.  I would like to connect it to a monitor 24 "1920 x 2000. My laptop has a maximum resolution of 1366 x 768. A few questions... (1) an average of the is the best HDMI cable to connect to the monitor?(2) the monitor d

  • "error when you try to copy files from music for the cd drive.

    CD or dvd tried to copy the music files for the disk. The disc said that DVD and the radio do not play it says: "cd error". Do I need to use a CD or I'm doing something else wrong? Thank you.