Error message: no registered trigger lines

Hi,
I was using the example within labview 7.1 under "Hardware input and output ------Daqmx ------Synchronization------Multi-function---multi-funtion-synch AI-AO.vi". I was using pci-6032e card (device 2) for input and pci-6713 card (device 1) for output.
Then this error message jumped out when I was trying to run the labview vi.
Possible reason(s):
No registered trigger lines could be found between the devices in the route.
If you have a PXI chassis, identify the chassis correctly in MAX, and make sure it has been configured properly. If you are using PCI devices, make sure they are connected with a RTSI cable and that the RTSI cable is registered in MAX. Otherwise, make sure there is an available trigger line on the trigger bus shared between the devices.
Source Device: Dev2
Destination Device: Dev1
Task Name: _unnamedTask<9>
I am using RTSI cables connecting the two devices. But I don't know how to check if this RTSI cable is registered in MAX or not. If not, how could I register it?
Thanks,
Zexi,
http://mypage.iu.edu/~zzhuang

Thank you for your information.
I just had trouble finding that item RTSI cable in the MAX. Later in the help, I found that I needed to use "creat new" to creat that item. Thanks very much.
http://mypage.iu.edu/~zzhuang

Similar Messages

  • Help with error message: Expected end of line but got identifier

    The following is a calculated applescript step in a Filemaker script. It tells iCal to go to the date of an iCal event that the script has previously created from Filemaker. The code below keeps generating an error message: "Expected end of line but got identifier." Note: "ACTIVITY::Date" below is Filemaker's way of indicating the file name (ACTIVITY) and the field in question (date). Help appreciated.
    "tell application \" iCal\" ¶
    activate ¶
    switch view to month view ¶
    set theDate to date \"" & ACTIVITY::Date & "\" ¶
    view calendar at theDate ¶
    end tell"

    It's not clear exactly what you're aiming for here, so it's not easy to tell you how to fix it.
    At first glance I'd say you're missing a quote symbol or two, but even then it doesn't make a lot of sense without more context - for example, 'ACTIVITY::Date' isn't valid as an AppleScript variable name (you can't have a : in a variable name), and your code isn't within a Filemaker block, so it doesn't appear to relate to Filemaker, either.
    In either case the only thing that looks remotely valid to me would be:
    set theDate to date "\"" & ACTIVITY::date & "\""
    but without knowing the context of ACTIVITY::Date it's impossible to tell if this is valid, or how it differs from:
    set theDate to date ACTIVITY::Date
    (i.e., why the quotes are needed at all)

  • Editable ALV - how to throw an error message for a specific line & field

    Hi all,
    I've implemented an editable ALV and also the ON_DATA_CHECK event to check the values, entered in the ALV. So this works fine and I can check the values.
    But now, I want to throw an error message corresponding to the field in the ALV, where the error occured.
    How can I throw this error message corresponding to a specific line/field in the ALV?
    I was using REPORT_ATTRIBUTE_ERROR_MESSAGE and REPORT_ELEMENT_ERROR_MESSAGE but without success.
    I'm also using a loop over the "CHANGES" in the ALV and within this loop, I use
    elem_alv = node_alv->get_element( index = <change>-element_index ) 
    to get the element for the message.
    CALL METHOD lo_message_manager->REPORT_ELEMENT_ERROR_MESSAGE
      EXPORTING
        MESSAGE_TEXT              = 'my message'
        ELEMENT                   = elem_alv
    *    ATTRIBUTES                =
    *    PARAMS                    =
    *    MSG_USER_DATA             =
    *    IS_PERMANENT              = ABAP_FALSE
    *    SCOPE_PERMANENT_MSG       = CO_MSG_SCOPE_CTXT_ELEMENT
    *    MSG_INDEX                 =
    *    CANCEL_NAVIGATION         =
    *    IS_VALIDATION_INDEPENDENT = ABAP_FALSE.
    2.) is it right, that for an editable ALV, I can't use the WDDOBEFOREACTION to do the checks?
    If I try to use this, I can't get the values of my ALV table to check it.
    Thanks,
    Andreas

    Hi Andreas,
    I have tried to replicate your problem and I am getting the desired output. I have a row by name TEMP_NEW in my ALV and I want to throw an error message whenever the user enters a value of 4 for that particular field. Please find my coding as below. The important thing is where we perform the actual comparison between the r_value and 4. r_value is defined in SALV_WD_S_TABLE_MOD_CELL as reference to type DATA. So suppose the user enters a value of say 3 in the TEMP_NEW field of the ALV then r_value would contain 3 but if you observe its type in debugging mode it would be as TYPE REF TO I and not TYPE I. So you cannot directly say something like:
    "if ls_modified_cells-r_value = 3" as this would lead to a syntax error. Define a field-symbol say <temp> and then use it to get the actual value into it by saying like:
    ASSIGN ls_modified_cells-r_value->* TO <temp>.
    Then you can use this <temp> for comparison in your IF statement like:
    IF  <temp> = 3.
    Find the entire coding as below:
    METHOD check_data.
      DATA: lr_node TYPE REF TO if_wd_context_node,
            lr_element TYPE REF TO if_wd_context_element,
            ls_modified_cells TYPE salv_wd_s_table_mod_cell.
      FIELD-SYMBOLS <temp> TYPE data.
    " get message manager
      DATA lo_api_controller     TYPE REF TO if_wd_controller.
      DATA lo_message_manager    TYPE REF TO if_wd_message_manager.
      lo_api_controller ?= wd_this->wd_get_api( ).
      CALL METHOD lo_api_controller->get_message_manager
        RECEIVING
          message_manager = lo_message_manager.
      lr_node = wd_context->get_child_node( name = 'NODE' ).
      LOOP AT r_param->t_modified_cells INTO ls_modified_cells.
        lr_element = lr_node->get_element( index = ls_modified_cells-index ).
        IF ls_modified_cells-attribute = 'TEMP_NEW'.
    " Get the value extracted into the field symbol from the reference variable
          ASSIGN ls_modified_cells-r_value->* TO <temp>.
    " Use the value present in this field-symbol for your comparison
          IF  <temp> = 4.
    " report message
            CALL METHOD lo_message_manager->report_attribute_error_message
              EXPORTING
                message_text   = 'Sample message text'
                element        = lr_element
                attribute_name = ls_modified_cells-attribute.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHOD.
    Hope this helps resolve your problem.
    Regards,
    Uday

  • Vague error message with Administrator command line

    OS: Windows XP
    Discoverer Administrator 10.1.2.1
    Disco Admin client 10.1.2.48.18
    Oracle Database 10.2.0.4.0 64bit
    I am trying to export a report from our EUL that is encountering the error "Join "" not found in the EUL. Attempt to open workbook failed". However, when I try to run this through the command line, I get a completely vague and unhelpful error message:
    dis51adm.exe /connect euluser/pass@database /export "C:\report_export.xml" /workbook "ReportName" /xmlworkbook
    I get the error message "Command failed."
    If I run the above command and output a log file, it looks like this:
    3/25/2011 12:08:13 PM
    dis51adm.exe /connect /export C:\report_export.xml /workbook ReportName /xmlworkbook /log C:\dis_log.txt
    Exporting the following Business Areas:
    Exporting the following Folders:
    Exporting the following Items:
    Exporting the following Hierarchies:
    Exporting the following Functions:
    Exporting the following Summaries:
    Exporting the following Workbooks:
         ReportName
    3/25/2011 12:08:15 PM
    Exported the following Data:
    Exported the following Business Areas:
    Exported the following Folders:
    Exported the following Item classes:
    Exported the following Item Hierarchies:
    Exported the following Date Hierarchies:
    Exported the following Functions:
    Exported the following Summaries:
    Exported the following Workbooks:
         ReportName
    Exported the following Automated Summary Management Policies:
    Command failed.
    I know that I've been able to do this in the past (very long ago, and I don't remember exactly how I accomplished it...). What am I doing wrong?
    Thanks!

    Hi,
    I am not sure about the error but try the export again using the EUL owner.
    If the join wasn't found that it will find it using the EUL owner.
    Tamir

  • I get an error message "invalid character in line 1" when loading my ISP's webmail program

    I've tried ALL possible solutions offered in the Firefox articles without success. No problem with any other web sites, just the web mail site offered by the ISP, which blames Firefox. However, I can load the web mail site in IE (don't want to, though). The web mail program first gives the error message then allows login information to be filled in, then starts initializing and gets to "90%" of initializing then freezes while the wheel goes round 'n' round. Any ideas?

    In looking at the console (first time - I am a naive user, not an expert) I find that there is a 404 error appearing on the 6th line of puts and gets in the console. All subsequent lines are 404 file not found errors, until the computer hangs. Here is the reading of the 5th and 6th line:
    16:01:02.248 PUT https://www.webmail.bellaliant.net/ajax/multiple [HTTP/1.1 200 OK 443ms]
    16:01:03.366 GET https://www.webmail.bellaliant.net/ox6/v=OEU5Kkd/plugins/com.openwave.richmail.userguide/lang/en_US.po [HTTP/1.1 404 Not Found 32ms]
    Now I have found a virus on scanning the computer with Bitdefender, and I believe the problem may be caused by malware attached to a script library. Bitdefender says it cannot clean the file. Here is the message from Bitdefender:
    c:\users\Tim\AppData\Local\Temp\DI\ValidationSctiptLibrary.dll has been detected as infected. Bitdefneder could not clean this item. Your computer is not virus-free. Virus name:Gen:Variant.Adware.AdGazelle.1
    Cor-el suggests cleaning the Firefox memory with "forget about this site" - will that remove the problem?

  • Display error message via a trigger

    hi im trying to make a trigger which will display an error message when one field has become greater than the other and prevent the record from being saved
    the following trigger does its job but an error message isnt shown which i set, instead it says unable to insert at the bottom
    declare
    v_id offering.offering_id%type;
    v_count number := 0;
    v_total number := 0;
    v_max offering.max_no_students%type;
    v_toomany exception;
    begin
    v_id := nvl( :offering.offering_id , 0 );
    v_max := nvl( :offering.max_no_students, 0 );
    select :offering.totalstudent
    into v_total
    from offering
    where :attendance.offering_id = v_id;
    :offering.totalstudent := v_count;
    if v_count > v_max
    then raise v_toomany;
    end if;
    exception
    when v_toomany
    then message( 'Too many students' );
    raise form_trigger_failure;
    end;
    any ideas?
    im using forms v6.0.8 if it helps
    thanks

    use when-validate-item trigger on the item and use the same code.
    Regards
    Rai Zeeshan

  • Error  message :  capture  device  off line;  how  do I get it on line

    error  message,  capture  device  offline,  how  do I get it on line?

    Hi Fathahks,
    Which version Premiere pro are you using?
    make sure that the device is properly connected. Also try with a different firewire cable/ legacy drivers for firewire.
    are you able to capture in DV?
    Try the steps & see if they help.
    Thanks

  • Error Message When Registering Album Starter Edition 3.0

    Can anyone please help?
    The following error appears when I try to register...
    'http://www.onlineregister.com/powerregister/webview/pages/adb2/chamak_thx/?FNAM=Michael&C TRY=UK'. Make sure the path or Internet address is correct'.
    I have read in other posts to disable firewalls and to re-enter the email address but no joy. I am at the end of my trial period and have photo albums 'locked' that I now cannot access. Can anyone please help me?
    Thanks
    Michael

    Stanley:<br />(Going from memory here)<br />You'll need to click the link that says "I already have an Unlock Code"<br />In that screen, you'll need to enter at least your eMail, and your Unlock <br />code. (You may need to enter additional stuff, I can't remember) in order <br />for it to enable the unlock button.<br />Your Unlock Code is matched to your eMail address, so be user to enter the <br />same email address that you used to get the Unlock Code.<br />Let us know if it works.<br />Cheers<br />Bob<br /><br /><br /><[email protected]> wrote in message <br />news:[email protected]..<br />> Help! My computer has been in the repair shop for a week. I now find that <br />> my Adobe PSE is frozen. I have reregistered and received a code to unlock <br />> it. When I try to use it, the registration form comes up - then a form to <br />> type it in, but this has a faint `unlock now' on the left which does not <br />> operate, and `exit now without unlocking'. There seems to be no facility <br />> to enter it. Any ideas please?? Stanley G. Clare

  • Error message if i want to register in SAP service market place

    Hi...
           I am getting this error message while registering in SAP service market place how can i solve this problem and what is the way to register.The following is the error message:
    A user ID cannot be created with the specified data, because no (valid) e-mail domain is registered for your customer number.
    Please contact your SAP system administrator and request that he/she maintain your company's e-mail domain. You can then request a user ID again here.

    Hi,
    Did you solve this problem? We are also facing the same..

  • Supress error message in reports 6i

    I am brand new to reports.
    I validate a date parameter in the AFTerFormParmater. If the
    date is null (blanked out) I want to issue an srw error message
    and reset the date on the form to a default.
    I get the my srw error message but
    then I also get a system error message about the "trigger failed"
    how can I supress this message
    in addition - how can I reset the date so it is not blank when
    the parameter form is redisplayed.
    I cannot run the report from a normal form as I have not taken'
    the forms class yet. Everything needs to be done from reports
    itself.

    Hi Dhananjaya,
    also check this.
    Messages allow you to communicate with users from your programs. They are mainly used when the user has made an invalid entry on a screen.
    To send messages from a program, you must link it to a message class. Each message class has an ID, and usually contains a whole set of message. Each message has a single line of text, and may contain placeholders for variables.
    All messages are stored in table T100. You create and edit them using Transaction SE91. Once you have created a message, you can use it in the MESSAGE statement in a program.
    Also,
    In SE91, you can see all the error message details.
    For information, if the error message shows "V10222", you have enter the first three digits in "Message Class" and last three in "Number". This means, whatever the message number is, the last three digits has to be entered in "Number" and the value precedes this last three numeric value has to be entered in Message Class.
    And finally,
    Let me put it this way..
    Every Error Message belongs to a Message Class.
    So, a particular Message Class will have a number of Messages under it.
    You need to know the Message class first. For Sales we have the following message classes V1, V10, V2, V4, V5, VD, VU, VV, VX, WVA
    *If you want to know all the message classes available for a transaction:-*
    For knowing all the Message Classes for a particular transaction, you goto-->SE93, put the transaction code and choose display. After this, there is a button on the top (Display Object List), press that button. On the left hand side you will get the Object Name-(example: VA in case of sales). Drop down there and choose Message Classes. You will get all the message classes there.
    If you know the Message Class and want to see the Messages under it:
    So, goto-->SE91, put the message class and choose Display
    cheers,
    Hema.

  • SAP CRM - Genesys: ICI: Cannot register phone line

    Hi,
    I am working on SAP CRM to Genesys integration over ICI and I am stuck at the first step. We have Genesys setup and I have followed SAP instruction on configuring SAP CRM in site /people/john.burton/blog/2009/11/11/how-to-implement-computer-telephony-integration-cti-with-the-sap-crm-interaction-center
    However I get the following error as seen on ICI trace.
    Exception CX_CRM_MCM_EXCEPTION
    Exception text General error in the multichannel layer 
    Message class CRM_IC_APPL_UI_CHMSG
    message number 551
    message Cannot register phone line
    Program name CL_CRM_MCM_SESSION============CP
    Include name CL_CRM_MCM_SESSION============CM01P
    row number 78 
    The ICI trace error is
      <?xml version="1.0" encoding="UTF-8" ?>
    - <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    - <SOAP-ENV:Body>
    - <SOAP-ENV:Fault>
      <faultcode>Server</faultcode>
      <faultstring>fault. see details</faultstring>
    - <detail>
    - <IciErrorCodes>
      <areaCode>2</areaCode>
      <errorCode>15</errorCode>
      <errorText>1 is not available</errorText>
      <errorRetry>false</errorRetry>
      </IciErrorCodes>
      </detail>
      </SOAP-ENV:Fault>
      </SOAP-ENV:Body>
      </SOAP-ENV:Envelope>
    Has anyone come across this issue and what would the possibel issue be?
    Best Regards
    Loy
    Edited by: Loy Pereira on Jul 19, 2010 10:29 PM

    HI,
    We resolved the issue. It was Genesys config. It was defined as user defined seating instead of free seating.
    Regards
    Loy
    Edited by: Loy Pereira on Jul 20, 2010 11:49 AM

  • Compressor 2.3.1 Cannot submit batch error message What is causing this?

    Just installed FCP 5 with DVD Studio pro 4 and Compressor 2 and tried to do a batch compression exported from FCP, I selected the compression I wanted and chose my destination and clicked submit and I get this error message "Cannot submit batch Unable to connect to background process" I did try to Reset Background Processing and it did not make a difference, any suggestions would be appreciated.

    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is declared but not instantiated
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).
    If you go into your Publish Settings Flash section and select the option to Permit debugging, your error message should have a line number following the frame number which will help you isolate which object is involved.

  • HT4528 I cannot sync my phone to my computer because I am getting the error message "The iTunes Library.itl cannot be read because it was created by a newer version of iTunes." I did not upgrade my iTunes. Any suggestions on how to proceed?

    I am getting the above error message in the subject line and do not know how to proceed.  Thanks.

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • Error message for this at selection

    hi.
    i want to throw thw error message if the user enters the value not valid for the zregion1 of zbwcntry
    and user should be able to correct it before moving ahead.
    Also,iis not a mandatory field,So if it is initial,it can b blank.
    but if the input doesnot lie in the range,it should give error message.
    please suggest the line of code and where it is to be added.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_REGN1-LOW.
    SELECT LAND1
           ZREGION1
           FROM ZBWCNTRY
           INTO CORRESPONDING FIELDS OF TABLE IT_ZBWCNTRY UP TO 1000 ROWS.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
      DDIC_STRUCTURE         = ' '
        retfield               = 'ZREGION1'
      PVALKEY                = ' '
       DYNPPROG               = SY-CPROG
       DYNPNR                 = SY-DYNNR
       DYNPROFIELD            = 'S_REGN1'
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
       VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
      tables
        value_tab              = IT_ZBWCNTRY
      FIELD_TAB              =
      RETURN_TAB             =
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_REGN1-HIGH.
    SELECT LAND1
           ZREGION1
           FROM ZBWCNTRY
           INTO CORRESPONDING FIELDS OF TABLE IT_ZBWCNTRY UP TO 1000 ROWS.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
      DDIC_STRUCTURE         = ' '
        retfield               = 'ZREGION1'
      PVALKEY                = ' '
       DYNPPROG               = SY-CPROG
        DYNPNR                 = SY-DYNNR
       DYNPROFIELD            = 'S_REGN1 '
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
       VALUE_ORG              = 'S'
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
      tables
        value_tab              = IT_ZBWCNTRY
      FIELD_TAB              =
      RETURN_TAB             =
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    after executing the program u have to write the vaildation code . while selection u r not able to do
    Regards,
    ajay

  • Error message 173-36 when using Add mode in SAP Add-on

    I have created an ADD ON application that includes file maintenance on some master data type user defined tables (SAPbobsCOM.BoUTBTableType.bott_MasterData).  When I try to add a new record to one of my tables,  using a form that I created in my add on application, I am receiving the following error message in the red line area on the bottom of the screen, meaning that it is an error coming from SAP B1, and not from my add on:
    Invalid code [Network master] [Message 176-36]. 
    Network master is the name of the user defined table that I am trying to add a record into.  Now, if I just ignore the message and hit the add button again, the record gets added to the table.  But I need to figure out what is causing this error message so that I can get rid of it.  I have tried to debug my code, but I cannot find the specific place where the error message is originating from.  I only know that it is somewhere between the time I press the add button, and the time the form is reloaded to the screen.  I have other user tables and maintenance forms in my application that are adding records without this error.   How can I find out what is causing this error message?  Thanks,
    Nancy Walk
    [email protected]

    Hi Nancy,
    Are you using UserDefinedObjects together with your MasterData table?
    MasterData and Document tables types are designed to work with UDOs. Then when you create your form you link this form to your UDO and the Add/Update/Find button works automatically.
    When you create a MasterData table you have automatically a field called Code and another called Name. This two fields must be shown in your form and filled by the user or calculated in your code before the Add action takes place. Is it your case? It seems like you are trying to insert twice the same code or you don't fill the Code information...
    Regards
    Trinidad.

Maybe you are looking for