GMLAN,J193​9,J1587,J1​508 Canbus Comms- Dynamomete​r, Sound and Vibration,​Halt & Hass, Labview Consultant Available June '07

Will be available for 6-9 month contract June 07.  
13 years Labview experience, GUI, SCADA, Canbus, Heavy Truck-Bus ECU verification, Dynamometer, Sound & Vibration Analysis. Environmental chamber shock testing experience, HALT-HASS, Durability and Life cycle, Executable VI development.

Similar Messages

  • Commit events are not broadcast because no JMS Transport is available.

    Just set up a new WebLogic 10.3.2 domain and I am seeing this while starting the Admin Server:
    <Mar 1, 2010 6:37:03 PM CST> <Error> <Security> <BEA-000000> <Commit events are not broadcast because no JMS Transport is available. Remote L2 caches will be out of sync.>
    anyone have any idea what this is and what's causing it?

    Hi,
    I followed the instructions given under " Configure the RDBMS security store " ( Step 6 ) and restarted my Server. :-
    +6. In the section labeled Server Synchronization Configuration, specify the appropriate settings for JNDI and JMS so that the RDBMS security store can cache database information in memory correctly. If the RDBMS is running in more than one JVM -- for example, the domain has multiple servers, or other Oracle products are sharing the same RDBMS store with the new domain -- these caches must be synchronized to ensure the integrity of the security data.+
    To configure server synchronization:
    +1. Specify a JNDI user name and password. This can be any valid user in the security realm who has access to JNDI.+
    +2. Create a JMS topic. You may reuse an existing one, if desired. For information, see Configure topics.+
    Caution: Failure to configure JMS notifications in a multiserver domain in which the RDBMS security store is configured may result in a security vulnerability.
    +7. Click Save.+
    +8. To activate these changes, in the Change Center of the Administration Console, click Activate Changes.+
    Not all changes take effect immediately—some require a restart (see Use the Change Center).
    However, I still see the same error :-
    *+<Error> <Security> <BEA-000000> <Commit events are not broadcast because no JMS Transport is available. Remote L2 caches will be out of sync.>+*
    Am I missing something ?
    Thanks,
    Sandeep Seshan

  • Why does text field in InfoPath 2010 show user name with two commas between first name and last?

    Here's the problem. I have a text field called Manager in an InfoPath 2010 form that is getting populated by a drop down field called
    Business Unit.
    The Business Unit drop-down field is pulling information from
    column A in a custom list via a managed data connection. The custom List has two columns:
    Title & Manager. 
    The Manager column in the custom list is a 'Person or Group' type column.
    The Data Connection pulls both the Title, Manager
    (and ID) data.
    There is a rule on the Business Unit drop-down field to change the value of the
    Manager text field with the Manager data on the custom list. The rule pulls the
    Manager information and filters the value to match the
    Business Unit on the Data Connection with the Business Unit drop-down
    field value (Main).
    The Business Unit drop-down field works great and pulls the value from the custom list, and the rule populates the Manager text field. The problem is that Manager text field shows the name as such:
    [smith,, john]. Notice the two commas between the last and first name. There should only be
    one comma!
    Anyone have an idea why the text field is appearing with two commas?
    Arnel

    Hi all,
    I have a workaround for this. I have an InfoPath 2010 form pulling data from a SP2010 list. The user chooses a System (Business Unit) from the dropdown list and that choice auto populates the associated user (Manager) for that system. I had to
    use concatenation, substring before and substring after to display the correct data.
    concat(substring-before(DisplayName, ",, "), ", ", substring-after(DisplayName, ",, "))
    DisplayName is the original data for the field. I am able to cut & paste this field into the formula. Therefore, I added a few spaces to separate it from the actually formula for future use.
    Select Insert Function
    Select concat
    Select the first link to double-click to insert field
    and then select Insert Function
    Select the Text category and choose substring-before
    Select the third link to double-click to insert field
    and then select Insert Function
    Select the Text category and choose substring-after
    Copy and paste your fieldname (in my case DisplayName) in the
    double-click to insert field
    parts of the substring-before and substring-after links.
    Delete the middle double-click to insert field link
    Add quotes, spaces and commas so that they match the following format:
    concat(substring-before(DisplayName, ",, "), ", ", substring-after(DisplayName,
    Translation:
    concat(substring-before(Doe,, John, ",, "), ", ", substring-after(Doe,,
    John, ",, "))
    Bring together all of the text before ",," (i.e. Doe) with ", " (comma, space) and all text after ",," (i.e. John).
    It should return
    Doe, John.
    I hope this makes sense. I have these instructions with screenshots if you need them, contact me.

  • I am migrating from Tech Comm Suite, eLearning Suite, and Captivate licenses to a subscription model.  I need help.

    I already have an Adobe account that is associated with my work email.  We had purchased the Tech Comm Suite for Captivate and the eLearning Suite.  Adobe is not offering Captivate 8 as part of an eLearning Suite, but I DO need to upgrade.  I also would like to keep the other apps in both suites up to date, so we want to purchase a Creative Cloud subscription.  I don't have a clue where the serial numbers are kept, and as far as I know, the serial numbers don't show up anywhere in the app anymore.  Additionally, I cannot enter the billing information for my subscription because we have to make the purchase on a p-card owned by our administrative assistant.  So what I want to know is how to purchase a subscription for both Creative Cloud and Captivate that is associated with my email account without giving my login information to the administrative assistant?
    Is it possible to purchase a team subscription and add my email address to the team?  I have to give explicit instructions to our admin.
    Thanks

    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    or
    Adobe contact information - http://helpx.adobe.com/contact.html may help
    or
    by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Have a column which is having comma seperated values.. and i am trying to s

    Have a column which is having comma seperated values.. and i am trying to seperate it.
    I am trying to create a stored procedure ..Version 11g xe. .and apex version 4..
    Here is the part of code..I cant make a procedure. .cause my statement consist with clause..
    create or replace procedure ins_adv_invoice
    (mmagazine_no number,madvtno number,missueno number,msection varchar2,mpagenumber varchar2,msalesman_code varchar2)
    is
    cursor cx is with testa as
    (select pagenumber name from advertiser)
    select regexp_substr(pagenumber, '[^,]+', 1, rownum) result
    from advertiser
    connect by level <= length(regexp_replace(pagenumber, '[^,]+')) + 1
    where advt_no = madvtno;
    begin
    for xxx in cx
    loop
    insert into adv_invoice (magazine_no,advtno,adissue,section,page_number,salesman_code)
    values (mmagazine_no,madvtno,missueno,msection,xxx.result,msalesman_code);
    end loop;
    end;
    But when i run this .. it doesnt create procedure. .I get he following error..
    LINE/COL ERROR
    5/14 PL/SQL: SQL Statement ignored
    9/69 PL/SQL: ORA-00933: SQL command not properly ended
    SQL>
    Still not able to figure it out..Can any one help..
    Thanks

    Change the query to swap the last two lines:
    cursor cx is with testa as
    (select pagenumber name from advertiser)
    select regexp_substr(pagenumber, '[^,]+', 1, rownum) result
    from advertiser
    where advt_no = madvtno
    connect by level <= length(regexp_replace(pagenumber, '[^,]+')) + 1;
    ...

  • How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    How come there isn't a comma between the city and state when I go to make an envelope with an address book contact?

    On an envelope, there's not supposed to be. The US Postal Serveice prefers no punctuation, which can interfere with machine sorters. USPS Address Format

  • Can commas within topic titles and *.htm filenames affect hyperlink jumps?

    I have two topics that I'm trying to jump to from other
    topics. The thing these two topics have in common is that I
    originally used commas and apostrophes in the topic titles and
    *.htm filenames. This seemed to screw things up, since my jumps to
    the topics never worked.
    I deleted the topics that were causing problems and re-added
    them without using the punctuation. I still can't jump to these
    topics. To test whether there was a restriction on the maximum
    number of jumps you can add in one project, I created a jump to an
    entirely different topic - the jump worked.
    So, I think something got corrupted with these topics. I
    could try deleting them and adding them "fresh" again, but I
    thought I'd post here to see if anyone has come across the problem
    before.
    thanks in advance,
    ChristyG

    I was able to fix the problem by re-creating (for a second
    time) the topic titles and files and not using any punctuation
    whatsover. I think the problem stemmed from the keywords that were
    used/unused/deleted/reused. I went to the Index tab, selected "See
    Also" from the drop list, and deleted any keywords that were
    bolded.
    regards,
    ChristyGTWE

  • Comm table between 351 and 101for reporting

    Hello
    Which is the comm table form which I can get the data for 351 and 101 for the same STO
    Niti Narayan

    hi,
    > check tables: S031(Movement of current stocks) and MSEG(Document segment : Material)...
    Hope it helps..
    Regards
    Priyanka.P

  • Dump in COMMIT WORK after CRM_ORDER_MAINTAIN and CRM_ORDER_SAVE in SalesOrd

    Hi Experts,
    I am updating dates in Sales Order using CRM_ORDER_MAINTAIN and CRM_ORDER_SAVE .
    I am able to update two dates at the start of the program.
    But then in the middle of code if I try to update the dates it gives dump on COMMIT WORK, saying duplicate entry exists, though I am updating a different date in different field.
    If I execute the program again it does not give any dump and updates all status and dates successfully.
    Please help.
    Thanks in advance.
    Regards,
    Vikas

    Hi Vikas,
    Can you try this:
    Before you use CRM_ORDER_MAINTAIN can you call FM CRM_DATES_TIMECONTEXT_DELETE, and check the result?
    Kind regards,
    Bruno

  • Using a 2-D array Single Process Shared Variable w/ RT FIFO for comm between a Deterministic and non-deterministic loop on an RT Target

    Our problem is that we currently use a 2D array to store CAN data on a Real-time Target. The array is 20 elements of 3 byte elements as so:
                    0              1              2
    0              [byte]   [byte]   [byte]
    19           [byte]   [byte]   [byte]
    These values are passed between a Deterministic Timed (DT) loop where they are set and a Non-Deterministic Timed (NDT) loop where they are read and passed into a Network Published Shared Variable (NPSV) for communication across the network to a Host PC. I have insrted an image for illustration, pardon the size.
    Currently to pass the data between the DT and NDT loop we are using a Global Variable (GV). To improve the system we have attempted to replace these GVs with Single Process Shared Variables (SPSV) with an RT FIFO enabled.
    To create the shared variable I simply right clicked the GV of interest and selected create Shared Variable Node form the drop downs. At this point LabVIEW presented me with a 2D NPSV within a new Library hosted on the RT Target. I then selected this new NPSV from the Project, changed it to a SPSV, and enabled a single element FIFO. This variable was initialized with a default value for the size described above and then used in our code for the DT to NDT communication, and conversion to a corresponding NPSV for sending to the Host.
    When I went to run the code I noticed that the variable was in fact 2D, however its size was only 2 elements of three bytes each, in other words only two of the row indices were populated and the other appeared as uninitialized. in addition, this data had no resemblance to the set initilazation value. This was also how the variable was presented on the host side of the network after tranfer into a NPSV.
    The peculiar part is that If I change this SPSV to a NPSV and then try to change it back, I receive an error saying the type is not supported for SPSV with an RT FIFO enabled. I have to disable the FIFO (which defeats the entire purpose) in order to successfully compile! I am unclear as to what is the bug in this case. Should I not be allowed to create the original 2D SPSV with a single element RT FIFO enabled without receiving an error? Or if this is okay how do I fix the problems associated with the variable after being allowed to create it?
    I have found the following discussion in which a user states “The only limitations for custom controls is the ability to use it with RT FIFO enabled on a network-published shared variable”. Is this also true for SPSV? I have not found any documentation explicitely stating this for SPSV, though it is stated for the NPSVs.

    Martin,
    RT FIFOs don't support Multi-Dimensional Arrays, which would corroborate the issues you're seeing.  You can break up the 2D array into 1D arrays by reshaping the array, then you'll be able to use the RT FIFO enabled variable, just set the array size to the total number of elements (20*3 = 60).
    You can also pass the 2D array via pre-allocated queue, or using a Functional Global.  We have a reference example for a circular buffer using Functional Globals here.

  • Comms between a database and an oracle client is slow

    I have a Win2000 server machine (Running MicroStrategy) with Oracle client (9.2.0.1.0) querying an Oracle DB (9.2.0.6.0) on AIX 5.2 (They are connected via Gbit ethernet, ping times are 1ms and no hops enroute). After a lot of testing I have simulated the problem I see in MicroStrategy by running a simple select * from A_TABLE which returns 30,000 rows to the client. When I run this it takes about 2 minutes to complete.
    When I run the same query against a copy of the database on Solaris it takes 5 seconds.
    When I run the same query from a different PC (same Oracle client) it takes 2 seconds.
    I seem to have a problem with this specific Oracle client machine talking to a specific Oracle DB. It happens with Oracle Net connections, ODBC and Oracle Wire Protocol connections.
    Anyone have any ideas?
    Thanks
    Marc

    I can't see how tuning the Oracle Networking would help as both ends of this problem work OK when talking to other nodes. The DB server certainly performs well with any other client, so tuning at that end would seem pointless. The Win2000 server first display the issue using Oracle Wire Protocoal drivers which don't require Oracle client anyway - there doesn't seem to be much to tune. (AND it works OK against other DBs)

  • Comma printing as Dot and Dot Printing as Comma

    Dear All,
    I am having following Query :
    While printing the sales order, value of the amount printing as
    12.234,00 instead of 12,234.00 in few sales order Doc.
    Please give solution
    Mayank

    Hi Mayank,
    This problem is generally because of the user setting, you correct it with the following code, You can check it in Su01.
    1.  First of all Fetch the currency format.
    form fetch_currency_format  changing w_usr01 type ty_usr01.
    Check for User's Decimal notation
      select single dcpfm
                    from usr01
                    into w_usr01
                    where bname eq sy-uname.
    2. When you are writing the currency or the quantity field.
    Convert Currency to Desired format.
        if not w_slmin_c is initial.
          if w_usr01-dcpfm eq c_x.
          elseif w_usr01-dcpfm is initial.
            split w_slmin_c
                     at    c_comma
                     into  w_min1
                           w_min2.
            translate w_min1 using c_chng.
            clear w_slmin_c.
            concatenate w_min1 w_min2 into w_slmin_c separated by c_dot.
          endif.
        endif.
    Main thing you have to comare the work area field w_usr01-dcpfm  is not equal to 'X'.
    Hope that you will get what you want.

  • Appel de sous VI

    Bonjour,
    Actuellement en possesion du toolkit Sound and Vibration et LabView 2013, j'ai créé un sous VI avec la fonction Microphone pour calibrer les micros de mon banc acoustique, j'ai appelé se sous VI dans mon VI principal. On enregistre des données dans un fichier texte (sous VI).
    Quand j'éxécute mon VI principal je n'obtient aucun résultat. aurai-je manqué une manipulation ?
    Merci de votre aide.
    PS : j'ai joint mon projet.
    Pièces jointes :
    Banc acoustique.zip ‏105 KB

    Au moment de construire ton application, tu peux choisir dans les options dans quel répertoire copier les sous-VI, comme sur ce screenshot :
    Par défault, ils ne sont pas inclus "physiquement". En cochant l'option "set destination for all contained items", ils le seront.
    Cordialement,
    J.D.
    French Labview beginner
    N'oubliez pas de complimenter les bonnes réponses - Don't forget Kudos for good answers

  • PROBLEME POUR LIRE UN FICHIER UFF AVEC SV SUITE

    Bonjour
    J'utilise LV2010 et Sound and vibration suite. Avec cette version le VI permettant de lire les fichiers UFF58 ne fonctionne pas.
    Lorsque j'utilise la solution décomposée, l'erreur est située sur le VI close.
    Auriez vous rencentré ce problème, et comment l'avez vous résolu?
    Merci
    Christian Epié

    Bonjour,
    A mon avis, votre problème vient de votre écriture de fichier.
    Vous utilisez un VI Express d'enregistrement sur fichier qui à chaque tour de boucle va ouvrir le fichier, écrire dedans puis le fermer. Ce VI n'a certainement pas le temps de suivre le rythme. On l'utilise en général pour un enregistrement ponctuel. Je vous conseil de regarder les exemples situés dans Fondamentaux >> E/S sur fichiers pour créer un enregistrement de plus bas niveau. Globalement, vous ouvrez votre fichier à l'extérieur de votre boucle, vous écrivez dedans et vous fermez le fichier à la sortie de votre boucle.
    Je vous conseillerai également de placer un cadencement dans votre boucle, ça évitera de saturer votre processeur. Il vous suffira de placer une fonction "Attendre un multiple de ms" dans votre boucle et de mettre un cadencement correct (10ms par exemple).
    Vous pourriez également utiliser des files d'attentes pour séparer votre lecture et votre enregistrement. Vous pourriez ainsi lire à haute fréquence et par l'intermédiaire de la file d'attente, enregistrer toutes vos valeurs. Pour cela je vous conseil l'exemple "Principe de base des files d'attentes".
    En mettant ainsi en oeuvre votre programme, vous devriez récupérer toutes vos valeurs.
    Cordialement,
    Mathieu P. | Certified LabVIEW Associate Developer
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    Journées techniques : des fondamentaux aux dernières technologies pour la mesure et le contrôle/comm...

  • Obtaining comma-separated list of text values associated with bitwise flag column

    In the table msdb.dbo.sysjobsteps, there is a [flags] column, which is a bit array with the following possible values:
    0: Overwrite output file
    2: Append to output file
    4: Write Transact-SQL job step output to step history
    8: Write log to table (overwrite existing history)
    16: Write log to table (append to existing history)
    32: Include step output in history
    64: Create a Windows event to use as a signal for the Cmd jobstep to abort
    I want to display a comma-separated list of the text values for a row. For example, if [flags] = 12, I want to display 'Write Transact-SQL job step output to step history, Write log to table (overwrite existing history)'.
    What is the most efficient way to accomplish this?

    Here is a query that gives the pattern:
    DECLARE @val int = 43
    ;WITH numbers AS (
       SELECT power(2, n) AS exp2 FROM (VALUES(0), (1), (2), (3), (4), (5), (6)) AS n(n)
    ), list(list) AS (
       SELECT
         (SELECT CASE WHEN exp2 = 1  THEN 'First flag'
                      WHEN exp2 = 2  THEN 'Flag 2'
                      WHEN exp2 = 4  THEN 'Third flag'
                      WHEN exp2 = 8  THEN 'IV Flag'
                      WHEN exp2 = 16 THEN 'Flag #5'
                      WHEN exp2 = 32 THEN 'Another flag'
                      WHEN exp2 = 64 THEN 'My lucky flag'
                 END + ', '
          FROM   numbers
          WHERE  exp2 & @val = exp2
          ORDER BY exp2
          FOR XML PATH(''), TYPE).value('.', 'nvarchar(MAX)')
    SELECT substring(list, 1, len(list) - 1)
    FROM   list
    Here I'm creating the numbers on the fly, but it is better to have a table of numbers in your database. It can be used in many places, see here for a short discussion:
    http://www.sommarskog.se/arrays-in-sql-2005.html#numbersasconcept
    (Only read down to the next header.)
    For FOR XML PATH thing is the somewhat obscure way we create concatenated lists. There is not really any using trying to explain how it works; it just works. The one thing to keep in mind is that it adds an extra comma at the end and the final query strips
    it off.
    This query does not handle that 0 has a special meaning - that is left as an exercise to the reader.
    Erland Sommarskog, SQL Server MVP, [email protected]

Maybe you are looking for

  • Brand New iMac, no iChatting

    We just bought a brand spankin' new iMac last night. Set it up, no problem. Created a .mac account and a AIM account. Opened iChat. Called my father who' iChat starts up automatically and had him fire up his iMac. He's entered in as a Buddy, but stay

  • Problem at the time of creation order

    Dear Gurus, facing update termination error at the time of creation/change the sales order..in development system after some analysis,  found one more error due to which above mention error is coming report run : "RMCSUTIC" : check utility logistic i

  • I have to take printout of report

    hi    i have to take the print-out of a report having LINE-SIZE 525 ,this line-size is minimum required.     even in SMARTFORMS if i will use A3 page i can give max width 41.20 cm in landscape, but total fields in report are 20 i.e. roughly i can ass

  • The allow cookies option is missing  in safari preferences.

    The table relating to the cookies option is missing from the security tab in safari preferences,can't seem to find anywhere. Can anybody advise me on this. Thanks

  • Sd _pricing

    Hi all, someone can explain the different between access sequence ZP00 and ZP99? What kind ok access sequence allow me to change the price in Sales Order? I mean, refer to access sequence ZP00 (Gross Price) is possible to change manually the price? I