Plotting more then one waveform, change offset for one only

just like tuning the one on the oscillescope
but it will only move up or down for one waveform, instead of changing all...
and how to change the increment to 10 times instead of increase by value

Two approaches come to mind.
1)Add an offeswt constatnt to all of the readings associated with the signal you want to shift.
2) Duplicate the Y-scale and associate your plot with the new scale. This approach is probably easier.
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns. The
    problem is most of those information are very repetitive. Is there a way for me to search more then one field text in the column and just input that same information in?
    ex:
    Column 1
    Column 2
    Date:
    883851
    MidWest
    User input 
    8831518
    MidWest
    User input
    On the search field in the SharePoint List, I would need to search for 883851, 8831518 etc,  would view those requested numbers, then I would click edit and change dates to those rows. Does that make sense? I'm sorry I'm fairly new at sharepoint.

    I think what you're asking is about having repetitive options in a list, show up easily for new items being created.
    This can be done by setting the columns that contain repetitive information to Choice fields.  In the configuration of the Choice field, check the box for "Allow custom values".  Now as users are entering data into the list, the dropdown of options
    for a given field grows and users can quickly see and select previously entered and thus repetitive values for the given fields.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • How to make changes in more then one file

    Hi All,
    M new and dont have deep idea about dreamwheaver.Actually i want to make changes in more then one file at the same time, how to do this. Is there any option available there. ?

    If you you build your new site with SSIs (server-side includes), changes to include files will populate to all pages on the remote server.  This is a huge time saver for maintaining common page elements on large sites.
    Example code might look like this:
    <body>
    header goes here
    <!--#include virtual="header.html"-->
    <p>some text</p>
    menu goes here
    <!--#include virtual="menu.html"-->
    <p>some text</p>
    footer goes here
    <!--#include virtual="footer.html"-->
    </body>
    </html>
    Pages with includes on them need to be saved as .shtm or .shtml.  If you use server-side scripts on your site, save as .asp or .php to match your script type.
    http://www.smartwebby.com/web_site_design/server_side_includes.asp
    Nancy O.

  • Printing salesinvoices, is it possible to do it for more then one invoice?

    Is there a method to use VF03 with a selection for more then one sales invoices?
    I want to print them as pdf file, so I have to fill in the field billingdocument, but I need it for more then one invoice at the same time.
    I tried but it seems not to work. Is it not possible? Or is there another solution to print more then one invoices at the same time?

    Hi,
    check in the Commnication method of your Output type whether In the NUMBER OF MESSAGES field was maintained as 4
    No of messages field will control the Number of invocies to print
    check this and revert
    thanks
    santosh

  • How to use 'BAPI_GOODSMVT_CREATE'  for more then one row selected ???

    Hi,
    I am using bapi , BAPI_GOODSMVT_CREATE  ,  my requirement is that first perform ALV display with check boxes & then user can selsct any number of rows  & then on clicking execute button  this bapi is triggered , now my ques is that  if i am selecting rows one by one & executing , then am able to post data successfully, but if am selecting  more then one row at a time then its giving me error
    " exactly one serial no must be selected  (instead of more then two / three ) ."
    plz help me .
    this is how i am filling data in BAPi & bapi call
    FORM FILL_BAPIDATA .
      wa_GOODSMVT_HEADER-PSTNG_DATE = sy-datum.
      wa_GOODSMVT_HEADER-doc_DATE = sy-datum.
      wa_goodsmvt_code-gm_code = c_gmcode.
      LOOP AT it_final INTO wa_final.
        wa_GOODSMVT_ITEM-MOVE_TYPE = c_movtype.                 " '313'.
        wa_GOODSMVT_ITEM-material =  WA_final-MATNR.
        wa_GOODSMVT_ITEM-ENTRY_QNT = wa_final-verme.
        wa_GOODSMVT_ITEM-plant =  WA_final-WERKS.               "'DB10'.
        wa_GOODSMVT_ITEM-STGE_LOC =  WA_final-LGORT.
        wa_GOODSMVT_ITEM-BATCH = WA_final-CHARG.
    wa_GOODSMVT_ITEM-BATCH = l_charg.
        append wa_GOODSMVT_ITEM to IT_GOODSMVT_ITEM.
        clear: wa_GOODSMVT_ITEM.
      ENDLOOP.
      LOOP AT it_final INTO wa_final.
        wa_serialnumber-SERIALNO = wa_final-sernr.
        APPEND wa_serialnumber to it_serialnumber.
        CLEAR wa_serialnumber.
      ENDLOOP.
      LOOP AT it_position2 INTO wa_position2.
        wa_serialnumber-MATDOC_ITM = wa_position2-wepos .
        MODIFY it_serialnumber INDEX sy-tabix from wa_serialnumber TRANSPORTING MATDOC_ITM .
      ENDLOOP.,
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          GOODSMVT_HEADER               = wa_GOODSMVT_HEADER
          GOODSMVT_CODE                 = wa_GOODSMVT_CODE
       IMPORTING
          GOODSMVT_HEADRET              = mthead
        MATERIALDOCUMENT              = w_MATERIALDOCUMENT
        MATDOCUMENTYEAR               = w_MATDOCUMENTYEAR
        TABLES
          GOODSMVT_ITEM                 = IT_GOODSMVT_ITEM
          GOODSMVT_SERIALNUMBER         = IT_SERIALNUMBER
          RETURN                        = IT_RETURN
      GOODSMVT_SERV_PART_DATA       =
      EXTENSIONIN                   =
    APPEND w_MATERIALDOCUMENT to it_GOODSMVT1 .
    IF sy-subrc = 0 .
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *MESSAGE text-016 TYPE 'I'.
    PERFORM msg_log  .
    ENDIF.

    Hi,
    Did u check the serial numbers table before calling the BAPI. Might be the case tht same serial number is assigned for all items, in this case the goods movement may be possible with same serial number for all items.
    Reagrds,
    Aditya
    Edited by: aditya on Aug 11, 2009 11:46 AM

  • How to create a service call for more then one item

    Hi All,
            How to create a service call for more then one item. i.e. the service call should be logged for more then one item

    As you noticed this is not possible by design.
    Maybe you could have a dummy item for that purpose and register the real items to be handled in a UDT...
    HTH

  • DSU Execution Error: More then one instance found for name: DVEBMGS00

    Hello,
    try to start an Upgrade from SAP4.7x110 to ECC6.0 EHP4 SR1 by running the statup.but. I recieve immediatly the error. DSU Execution Error: More then one instance found for name: DVEBMGS00.
    The System is a fresh homo.sys-copy (comming from DVEBMGS00). On the harware was running in former times an instance DVEBMGS00 but the SID was a different. I allready looked if there is still something on the host from this last installation but nothing found.
    Any suggestions
    Peter

    Hi,
    Please see the link below..Hope this will help you..
    Upgrade stuck in Pre- Processing
    DSU Execution Error
    /thread/1948457 [original link is broken]
    Regards

  • Is it possible to retrieve report for more then one record at Bi Pub

    is it possible to retrieve report for more then one record at a time using BI Publisher on siebel Application

    Hi Sudhir,
    We have tried this.
    I think currently you can query for records you want on UI and run report , then you can see the result set of query in report.
    But i think in future releases of BIP the feature to run a report for selected & Multiple Selected records will be provided.
    Thanks,
    Vamsi

  • Deceptive Shipping pratices for orders of more then one phone

    Verizon basically cheated anyone if they bought more then one phone. I had the issue associated with the discounts, so I was unable to get my order though till 2:45 central. I ordered 2 phones one sliver 16gb 6 and one gold 16gb 6+. They Sliver 6 said deliver on 9/19 and the 6+ was 10/15. I was upset that it would be delayed cause of the errors on Verizon end but still wanted to save my place in line so I ordered. I considered splitting the order but didn't want to be delayed again. What I'm most upset about is even after confirming with Verizon that I would still receive my 6 on 9/19 I did not. I'm now being told that they can not separate the order and they have to be shipped together. This is a very deceptive practice and it basically gave them another iPhone to sell on opening day. Imagine waiting in line to buy two phones but them selling one of the phones you wanted to someone in line behind you cause they didn't have the other in stock. I fully understand that this was an extremely popular phone but to not have the most basically shipping practices is unacceptable. It is also not right that I was lied to about the shipping practices before launch day. I'm hoping that Verizon will be willing to do something to make this right but I expect a canned answer directing me to the order status page.

    unfortunately, there is no option or feature yet in Skype which allow users to login in one computer or device only at a time.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • How can I restrict more then one user to access the table?

    Hi !
    I have a problem and two solutions and I am a bit confused as to
    which one is the best one and/or can there be any better way of
    handling the problem ?
    Problem : I have to update a key field of a table when I update
    it in the form 5.0 screen. I am basically doing a maintenance of
    a table and if a certain field is updated then the change has to
    be reflected in two more tables. But the issue is that the field
    is a part of the key in those two tables. So all I can think of
    is that I need to insert new set or rows for that new value of
    the field and delete the old set of records for old values of
    the field.
    There are two ways of doing it;
    1.One option can be to explicitely define two cursors separately
    and fetch the values in them one by one and then insert the new
    records and then delete the old records in both the tables. This
    I feel will be a cumbersome process both in terms of processing
    time and the coding.
    2.Second option I was thinking can be to create two flat tables
    (without keys) and insert the values in them and update the
    changed field there and then insert the rows in the respective
    tables. Delete the old records in the main tables and delets the
    records in these flat tables. This is a bit more faster and
    easier to predict and code. This seems to be a better option for
    me.
    Any comments on these ?
    In both the cases I was thinking of making some provision so
    that more then one person can't update the table simultaneously.
    Since if there are more then one persons doing the processing
    then some inconsistency might creep into the whole process.
    This is easier to do in the second process as if I check the
    data in the flat tables and if there is some data then I can
    presume that some one is doing the processing and I can ask the
    other person to hold for a while. But in this case how can I
    stop more then two people to simultaneously check for the empty
    table and start inserting the record ?
    I was just thinking of having a sepatare table having only one
    field and this will be a key field and as the process begins the
    process will insert a fix value say 'Y' in the key field and at
    the end of the process the record will be deleted and this way
    we can restrict the user to access the process more then one at
    a time..? Since you can't have same value of the key in a table
    more then once.
    Any better way of handling it will be deeply appreciated.
    How about locking the table at the begining and releasing the
    lock at the end ? Will there be any issue in that? since I am
    inserting and deleting the rows in the same transaction.
    Comments welcome,
    Shobhit
    null

    How about performing the update IN the database using a stored
    procedure?
    By using non-database fields on your form to get the
    information, you can then call the procedure in the database to
    perform the updates. If an error occurs in the procedure you
    rollback, if necessary, and send a message or status back to the
    form. If it succeeds you might wish to commit and then re-
    execute the form's query -- using either the original key values
    or the new key values...
    null

  • Find and Replace more then one character

    Hi
    I need to find and replace more then one character. for example: I need to replace "A" with "a". "B" with "b" and so on. how to do that in one search?

    See the following script by Peter Kahrel:
    Change case
    http://www.kahrel.plus.com/indesign/grep_change_case.html
    If the "A" and the "B" are in arbitrary positions in your text you could use the following GREP:
    [AB]
    together with the script.
    For testing your GREP expressions, you could use the following script, also by Peter Kahrel:
    A GREP editor
    http://www.kahrel.plus.com/indesign/grep_editor.html
    Uwe

  • Can I have more then one MVIEW site connected to single master site?

    Hi,
    I need one help from your end.
    Currently I am working on Basic Replication.For that I am using Read only Materialized views.first i tried with one master site & one Materialized view site its working fine,Can I have more then one MVIEW site connected to single master site referring to same database ? if so how to achive this one..

    Actually one of my senior told me that you need to change number of OPEN_LINKS value like that so for that reason I asked this question.
    Still that problem not solved..
    I will explain what are all the things I did ok.
    IN MASTER SITE:
    I am creating read only MVIEW's.
    first i created one user repadmin and have given
    1>execute any procedure
    2>dbms_repcat_admin.grant_admin_any_repgroup
    3>dbms_repcat_admin.grant_admin_any_schema
    4>select any dictionary
    and all other grants to repadmin user
    then I changed global_name = 'zxincmp' on Master site.
    Then I created mview log for each table (for 85 tables) & then I created mview's for that table on Master site itself. later I took a dump of these 85 mview's . then I transfered this dump to one of my mview site.
    IN MVIEW site:
    I created one user zxdbp_55 and all the above rights are given to this user & i created one public dblink
    "zxincmp" using "TO_CMP"(master site).Then I imported that dump which i took from master site.
    then i created one private link zxincmp in one of my mview site.then i used DBMS_REFRESH.MAKE('')
    to refresh all my tables & to set the interval..
    after that i created index on the mviews..
    this will works out fine for single master & single mvirew site.but I tried with the same procedure to prepare one more mview site,everything is fine but main problem is second mview site is not getting refreshed automatically,i need to do refresh manually from enterprise manager.. then it will get refreshed.
    how to overcome this problem? I am using same db name ,dblink,refresh group for both the mview site will it affects anywhere?
    Thanks & Regards,
    Hanumanth.

  • Can I have more then one icloud E-Mail Account?

    Can I have more then one icloud E-Mail Account?

    Hi Pathfinder93950,
    Welcome to the Support Communities!
    You can only have one iCloud account per Apple ID.  However, you can have up to 3 aliases that point to that iCloud account.  Here is some additional information:
    iCloud: Set up an @icloud.com email address
    http://support.apple.com/kb/ph2620
    After you set up your @icloud.com email address, you can use it to sign in to iCloud. You can also sign in using the Apple ID you used to create your iCloud account.
    iCloud: About email aliases
    http://support.apple.com/kb/ht4897
    iCloud: Create or change email aliases
    http://support.apple.com/kb/ph2622
    You can have up to three active email aliases, and you can delete or deactivate (turn off) an email alias at any time. You might want to deactivate an alias if, for example, you use an alias to make a purchase. After you receive the item, you can turn off the alias to avoid follow-up advertisements, then turn it on again when you make another purchase.
    Deleting an alias is permanent, so if you think you might want to use the alias again, you should simply turn it off. When an alias is turned off, all email sent to that alias is returned to the sender.
    iCloud: Using your @icloud.com email address
    http://support.apple.com/kb/ht5441
    Cheers,
    - Judy

  • OVI and syncing and having more then one phone

    I recently just upgraded my wife and my phones to Nokia 6350's, after backing up all my contacts and everything in Nokia's PC suite from the old phones and after activating the phones and restoring the back up to the new phones I saw there was an update suggestion to the PC suite which was OVI.
    I thought great maybe more function Etc..
    After downloading and finally figuring out how to put my phone number in in international format, I get it registered logging into my wife's phone first, from inside the app, I added my phone to it, but it didn't as me for the phone number or anything, but allowed me to change from one phone to the other, well when I hit the sync button for my phone it connected to my phone then added all my contacts to the existing contacts of my wife's, what I didn't relies at first it also put all my wife's contacts into my phone book on my phone, this is a major bug that shouldn't be allowed, Why would I want my wife's contacts in my phone???
    Well lucky for me since I had just backed up all my contacts separately,
    I closed out OVI and started PC Suite up, I wiped out my whole contacts and reloaded them from back up,
    What I can't figure out is why would they design their program like this that doesn't seen to allow you to manage multiple phones from the same program,
    Nokia's PC suite does this part great, as it keeps each phone totally separately.
    The other thing I don't care for is that OVI seems to depend on having an internet connection, which there are people out there that would like to manage their phones without having to have this, PC suite can be used without a internet connection.
    Does anyone have any idea on how to separately manage more then one phone in OVI?

    Set up a user account in Windows for your wife on the same computer and when syncing her phone set up and run Ovi Suite from that account.
    It is easy and once one gets used to it it gives great flexibility.
    This is not just a Nokia thing but quite a normal way of managing multiple devices for multiple users in Windows applications (e.g. we use an application that remote controls multiple telecommunications devices for multiple users and it manages them in that same way except it goes further and requires a separate account for each device as well as each user).

  • How to retrieve more then one record from database

    I am doing a SELECT FROM WHERE SQL statement on a database which returns more then one record. I want to retrieve certain column values from the selected records. How do I do that? If only one record is returned, I know I can do a data operation with operation set to 'Get-Retrieve Values from Record' and Record to operate on set to 'Current-Use current record'. I need to find out how to configure to data operation window in the case more then one record is returned by the preceding SQL statement. Depending on the number of records returned, I can dynamically create array variables to store the 'to be retrieved' column values, just dont know how to retrieve them.
    Any help will be greatly appreciated.
    Thanks
    Anuj

    I apologize for not being clear in explaining my problem, perhaps I should have posted an example. Anyways, I was able to figure out the solution. I was doing an 'Open SQL' statement which was selecting multiple records (rows) from a table in the dB. I was storing the number of records returned in a local variable. Then, I wanted to retrieve certain columns of all the selected rows (records). In the "Data operation", I was choosing the 'Record to operate on' as 'Current-Use Current Record'. Changing this field to 'Next-Fetch next record' fixed the problem. I then retrieved the values of those columns into a dynamically created array variable whose dimensions came from the local variable which stored the number of records returned in the SELECT SQL statement. 
    Thanks
    Anuj

Maybe you are looking for

  • Installation and Other Issues

    I recently upgraded from Crystal 11.5 to Crystal 2008.  Since then I have been battling a host of problems trying to make this work.  This is the latest. I had a problem running some older reports in a web application.  I was getting the Login Failed

  • Set  mo_global.set_policy_context in sql developer,But no datas to view

    Hi All I have query some tables in sql developer.but no datas retrivee So i have try to set the MO_global based on org_id BEgin Apps.Mo_Global.Set_Policy_Context('S',81); End; Begin Dbms_Application_Info.Set_Client_Info(81); End; " select * from Mfg_

  • Oracle Certification Exam for AIA

    Does Oracle have any certification exam for AIA Developer & Expert like similar exam in other technical & functional stream? If not, is Oracle is planning to lunch that in near future? Thanks priyadarshi.

  • How did dust get under the screen?

    I bought a PB used about a month ago and it was in like new shape with the exception of one dead pixel that annoyed me. This is getting picky but now I noticed there is a piece of dust about an inch away from the dead pixel which really annoys me whe

  • Aftereffects reports source media is unable to be read.

    Hi all, I have a comp in AE that was working fine until yesterday when aftereffects started reporting that the source files could not be found. The problem is, the files are there and open fine in premier pro, nuke, and any other software i have trie