PDFA 1b Dictionary with more than 4095 entries

Hi,
I am trying to create a PDFA 1b complaint document using a word document.  Acrobat does create a PDF A document but when I try to verify complaince with PDFA 1b using the preflight option it reports error as " Syntac problem: dictionary with more than 4095 entries".  How do I solve this problem?
Thanks

Sorry for the split, but the editor messes up the code if I post such a long message.
The APPLY CHANGES button triggers an event I catch in the following way:
FORM user_command USING r_ucomm LIKE sy-ucomm
                  rs_selfield TYPE slis_selfield.
* Calculate sel_lines.
  DATA ref1 TYPE REF TO cl_gui_alv_grid.
  CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
      e_grid = ref1.
  CALL METHOD ref1->check_changed_data.
  CASE r_ucomm.
    WHEN  'ZAPPLYCHANGES'.                
      REFRESH mod_lfa1.
      LOOP AT it_lfa1 INTO wa_lfa1 WHERE sel = 'X'. "to get a table of the modified rows
        APPEND wa_lfa1 TO mod_lfa1.
      ENDLOOP.
Here I can see that the ZZVMDCUI field is not changed for every line, even if I have modified it. And also, SEL gets always the value of the FIRST LETTER (obviously, since it's a flag) of the ZZVMDCUI modification I made.
This sounds to me that actually my report see the SEL flag as the only 'editable' field; I can write contents in another editable field but the only modified one is just SEL (which is the first).
Can you please give an hint on that ? Thanks in advance

Similar Messages

  • Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been usin

    Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been using adobe forms for 2 years with mass response feedback and have never had this problem.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Error occurs when executing an item in an inbox with more than 1000 entries

    Hi Everyone,
    One of our approvers in SRM experienced an error when his inbox contained more than 1000 entries .  Further execution on any inbox item produces errors.
    Would you know where to set the maximum allowable entries in a user's inbox? Can this be set thru SRM config or Basis functionality?
    We also searched for existing SAP Notes but found nothing.
    Your inputs and help are greatly appreciated.
    Thanks and Regards,
    Vhong

    Hello,
    The user has sent me the screen shot. But this has no error messages. The approval transaction shows an ITS screen/code with template 'bbpapproval/99/saplbw02_1200.html'
    However, we have a user in Quality where the page displays with no problem and with 1675 Entries.
    Do you think this is more of an ITS setting or any Template/JavaScript issues?
    I got this code (view source code) earlier today and the topmost header of the code is:
    <!--
    This page was created by the
    SAP Internet Transaction Server (ITS, Version 6200.1025.7214.5, Build 908978, Virtual Server Q36, Add. service info none, WGate-AGate Host esetnmw028, WGate-Instance Q36)
    All rights reserved.
    Creation time:  Mon Mar 15 07:21:39 2010
    Charset:        iso-8859-1
    Template:       bbpapproval/99/saplbw02_1200.html
    -->
    Regarding the not-so-good practice of approvers to have more than 1000 entries in their inbox, we are still in the process of planning on how to divide the task to different approvers since there is only one approver (Project Manager) for the related network.
    Thanks and Redards,
    Vhong

  • Vector or ArrayList  use for dropdown with more than 1000 entries

    Hi Friends
    I am having more than 1000 entries of different TimeZone's which i need to display in a dropdown list.
    i am not able to decide whether i need to use a Vector or Arraylist for storing these values.
    please let me know which one will be best suited to use in case the list entry is more than 1000 characters.
    waiting for a positive reply from your side.
    Thanks & Regards
    Vikeng

    A JComboBox can be constructed from a Vector (rather than any other sort of List) without having to implement your own ComboBoxModel. (JList is similar).
    I agree with kajbj - a control like this with a thousand entries is rather poor interface design. One exception might be if the entries are sorted in some way, and you "jump" to the appropriate place in the list as the user types.

  • How to pass more than 1000 entries in 'IN' clause, Oracle 11g

    Hi All,
    I know this is a very common question in Oracle discussion forum. But, Im in different zone.
    I use C#, .NET and Oracle 11g. I have a situation where I will create a query statement using 'IN' clause in C# code based on my requirement and execute that statement from code itself with oracle connection object. I do not have any procedures. I must phrase my query statement and pass it on to OracleConnection object to execute it.
    My code looks like this....
    List<decimal> x_Ids = new List<decimal>();
    I will load my IDs into x_Ids here;
    string whereInClause = ........I will prepare a 'IN' clause (All IDs separated by ',')
    My query would looks like this....
    string query = select * from MYTABLE where X_ID in [ whereInClause with more than 1000 entries]
    oraConn.ExecuteQuery(query);
    I have a workaround with OR operator with 'IN' clause like below.
    X_ID in [ Ids till 1000 entries] OR X_ID in [Next 1000 entries] OR X_ID in [Next 1000 entries] ....so on.....
    It is working, but, I heard that this may slowdown the performance of the application. Is this really a performance hit to my application?
    Can you please suggest any other workaround to overcome this situation?

    >
    I have a workaround with OR operator with 'IN' clause like below.
    X_ID in [ Ids till 1000 entries] OR X_ID in [Next 1000 entries] OR X_ID in [Next 1000 entries] ....so on.....
    It is working, but, I heard that this may slowdown the performance of the application. Is this really a performance hit to my application?There should be no performance difference between a statement like
    select * from myTab
    where ID in (1,2,3,4,5)
    OR ID in (6,7,8,10,12) and
    select * from myTab
    where ID in (1,2,3,4,5,6,7,8,10,12) The execution plan should be identical.
    However those values might better be send as a single object (collection or table of numbers type).
    I think the ODP or OO4O connectivity allows to create and such oracle object types.
    Another way could be to think about how all the values are created? Did any user enter them manually? Certainly not. Then maybe you can apply the same logic to the SQL statement that created those values in your .Net application.
    something like
    select * from myTab
    where ID in (select t2.FK_ID from otherTab t2 where t2.Col1 = 100) This approach would probably beat all others performancewise. Since you avoid the overhead of constructing the in-lists.

  • Nokia -Grouping Contacts with more than 1 number

    I want to sync my phone with MS Outlook in such a way that it groups multiple numbers (eg home, mobile) for 1 contact under that contact's name.
    When I do it syncs to the SIM.
    For contacts with more than 1 entry it sets up contacts as: John Smith; John Smith1 etc
    When I copy from SIM to phone memory it keeps these names
    Does anyone know how to do this - I did manage it with the same handset (now replaced) but can't remember how.
    It feels like I should be able to sync to the phone memory rather than SIM, but the Mokia PC suite doesn't seem to allow me to do that.

    I'm From South Africa and the sim cards we have in this country just save one number per contact and I would also get the same result with any simcard that is available in this country if I tried what your trying to do.
    Assuming, There aren't many different types of sim cards then your sim card will also not be able to store multiple numbers to the same name. They just aren'r designed that way.
    The same will happen if you copy your contacts from phone to sim. It just can't be done 
    Show your appreciation. Hit that kudos button real hard

  • Not able to create a table with more than 64 fields in dictionary

    Hi,
    I have created a java dictionary in Netweaver Developer studio. I have to create a table with more than 64 fields in it. I was able to create the table in dictionary, but when i tried to build it, I am getting an error message as "more than 64 fields are not allowed". If i create the table with 64 fields or below 64 fields, i can build the dictionary and deploy it.
    That is, when i create a table with more than 64 fieds, I am not able to compile the dictionary, But if i reduce the fields to 64 or below, i can compile the dictionary.
    Kindly help me to solve the problem.
    Regards,
    Sudheesh

    Hi,
    Sudheesh,as far as I am aware creating of fields in the table actually depends on the total width of table that can be used for various Vendors.
    So I actually tried out creating a table with too many fields,and I am reproducing the errors which I have obtained -
    <i>Error               Dictionary Generation: <b>DB2:checkWidth TMP_1: total width of table (198198 bytes) greater than allowed maximum (32696 bytes)</b>     TMP_1.dtdbtable     TestDictionary/src/packages     
    Error               Dictionary Generation: <b>DB4:Table TMP_1: fixed length: 198366 (32767).</b>     TMP_1.dtdbtable     TestDictionary/src/packages     
    Error               Dictionary Generation: <b>DB6:checkWidth TMP_1: total width of table (297200) including row overhead is greater than the allowed maximum for 16K tablespaces .</b>     TMP_1.dtdbtable     TestDictionary/src/packages     
    Error               Dictionary Generation: <b>MSSQL:checkWidth TMP_1: total width(198215) greater than allowed maximum (8060)</b>     TMP_1.dtdbtable     TestDictionary/src/packages     
    Error               Dictionary Generation: <b>SAPDB:checkWidth TMP_1: total width(198297) greater than allowed maximum (8088)</b>     TMP_1.dtdbtable     TestDictionary/src/packages     
    Error               Dictionary Generation: Table TMP_1 is not generated     TMP_1.dtdbtable     TestDictionary/src/packages     </i>
    I hope you can understand what the errors state.I am trying to create a table whose total width(sum of width all columns) is greater than the maximum allowed for various Vendors,such as DB2,MSSQL,SAPDB etc.
    I hope this answer helps you create your table suitably
    Regards,
    Harish
    (Please award points if this answer has been usefull)

  • Send email from SAP with more than one attachment

    Hi all,
    How can i send email with more than one attachment and different types of document(doc,pdf,etc.) from SAP to external?
    Besr regards,
    Munur

    Hi,
    I use :
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    the main problem with different attachemts is to genereate the packing_list.
    the packing list is a kind of description of the data table... where ist the start  of an image, end, size...
    "Creation of the entry for the compressed attachment
            objpack-transf_bin = 'X'.                    " it could be an image
            objpack-head_num = lv_head_num_count .  " inital 1 each att  add 1
            objpack-head_start = 1.                     " fix
            objpack-body_start = gv_startnum.    " table with attachments  1. line one
            objpack-body_num = tab_lines.          " how many lines are in the table of attachment
            objpack-doc_size = tab_lines * 255.   " size of the  attachment...
           objpack-doc_type = lv_typ . " 'JPG'.
            objpack-obj_name = 'ATTACHMENT'.
            objpack-obj_descr = lv_stripped_name  " name of the JPG
       APPEND objpack.
       APPEND LINES OF lt_goscontent TO gt_maildata.  " data Table...
    bestreg
    robert

  • Tax code with more than one tax rate

    Hi,
    I am using TAXINN procedure and I created on tax codes with more than one rate. i.e. for service tax I created  a tax code S1 with 3 rates as follows
    Acc. Key    Tax %      condition type
    VS9            12             JSE4
    VS0              2             JES4
    VSS              1             JHS4
    When I am trying to post a document with the above tax code the system is giving the following error message
    Tax code S1 may only contain one assignment line
    Message no. FF731
    Diagnosis
    For direct postings to tax accounts, only tax codes containing exactly one tax line may be used. Tax codes with several rates or a nondeductible portion are not allowed here.
    Procedure
    Use a different tax code.
    For direct postings to a tax account, you might have to define a separate tax code for which only one line with a percentage rate other than zero is active in percentage rate maintenance. All other lines must be inactive.
    To do this, choose Maintain entries (F5).
    Could you please let me know how to rectify this problem? I want to post 3 line items for each of base rate, Edu. Cess and Higher Edu.cess.
    Advance thanks for your help and
    Regards
    Koteswara Rao Padarti

    The problem is in the master data of the revenue account. the tax category should not be > and it should be *

  • Following Artists Does Not Display More Than 300 Entries.

    Hello, This has been an issue for a long time now, with the web player. The Artists List, Following, etc. do not show more than 300 entries.I follow something 800+, and can't see over half of my 'music collection' on this service. Please for the love of everything; Remove the limit on the scrolling feeds with add more bands as you scroll. I am also becoming quite irate this isn't even being acknowledged. I've had no success in email exchange with support either. Once I told them I am a developer by profession, and have built similar feeds for various sites, they stopped the BS, and flat out ended the exchange. I don't understand.If you want to get my sub $, I want this to work properly. Thanks, 

    Any progress on this? Still an issue.What is the point of following artists if you cap the display number. I've built these infinite feeds myself, admittedly not in flash, rather json etc. and this should be pretty easy to fix. I'd like to be able to see all the artists I follow, not less than half. Thanks.

  • No more than 6 entries will show on my site.

    I had a year long blog with an older version of iWeb, but this version is not displaying anymore than 6 entries at a time in Safari.
    I tried duplicating the entry and deleting the old #7, but it cuts off the bottom entry on the list leaving only six entries showing. Help!
    I started this site as a homeowners discussion group and now I'm limited to topics we can argue over;-)

    I went to the directions you gave me.
    By default, there is no limit listed. I was not able to change to any number (it is grayed out).
    II did go to the MobileMe chat and had the following session. (It didn't solve the problem).
    Thanks for the reply!
    Chat Transcript
    info: queue_cmd:1:1:17
    info: Hi, my name is Jake S. Welcome to Apple!
    Jake S: Hi Paul
    Paul Yeiter: Hi Jake, did you get my problem?
    Jake S: I show you are unable to publish more than 6 pages now with iWeb correct?
    Paul Yeiter: Yes, 6 blog entries.
    Jake S: 6 blog entries...I see....I'll pull the account up quickly and see what we can find out Paul
    Paul Yeiter: thanks
    Jake S: I'm sorry for the delay. I'll be right with you.
    Paul Yeiter: OK
    Jake S: When was the last time that you were able to publish correctly Paul?
    Paul Yeiter: I'm not sure when it dropped off the last entry. Maybe a moth ago.
    Paul Yeiter: I've used earlier versions of iweb to journal for a year with no problems.
    Paul Yeiter: Can you see old enties?
    Jake S: Are you currently on iWeb 09 or 08?
    Paul Yeiter: 08
    Jake S: Unable to see any previous entries...only the 6
    Paul Yeiter: there should be a Miscellaneous one as well
    Jake S: In archives I see that too yes
    Paul Yeiter: Before today, I combined Kudos with Misc. to keep it @ 6 show things would show
    Jake S: I'll see how we can get this corrected Paul
    Paul Yeiter: OK
    Jake S: If you publish to a folder will it show any updated information?
    Paul Yeiter: I haven't tried that.
    Jake S: I'll also setup a test account for you to publish to so we can see how it reacts there as well
    Jake S: If it publishes the same way to a test account there would be something within iWeb that would need to be addressed with the iApps team but if it shows new information, we should be able to republish that to the main pyeiter account and have it come up normally too
    Paul Yeiter: what would you like me to do?
    Jake S: Quit iWeb, sign out of mobileme in system preferences and then sign in again with this username and password please
    Jake S: username mmtesting________
    Jake S: password apple______
    Jake S: then open iWeb again and Publish All To Mobileme
    Paul Yeiter: OK
    Jake S: let me know once it completes and we'll check it out
    Paul Yeiter: It's publishing, but could take a while
    Jake S: Any approximate estimate?
    Paul Yeiter: No, just working in the background.
    Jake S: just from prior publishing that is...a guesstimate from you?
    Paul Yeiter: 4 minutes?
    Jake S: No worries then....I'll stand by
    Paul Yeiter: Jake,
    Paul Yeiter: While we're waiting.
    Jake S: sure?
    Paul Yeiter: Is it possible to recover an iweb blog I kept 2.5 years ago? When I upgraded computers, I lost it. It was an account of my wife's fight with cancer. I was hoping to keep it as a record or publish it in an iBook.
    Jake S: As far as I know, if its in the domain file from the page it should be recoverable....that may be a question better suited for the iApps team with Apple Care....they support iWeb to a much fuller capacity than we do here in chat.....
    Jake S: We can help with any publishing type issues but as far *** restoring any previous versions, they would be better to ask...sorry I dont have a better answer for you there Paul
    Jake S: as far AS restoring....sorry bout that too
    Jake S: spell check wont catch everything
    Jake S: If we run into the same blog issues with the test me account that you see in the main pyeiter account, I'll recommend you speak with them as well to see if they can help figure out why iWeb wont publish more than 6 entries
    Paul Yeiter: "if its in the domain file from the page it should be recoverable" What does that mean?
    Jake S: 1-800-APL-CARE (1-800-275-2273) and there is the number just for future use Paul
    Jake S: the single domain file encapsulates all the iweb sites and pages that you currently publish
    Jake S: If the other blog kept from 2 years ago is still in a domain file somewhere, it should be recoverable
    Jake S: so by changing versions or upgrading operating systems, it may or may not be able to be recovered....Im not certain...thats why I would recommend speaking with iApps about that one
    Paul Yeiter: Do I need an AppleCare account to access the above number?
    Jake S: The support is with apple care warranty coverage yes...but they will also bill per incident if no warranty is current
    Jake S: I think Mobileme is the only support included with the annual service price and needs no apple care warranty
    Paul Yeiter: I just got an iWeb notice of a "Publish Error
    Jake S: Looks like the page is done....what is the error?
    Paul Yeiter: An error occured while publishing file"/web/.Temporary Web Resources/88BF123E-3025-4620-A343-153E12737CB9
    Paul Yeiter: Try publishing again later
    Jake S: It looks like a keychain error....not critical...it published the page....it can be rectified by resetting the router or even repairing permissions to the mac startup disk
    Jake S: but what does stand out is the same 6 entries....now on the page have you limited it to 6? If not how many more entries should be shown?
    Paul Yeiter: There are 7 entries in iWeb (at this time)
    Jake S: the difference I see off hand is the comments on the Annual Meetings are not present in the test mobileme account
    Jake S: So from here, this is what I recommend Paul....go ahead and quit iWeb again
    Jake S: then in system preferences>mobileme sign in as pyeiter again
    Jake S: then open Finder and go into Applications>Utilities and open Disk Utility
    Jake S: Click on the mac hd on the left side, run the repair permissions option and once its done reboot the mac....
    Jake S: After rebooting, go into iWeb and select the Publish All to Mobileme option again and see if the 7th entry shows up as well as making sure there is no publishing error
    Jake S: Im not sure if the problem lies in the page, the application or the keychain but since the error only presented itself in a test account, I would say the keychain would be fine
    Jake S: something else that I would recommend, while we are still in chat, is to publish to a folder as well and see if the new entry shows....
    Jake S: that can help isolate where the breakdown is as well...shouldnt take as long to publish to a folder as it does to the account
    Paul Yeiter: I guess this is goodbye. If it doesn't work... should I call the Apple Care #?
    Jake S: Yes...another thing that comes to mind would be to sort of flush out iweb....create a simple test page, move it to the first site on the left side and publish...once its shown correctly, delete it and with the main site in the first site position, publish again
    Jake S: so there are a few options to go with but ultimately if none of the blog entries are updating, apple care would be the next point of contact
    Paul Yeiter: "move it to the first site on the left" ?
    Jake S: correct...on the left where you see Site and then pages under it....if you create a new site it would be 2nd on the list....just drag it above the main site so it is in the first position
    Paul Yeiter: OK. Thanks for your time and expertise!
    Jake S: I sure hope it helps Paul
    Jake S: Have a great weekend and take care!
    Jake S: Thank you for chatting with us. We value your feedback. Please click the blue "Close" button at top left to answer a few questions about your experience with us today.
    info: Thank you for chatting with us. Please click the blue "Close" button on the top left of the chat window to tell us how we did tod

  • More than one entry in /etc/defaultrouter

    To my surprise, it's possible to put more than one entry in /etc/defaultrouter. It's even documented in the man page and if you do it you end up with what looks like more than one default route. But what's does it mean to have more than one default route? Does the kernel apply some kind of heuristic to decide which one to use? Does the default route with no device get ignored?
    $ cat /etc/defaultrouter
    10.8.60.1
    10.8.127.1
    $ netstat -nrv
    IRE Table: IPv4
    Destination Mask Gateway Device Mxfrg Rtt Ref Flg Out In/Fwd
    default 0.0.0.0 10.8.60.1 1500* 0 1 UG 761582 0
    default 0.0.0.0 10.144.128.1 e1000g3 1500* 0 1 UG 3546367 0
    10.8.60.0 255.255.252.0 10.8.61.22 e1000g0 1500* 0 1 U 2703697 0
    10.144.128.0 255.255.252.0 10.144.131.243 e1000g3 1500* 0 1 U 119119 0
    224.0.0.0 240.0.0.0 10.8.61.22 e1000g0 1500* 0 1 U 0 0
    127.0.0.1 255.255.255.255 127.0.0.1 lo0 8232* 0 52 UH 22475898 0
    $

    john_lilburne wrote:
    To my surprise, it's possible to put more than one entry in /etc/defaultrouter. It's even documented in the man page and if you do it you end up with what looks like more than one default route. But what's does it mean to have more than one default route?Probably not what you want.
    Does the kernel apply some kind of heuristic to decide which one to use? Does the default route with no device get ignored?Round robin.
    What do you mean by "no device"? You have to have an IP destination or the route couldn't be configured. But that IP destination doesn't have to be currently available. Unplugging a cable doesn't take an IP interface "DOWN", nor does it modify the routing table.
    If you need dynamic, failure-resilient routing, then you'd have to run a routing update protocol. The contents of /etc/defaultrouter are for static routes.
    Darren

  • How can we create a table with more than 64 fields in the default DB?

    Dear sirs,
    I am taking part in the process of migrating a J2ee application from JBoss to SAP Server. I have imported the ejb project.
    I have an entity bean with 79 CMP fields. i have created the bean and created the table for the same also. but when i tried to build the dictionary, i am getting an error message as given below,
    "Dictionary Generation: DB2:checkNumberOfColumns (primary key of table IMP_MANDANT): number of columns (79) greater than allowed maximum (64) IMP_MANDANT.dtdbtable MyAtlasDictionary/src/packages"
    Is it mean that we can not create tables with fields more than 64?
    How can i create tables with more than 64 fields?
    Kindly help,
    Thankyou,
    Sudheesh...

    Hi,
      I found a link in the help site which says its 1024 (without key 1023).
    http://help.sap.com/saphelp_nw04s/helpdata/en/f6/069940ccd42a54e10000000a1550b0/content.htm
      Not sure about any limit of 64 columns.
    Regards,
    S.Divakar

  • How to read an internal table with more than  one (2 or 3) key field(s).

    how to read an internal table with more than  one (2 or 3) key field(s). in ecc 6.0 version

    hi ,
    check this..
    report.
    tables: marc,mard.
    data: begin of itab occurs 0,
          matnr like marc-matnr,
          werks like marc-werks,
          pstat like marc-pstat,
          end of itab.
    data: begin of itab1 occurs 0,
          matnr like mard-matnr,
          werks like mard-werks,
          lgort like mard-lgort,
          end of itab1.
    parameters:p_matnr like marc-matnr.
    select matnr
           werks
           pstat
           from marc
           into table itab
           where matnr = p_matnr.
    sort itab by matnr werks.
    select matnr
           werks
           lgort
           from mard
           into table itab1
           for all entries in itab
           where matnr = itab-matnr
           and werks = itab-werks.
    sort itab1 by matnr werks.
    loop at itab.
    read table itab1 with key matnr = itab-matnr
                              werks = itab-werks.
    endloop.
    regards,
    venkat.

  • Analog Source Triggering with more than one channel in channel list

    Hello,
    I am trying to use an analog reference trigger with a channel list that contains more than one entry using a
    M Series 6289. I am aware that this is generally not possible to have more than one channel in the list due to hardware limitations. I was hoping if some sort of workaround exists.
    I am using the NIDAQmx C API to control the card.
    Using a second card that is syncronized via RTSI should
    allow me to use an analog reference trigger to control multiple analog IO channels ... Right ???
    Thanks for any advice!
    Best regards
    Peter

    Hello Peter,
    If you look at the NI-DAQmx Help, Analog Triggering Considerations for E Series, M Series, and S Series Devices section, it says that to pause multiple channels with an Analog trigger, you must wire that signal to APFI0 or APFI1. Therefore, it is possible to perform this operation.
    If you are sharing the AI Sample Clock across RTSI, then you would be able to stop multiple AI channels across multiple devices with the one Analog Reference Trigger.
    I hope this helps,
    Sean C.

Maybe you are looking for

  • Unable to capture audio from BlackMagic HD Extreme via Voice Over tool

    Hi ! I'm trying to capture audio via my BlackMagic HD Extrem card using the Voice Over tool in FCP6, but I can't, no audio is incoming. I can ingest audio with video using log and capture, then I know my card and my cables are working. I tried to set

  • Huge Syncing bug when iPad is almost full

    Hi, Just wanted to report I've just encountered a huge bug some minutes ago. My iPad1 16gb (4.3.3) was almost full, there were something like 491mb left. Tried to sync it via iTunes (10.3.1) which was unable to sync and import purchased apps cos it c

  • Windows me and developer 1.6.1

    hi, would windows ME works with oracle developer 1.6.1 ? null

  • ORA-16416 Error

    I am trying to perform a switchover using the following command : SQL> alter database commit to switchover to physical standby; And I get the following error : ERROR at line 1: ORA-16416: Switchover target is not synchronized with the primary The com

  • Guys why is Coherence asking for hibernate.cfg.xml file ???

    Wondering why Coherence could not read/interpret from our hibernate mapping file and ask for hibernate.cfg.xml. Wondering if Coherence has been configured to require hibernate.cfg.xml. Here is the error i get while running JUnit test 2009-11-10 11:01