Problem running FrontPanel​States.vi example

'm trying to run the example VI "FrontPanelStates.vi".  When I do, I get the following error message:
    Error 15 occurred at Open VI Reference in FrontPanelStates.vi
    LabVIEW:  Resource not found.
    =========================
    NI-488:  Serial poll byte queue overflow.
    An error occurred loading VI 'runvi.llb'.
    LabVIEW load error code 8: Could not load VI resource.
I don't have 488 in the system.  Does this example use it in some fashion?
I'm
really trying to debug the procedure for loading a VI front panel into
a subpanel, and be able to change the displayed data.  Could this
problem be interfering with that?  Can anyone offer suggestions for
this the "real" problem?
Thanks for any help.
Dennis Knight responded:
You did not notice the Possible Reason(s) part? That means that the error code can have a couple of causes - depending on where it occurs. Since you are not using GPIB and are
using LabVIEW, then the first reason would apply. When you ran it, did
you pick a valid VI or did you try to select a different type of file
such as an llb?
I tried to load a vi from the same llb that contained FrontPanelStates.vi.
Tom J

Pick a VI that's not in an llb and see if that makes a difference.

Similar Messages

  • Problem running all States.

    OK, need more help. I have created an animation for my website in Catalyst. The FXP file has 4 states. The file starts with a blank white background page that runs on application start. This fades in a set of title graphics (all imported from Photoshop CS4) to state/page 2 with one of the graphics an Enter button (created in Catalys)t. The viewer after clicking the enter button makes this state/page 2 fade out to state/page 3 with more title graphics including fades and movements. No problems so far. Now I want one of the elements in this third page to fade out and be replaced by another over it. I could not figure a way to do this in state 3. So I did this by adding a fourth state/page 4 with one object fading out and the other fading in at the same time. This works when previewed in Catalyst but when testing in browser (Firefox) everything works except I cannot get it to play thru the last page/state 4. I've tried adding interactions etc. but can't get it to work. I do not want another input for the viewer to continue the animation I want it to play thru State 4 after they click the enter button. Any suggestions would be greatly appreciated. Thanks.

    Thanks for your help Ty. I'm afraid I can't post the file. I deleted it and started over. I tried so many things I just gave up. I guess I just don’t understand the methodology you are using here. I just want to create an interactive animation for the opening of my site. But I can’t get it to play thru all the states. I use start on “application start” for the beginning and it works up to the second state where I then have an “Enter” button which when clicked continues the animation to the next state. Then the animation stops after that transition not going on to the next states and their effects. So the rest of my content (in three states) does not play thru. I’m sure I have not figured out the right buttons to push but none of the tutorials seems to show multiple states playing thru to the end. There is always an action by the viewer to continue the animation to the end like a click or mouse move. I would like to do the whole animation in Catalyst but What I am going to try now is build the animation that does not play thru in as a swf. Then I will import it into Catalyst where I will set it up to play after the enter button is clicked. Maybe thats the only way to do what I want. I have attached the new project I have started the last blank state is where I will put the swf file to start.
    Suggestion why not make an option in the interactions menu that will simple play the next state after the previous state plays thru. Like “If in in State 3 play to State 4”. I also still don’t get the action sequences and this may be my problem. I wish we had a manual or something “ hence my stupid questions” but I understand this is a beta. Any input will be appreciated, thanks again, Bill

  • Please Help:  A Problem With Oracle-Provided 'Working' Example

    A Problem With Oracle-Provided 'Working' Example Using htp.formcheckbox
    I followed the simple steps in the Oracle-provided example:
    Doc ID: Note:116534.1
    Subject: How to use checkbox in webdb for bulk update using webdb report
    However, when I select a checkbox and click on the Update button, I get a "ORA-01036: illegal variable name/number" error. Please advise. This was a very promising feature.
    Fred
    Below are step-by-step instructions provided by Oracle to create this "working" example:
    How to use a checkbox in WEBDB 2.2 report for bulk update.
    PURPOSE
    This article shows how checkbox can used placed on WEBDB report
    and how to use it.
    SCOPE & APPLICATION
    The following example to guide through the steps to create a working
    example of this.
    In this example, the checkbox is used to select the records. On clicking
    the update button, the pl/sql procedure is called which will update col1 to
    the string 'OK'.
    After the update is done, the PL/SQL procedure calls the report again.
    Since the report only select records where col1 is null, the updated
    records will not be displayed when the report is called again.
    Step 1 - Create Table
    From Sqlplus, log in as scott/tiger and execute the following:
    drop table chkbox_example;
    create table chkbox_example
    (id varchar2(10) not null,
    comments varchar2(20),
    col1 varchar2(10));
    Step 2 - Insert Test Data
    From Sqlplus, still logged in as scott/tiger , execute the following:
    declare
    l_i number;
    begin
    for l_i in 1..50 loop
    insert into chkbox_example values (l_i, 'Comments ' || l_i , NULL);
    end loop;
    commit;
    end;
    Step 3 -Create SQL Query based WEBDB report
    Logon to a WEBDB site which has access to the database the above tables are created.
    Create a SQL based Report.
    Name the report :RPT_CHKBOX
    The select statement for the report is :
    select c.id, c.comments, c.col1,
    htf.formcheckbox('p_qty',c.id) Tick
    from SCOTT.chkbox_example c
    where c.col1 is null
    In Advanced PL/SQL, (REPORT, Before displaying the form), put the following code
    htp.formOpen('scott.chkbox_process');
    htp.formsubmit('p_request','Update');
    htp.br;
    htp.br;
    Step 4 - Create a stored procedure in the database
    Log on to the database as scott/tiger and execute the following to create the
    procedure.
    Note: Replace WEBDB to the appropriate webdb user for your installation.
    In my database, I had installed webdb using WEBDB username, hence user webdb owns
    the packages.
    create or replace procedure chkbox_process
    ( p_request in varchar2 default null,
    p_qty in wwv_utl_api_types.vc_arr ,
    p_arg_names in wwv_utl_api_types.vc_arr ,
    p_arg_values in wwv_utl_api_types.vc_arr
    is
    i number;
    begin
    for i in 1..p_qty.count loop
    if p_qty(i) is not null then
    begin
    update chkbox_example
    set col1 = 'OK'
    where chkbox_example.id = p_qty(i);
    end;
    end if;
    end loop;
    commit;
    /* To Call Report again after updating */
    SCOTT.RPT_CHKBOX.show
    (p_request=>'Run Report',
    p_arg_names=>webdb.wwv_standard_util.string_to_table2(' '),
    p_arg_values=>webdb.wwv_standard_util.string_to_table2(' '));
    end;
    Summary
    There are essentially 2 main modules, The WEBDB report and the pl/sql procedure (chkbox_process)
    A button is created via the advanced pl/sql coding which shows on top of the report. (The
    button cannot be placed at the bottom of the report due to the way WEBDB creates the procedure
    internally)
    When any button is clicked on the report, it calls the pl/sql procedure chkbox_process.
    The procedure is called , WEBDB always passes the parameters p_request,p_arg_names and o_arg_values.
    p_qty is another parameter that we are passing additionally, This comes from the checkbox created
    using the htf.formcheckbox in the report select statement.
    The pl/sql procedure calls the report again after processing. This is done to
    show how to call the report.
    Restrictions:
    -The Next and Prev buttons on the report will not work.
    So it is important that the report can fit in 1 page only.
    (This may mean that you will not select(not ticked) 'Paginate' under
    'Display Option' in the WEBDB report. If you do this,
    then in Step 4, remove p_arg_names and p_arg_values as input parameters
    to the chkbox_process)

    If your not so sure you can use the instanceof
    insurance,
    Object o = evt.getSource();
    if (o instanceof Button) {
    Button source = (Button) o;
    I haven't thoroughly read the thread, but I use something like this:if (evt.getSource() == someObjRef) {
        // do that voodoo
    ]I haven't looked into why you'd be creating a new reference...

  • Problem in Update Statement

    I got some problem in update statement.Can anybody discuss with me regarding my problem? Below is the occured problem.
    //all the declaration like Connection, ResultSet are declared, setting the ODBC path and so on steps have been set up before this method. When compile it, no error, when I start to run my program, the program�s interface is shown, but the following error was appearred and data cannot be updated, can anybody tell me where is my mistake?
    //ERROR:SQL Error in update statement:java.sql.SQLException [Microsoft][ODBC][ODBC Microsoft Access Driver] Syntax Error in UPDATE statement.
    //emp_overview is the table name
    // last_name, first_name, office_phone�.is the attributes of the table
    //this method had declare in the interface class already
    public String updateData (String idd, String ln, String fn, String op,
                   String oe, String hp, String ps, String ss)
                   throws java.rmi.RemoteException
         {//begin of this method
              String result ="";
              try
              Statement statement = connection.createStatement();
              String sql = "UPDATE emp_overview SET" +
              "last_name=' "+ln+
              " ', first_name=' "+fn+
              " ', office_phone=' "+op+
              " ', office_ext=' "+oe+
              " ', home_phone=' "+hp+
              " ', primary_skill=' "+ps+
              " ', secondary_skill=' "+ss+
              " ' WHERE id="+idd;
              statement.executeUpdate(sql);
              statement.close();
              catch (java.sql.SQLException e)
         System.out.println("SQL Error in update statement: "+e);
              //throw a RemoteException with the exception
              //embedded for the client to receive
         throw new java.rmi.RemoteException("Error in Updating exist row into DB", e);
              return result;
         }//end of this method

    Hi Kevin,
    According to the code you have posted, it looks like you are missing a space between "SET" and "last_name". I suggest you add the following line of code:
    System.out.println(sql);
    before the invocation of "executeUpdate()".
    I also suggest you add the following line of code:
    e.printStackTrace();in your "catch" block.
    Hope this helps.
    Good Luck,
    Avi.

  • Problem running car demo jwsdp-1.3,Tomcat 5.0

    Hello. I am having problems running the car demo on the jwsdp-1.3 with Tomcat 5.0.
    I get the following error message:
    "A jar file containing the Servlet 2.3 and JSP1.2 classes is required to compile
    carstore. Please define the property servlet.jar in your build.properties file and ensure
    that the file exists."
    I replaced the jsf EA 4 with the beta, and cleared out the cache in catalina as per the
    installation documents. I am probably missing something here. I checked my path,
    (I am using windows xp) and made sure the jsf directory was in the path.
    Any help would be greatly appreciated. Thanks in advance.
    regards,
    cyuno

    Thanks for your response.
    I changed the path to the tomcat 5.0 that came with the jwsdp-1.3.
    However, I am still getting the same error message. I have checked the build.properties file, the path, the path where ant is located, and the path is pointing to the jwsdp-1.3 directory.
    I have been working with the examples in the java web services tutorial, and for the most part have not had any problems running the examples using the jwsdp-1.3, ant and tomcat 5.0(except for CH 11, on the jaxb examples)
    Thanks again for your help
    regards,
    cy unpingco

  • SQL 2012 Management Studio messages outcome is not in english after running any statement/command

    I have recently installed SQL 2012 and by default I have selected "english" as first language. When I run any statement into SQL management studio the messages outcome shows into different language
    How I can change it back to English
    Example
    Przetworzono: 10 procent.
    Przetworzono: 20 procent.
    Przetworzono: 30 procent.
    Przetworzono: 40 procent.
    Przetworzono: 50 procent.
    Przetworzono: 60 procent.
    Przetworzono: 70 procent.
    Przetworzono: 80 procent.
    Przetworzono: 90 procent.
    Przetworzono: 100 procent.
    Muhammad Mehdi

    @ Sofiya
    After I run command I got message
    Changed language setting to us_english.
    But when I try other syntax like recovery of database it is not in english
    Przetworzono: 10 procent.
    Przetworzono: 20 procent.
    Przetworzono: 30 procent.
    Przetworzono: 40 procent.
    Przetworzono: 50 procent.
    Przetworzono: 60 procent.
    Przetworzono: 70 procent.
    Przetworzono: 80 procent.
    Przetworzono: 90 procent.
    Przetworzono: 100 procent.
    Muhammad Mehdi
    Hi,
    , you will have to use SET LANGUAGE to change the language in the above of syntax. If you have not installed the localized version of SQL Server, the default language is US English. I recommend you use the following stetament to check if you install
    the localized version of SQL Server.
    select @@language
     If you need to change the default language on this machine, then you will have to change the default language for individual logins, as doing it on a server level won't work. For more ifnormation, see:http://www.sqlservercurry.com/2010/11/change-default-language-for-sql-server.html
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • While run "Program - Run Financial Statement Generator" occurs errors? why

    while running "Program - Run Financial Statement Generator" occurs errors?
    Program - Publish FSG Report
    output:
    The concurrent request ID of your FSG request is 309112.
    The concurrent request ID of your XML Report Publisher request is 309113.
    hawk_BS_IFRS PC by month (PL) (Financial Statement Generator)
    can output good format xml
    but
    Program - Run Financial Statement Generator
    the phase: Completed and
    the status: Error
    anybody can give me some sugguestion?

    hello, I have known why.
    because my xml publisher's version is 5.6.1. it's not afford it .
    you can refer to metalink.
    and it's not problem in 5.6

  • HS Problem - Run non-Oracle Procedure

    Hi,
    We have a HS agent in ORACLE towards DB2 via ODBC.
    In DB2 a function was created.
    I would like to run it from ORACLE.
    If I log in DB2 I can run it successfully.
    Example:SQL> execute b59ttus.TESTB59TTXXX@d2d0;
    BEGIN b59ttus.TESTB59TTXXX@d2d0; END;
    Error:
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identifier 'B59TTUS.TESTB59TTXXX@D2D0' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Could I do somthing wrong ?
    ORACLE Versions:SQL*Plus: Release 9.2.0.1.0 - Production on Fri Jun 25 16:11:45 2004
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    The database run on SUN SERVER.:>showrev
    Hostname: wps-sun
    Hostid: 8323de56
    Release: 5.8
    Kernel architecture: sun4u
    Application architecture: sparc
    Hardware provider: Sun_Microsystems
    Domain:
    Kernel version: SunOS 5.8 Generic 108528-13 December 2001
    Best regards,
    Laszlo

    There is a dedicated forum for Hetrogeneous Services. I think this should answer your question.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96544/gencon.htm#1004694

  • UNIX: problem running an DEV & QA environment using form/report servlets

    UNIX: problem running an DEV & QA environment using form/report servlets
    I am trying to setup on one server an DEV and QA environment using the Forms Servlet, Forms Listener Servlet and Report Servlet.
    I think I have the Forms Servlet and Forms Listener Servlet running properly. The problem is setting up the DEV and QA environment for running reports.
    For example, when in DEV environment I would like to run a report from a directory specified in the REPORTS60_PATH. This doesn't seem possible.
    It might be easier if I describe my configuration first:
    DEV: run all forms and reports from the directory /data/release/dev
    QA: run all forms and reports from the directory /data/release/qa
    ---DEV & QA Settings Forms Listener Servlet:
    zone.properties:
    # DEV
    servlet.fl60dev.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60dev.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev.env
    # QA
    servlet.fl60qa.code=oracle.forms.servlet.ListenerServlet
    servlet.fl60qa.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/qa.env
    ---DEV & QA Settings Forms Servlet:
    servlet.f60servlet.code=oracle.forms.servlet.FormsServlet
    --- Settings for Reports Servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    Custom Env files since we are using Developer 6i Patch 7
    dev.env and qa.env
    Here I specify FORMS60_PATH and REPORTS60_PATH,
    eg: DEV -> FORMS60_PATH=/data/release/dev
    REPORTS60_PATH=/data/release/dev
    likewise for QA ../qa
    In the formsweb.cfg file i have something like:
    [dev]
    serverURL=/servlet/fl60dev
    form=test.fmx
    [qa]
    serverURL=/servlet/fl60dev
    form=test2.fmx
    I have tested the following and they work without problems:
    1. forms listener test page, eg: http://webserver:7777/servlet/fl60dev
    2. running forms from the 2 environments
    eg: http://webserver:7777/servlet/f60servlet?config=dev
    this runs the form in the FORMS60_PATH (/data/release/dev)
    Now my problems start with Reports.
    When I run a report from forms (using run_report_object) it will not run any reports
    as specified in the REPORTS60_PATH
    Even using this url:
    http://webserver:7777/servlet/RWServlet?server=rep60&report=test.rdf&destype=cache&desformat=html&
    userid=scott/tiger@test9i
    It NEVER seems to pickup and use the REPORTS60_PATH. I have tried nearly everything.
    I have gone throught the instructions in "Integrating Oracle9iAS Reports in Oracle9iAS Forms -
    White Paper"
    (http://otn.oracle.com/products/forms/pdf/277282.pdf)
    and Forms6i Patch 7: Oracle Forms Listner Servlet for Deployment of FOrms on the Internet
    (http://otn.oracle.com/products/forms/pdf/p7listenerservlet.pdf)
    plus any other documents in metalink relating to forms, or report servlets. I am
    totally confused, please help.
    I have tried setting the REPORTS60_PATH in the following files without success:
    custom.env (as specified by initArgs=EnvFile in zone.properties)
    jserv.properties
    in the zone.properties I have tried to set a custom env file for the report servlet:
    servlet.RWServlet.code=oracle.reports.rwcgi.RWServlet
    servlet.RWServlet.initArgs=EnvFile=/u01/app/oracle/product/ias/6iserver/forms60/server/dev_rep.env
    NO LUCK.
    The only place that I can set the REPORTS60_PATH
    is in "[6iserver home]/reports60_server" file when I start the reports server (did I even
    get this right - I do have to have a reports server running don't I?)
    Does this meaan I have to run multiple report servers for each of my environments?
    Based on all the documentation I thought that REPORTS60_PATH as specified in the files relating
    to the forms servlet would be the place to specify the path.
    As you will understand I am getting really fustrated with this and it seems to
    me that the reports servlet configuration in 6i is really half baked and since 9i
    is coming out it will never be fixed.

    I am even not able to run forms servlets from two different forms60_path, Is there any configuration do you make other than what you have mentioned in this post.
    I already open a TAR in this regard, I am still waiting reply from ORACLE.
    Thanks,
    Shaik Ather Ahmed

  • Problems running a simple RMI

    Hi there,
    I have had alot of problems running a small RMI program.
    It has now boiled down to a java.lang.NoClassDefFoundError
    when i try to use my policy file.
    The program complies, when i run javac *.java
    It also creates the stub, when i run rmic.
    I have trawled alot of forums and the closest answer i got was "add your classpath".
    As im a student of java, this does not really tell me much.
    The class/java files are in
    C:\Documents and Settings\MONDARIZ\workspace\RmiHello\server
    The policy file is also in the folder.
    I must add, that the program is from an example, so i would not think there is any coding errors.
    Also when i run it en eclipse, i get "Hello server failed: java.security.AccessControlException: access denied (java.net.SocketPermission 127.0.0.1:1099 connect,resolve)"
    So it seems something is running.

    The answer you found is correct. Java needs to know where to find the class files for execution.
    For starters, use the environment variable CLASSPATH. Set the value to:
    C:\Documents and Settings\MONDARIZ\workspace\RmiHello\server
    This way whatever you run (RMI Registry, Server, Client) has the proper class path. When you get everything running ok, then you can look into other methods of specifying where the class files are found.
    Eclipse, as well as command line Java starts, need to find the policy file. Set up this:
    -Djava.security.policy=C:\Documents and Settings\MONDARIZ\workspace\RmiHello\server\your_policy_file.xxx

  • Detect I/O before running sql statement

    Hi all,
    how do I detect I/O before running sql statement?

    do you mean:
    how do I know how much I/O is occurring before running a query?
    or
    how do I know how much I/O will be used to retrieve the data for this query?
    Which OS? You can look at OEM and "top" to see your current I/O. Detecting and deciding on whether or not you want to continue to submit the query is another problem.
    The question is: what problem are trying to solve? Is it really a problem or just something you imagine might occur???
    Don't try to fix a non-existent problem.

  • Same Problem - Different Scenario: Encountering Problems running Mac OS X c

    Same Problem - Different Scenario: Encountering Problems running Mac OS X commands.
    Hi. I'm having a weird experience on opening document using
    the Microsoft word 2008 application in MAC OS X.
    To be specific on what is the scope of my application.
    What I'm trying to do is run or simulate my application on appletviewer on a certain pop-up HTML
    document. The first part of my statement block on my code doing well on
    executing the downloading process of a file and save it on local machine.
    This portion of works fine.
    But the thing that I'm having some difficulties is
    whenever i Re-opened the downloaded file from my local machine
    that is being downloaded from my server.
    I'm trying to established a checking or triggering pattern that the
    file from my local machine was modified or not.
    doing this execution I'm using the following code below to figure it out:
    java code:
    portion of calling the trigger part
    if((nMacEditMode = editFileViaMac(clientFile)) == 1)
    baseApplet.addMsg("Opened and edited file on local machine ...");
    else
    if(nMacEditMode == 3)
    baseApplet.addMsg("Opening and editing of file on local machine failed! Try again!!");
    else
    baseApplet.addMsg("No changes made. Server file unchanged! You may close this window.");
    portion of the runtime execution of opening the file via MAC OS X
    public int editFileViaMac(String wordFileName)
    try
    String cFile = wordFileName.trim().replaceAll(" ", "\\ ");
    wordPath = wordPath.trim().replaceAll(" ", "\\ ");
    Process wordProcess =null;
    Date startTime;
    Date endTime;
    File wordFile = new File(cFile);
    startTime = new Date(wordFile.lastModified());
    String[] myCommand = { "open", "-a", wordPath, wordFile.getAbsolutePath(), "-W" };
    wordProcess = Runtime.getRuntime().exec(myCommand);
    wordProcess.waitFor();
    endTime = new Date(wordFile.lastModified());
    if (startTime.before(endTime))
    return 1;
    return 2;
    catch(Exception ex)
    baseApplet.addMsg("Method Error : editFileViaMac() - "+ex.getMessage());
    ex.printStackTrace();
    return 3;
    Now the weird things happen here.
    The file was able to opened- as I wanted to, but when a made changes or not doing anything.
    The Microsoft Word 2008 application on the MAC Activity Monitor. The instance was still alive or
    keep running and I execute MAC commands being implement on the Process on the Terminal and it still
    stuck in that thing. which means I have to manually kill the process of the said application on
    the GUI part of Task Manager of MAC and my 2nd statement on the if replies.
    Any thoughts will glady appreciated.

    Please ensure new topics are posted in an appropriate forum. I have moved this thread from "news & updates" but in future posts made there in error will be deleted.
    Edited by: dcminter on 19-Aug-2009 13:13

  • Problem with READ Statement in the field routine of the Transformation

    Hi,
    I have problem with read statement with binary search in the field routine of the transformation.
    read statement is working well when i was checked in the debugging mode, it's not working properly for the bulk load in the background. below are the steps i have implemented in my requirement.
    1. I selected the record from the lookuo DSO into one internal table for all entried in source_packeage.
    2.i have read same internal table in the field routine for each source_package entry and i am setting the flag for that field .
    Code in the start routine
    select source accno end_dt acctp from zcam_o11
    into table it_zcam
    for all entries in source_package
    where source = source_package-source
         and accno = source_package-accno.
    if sy-subrc = 0.
    delete it_zcam where acctp <> 3.
    delete it_zcam where end_dt initial.
    sort it_zcam by surce accno.
    endif.
    field routine code:
    read table it_zcam with key source = source_package-source
                                                 accno  = source_package-accno
                                                 binary search
                                                 transportin no fields.
    if sy-subrc = 0.
    RESULT  = 'Y'.
    else.
    RESULT = 'N'.
    endif.
    this piece of code exist in the other model there its working fine.when comes to my code it's not working properly, but when i debug the transformation it's working fine for those accno.
    the problem is when i do full load the code is not working properly and populating the wrong value in the RESULT field.
    this field i am using in the report filter.
    please let me know if anybody has the soluton or reason for this strage behaviour.
    thanks,
    Rahim.

    i suppose the below is not the actual code. active table of dso would be /bic/azcam_o1100...
    1. is the key of zcam_o11 source and accno ?
    2. you need to get the sortout of if endif (see code below)
    select source accno end_dt acctp from zcam_o11
    into table it_zcam
    for all entries in source_package
    where source = source_package-source
    and accno = source_package-accno.
    if sy-subrc = 0.
    delete it_zcam where acctp 3.
    delete it_zcam where end_dt initial.
    endif.
    sort it_zcam by surce accno.
    field routine code:
    read table it_zcam with key source = source_package-source
    accno = source_package-accno
    binary search
    transportin no fields.
    if sy-subrc = 0.
    RESULT = 'Y'.
    else.
    RESULT = 'N'.
    endif.

  • Problem Running SSIS Package with a SQL Server Agent

    SQL Server: SQL Server 2012
    VS: Visual Studio 2012
    Hello,
          I have been having a problem running SSIS packages by using a SQL Server Agent job. I first created these SSIS packages in a separate IS project in Visual Studio. I imported the packages to the Integration Services (Package
    Store) instance on my SQL Server and tried to create a job that would run them from there.
          At first I read around about needing a proxy account to allow the agent/packages to access the file system since these packages are importing data from a flat file in the SQL database. So I created a temporary admin user to
    use as the user for the agent. I did this by going to Services.msc on the server and linked the account the agent's "logon as". Then arose another issue where I am getting an error about using the incorrect type for my connection managers.
    The connection manager "TestFile" is an incorrect type.  The type required is "OLEDB". The type available to the component is "FLATFILE". Source: Data Flow Task Flat File Destination [2]     Description:
    Cannot open the datafile "O:\*****\Success.txt"
    I am not sure what this even means as I am getting this error even with a test package that doesn't do anything with the database. I have just two flat file connection managers  in this test project one for grabbing the source file and one for
    creating the new test file.
    I am not sure what to do.
    Thanks in advance,
    Matt

    I accidently created two posts. The newest one has the details.
    I did not mean to.
    SQL Server: SQL Server 2012
    VS: Visual Studio 2012
    Hello,
          I have been having a problem running SSIS packages by using a SQL Server Agent job. I first created these SSIS packages in a separate IS project in Visual Studio. I imported the packages to the Integration Services (Package
    Store) instance on my SQL Server and tried to create a job that would run them from there.
          At first I read around about needing a proxy account to allow the agent/packages to access the file system since these packages are importing data from a flat file in the SQL database. So I created a temporary admin user to
    use as the user for the agent. I did this by going to Services.msc on the server and linked the account the agent's "logon as". Then arose another issue where I am getting an error about using the incorrect type for my connection managers.
    The connection manager "TestFile" is an incorrect type.  The type required is "OLEDB". The type available to the component is "FLATFILE". Source: Data Flow Task Flat File Destination [2]     Description:
    Cannot open the datafile "O:\*****\Success.txt"
    I am not sure what this even means as I am getting this error even with a test package that doesn't do anything with the database. I have just two flat file connection managers  in this test project one for grabbing the source file and one for
    creating the new test file.
    I am not sure what to do.
    Thanks in advance,
    Matt

  • Im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor.

    im trying to download itunes 10.5 but keep getting error message that says: There is a problem with this Windows Installer package. A problem run as part of the setup did not finish as expected. Contact your support personnel or package vendor. I am using windows XP 32 bit, all the other computers in my house downloaded just fine, no problems, however this is the computer my iphone is set up to, ive tried doing a virus scan, windows update, downloading other things, updating everything possible, everything works fine, its just itunes that wont download, anyone have any other ideas?

    Yes, I had found a similar solution also.  I'm running XP Pro, SP3.  I went Control Panels/ Add-Remove programmes/apple software update/ change/ repair.  Then run the 10.5 exe.
    While the programme updated from version 8 of iTunes, my new iTunes is now a mess.  Not all of my music was in the same folder previously but it all showed up on iTunes.  Now many albums have been left out, some have only a few tracks and some have two copies of some tracks as well as having other tracks missing.  I haven't begun to work on that.

Maybe you are looking for

  • I want to Pick Release in 11.5.9 through API , What API I can Used?

    Hi.expert I want to Pick Release through API in 11.5.9, What API I can Used?

  • What is apm system?

    hai i have a dought that what is an apm system, what is difference between apm system and legacy system. in layman terms can any body explain me what is legacy system. what systems are grouped under legacy systems. in case of apm systems do we need t

  • IDOCs for CRM

    Hi, I've read about CRM Middleware, ALE/EDI and the usage of IDOCs for communication between SAP CRM and Non SAP System. I need to see the existing IDOCs that can be used for CRM. For example I need an IDOC for a Service Order... this is just an exam

  • Multiple Checkbox Selection should not be not be allowed

    Hi, I have 4 checkboxes in a region ( based on transient attributes). I do not want the user to select more than one at any given time. How can I achieve this ? Would I need to write code in each setAttribute method for each attribute to check if the

  • Event triggering changes back to consumer class

    Hi all, newbie at Java and I hope you can give me a hand on this. Suppose I have 2 classes A and B. A has an instance of B, an event takes place in B and is caught by a listener in B. Can the listener call a method in A? I cant see how this can be do