Custom data for x-axis

I am facing a problem with ploting a desire graph. I am acquiring data (in Volt) from peripheral and have to plot it against a calculated data in X-axis.
the X-axis data will be calculated from time. means like that--
                                                                                                          x=t*5000*15
the problem is -
                                 1. i have to access the time duration "t".  
                                 2. i have to plot X vs Y where Y is a real time data. 
is it possible to access the computer clock for this purpose or I have to do somthing else? which one will be more convenient?
Should I use XY graph or somthing else? 

Hello Sukhiray,
Thank you for contacting National Instruments!  It sounds like you are trying to just scale the X-axis by a multiplier.  Is that correct?  If so there is a property node that you can use that will do just that.  I have attached a screenshot that shows you how to get to the property for the X-axis multiplier. If you place a Waveform Graph on the Front Panel and then go to the Block Diagram and right click on the Waveform Graph you should be able to navigate to the property and place it on your Block Diagram.  From the formula that you have I believe you will just need to set your multiplier to 75000 and you will get the X-Axis that you desire.  I hope this helps!
Thanks!
Bob H
Applications Engineer
National Instruments
Attachments:
Xaxis Multiplier.JPG ‏114 KB

Similar Messages

  • XD02 transaction to change the customer data for updating KNA1 table?

    Hi all,
    How can we use XD02 transaction to change the customer data for updating KNA1 table?
    Give the steps.
    Thanks in advance
    rk

    Hi KR,
    Why don't u use BDC to run XD02.
    With Regards,
    Zafar Ali

  • Custom dates for change request

    Hi all,
    we wanted to have a possibility where we can maintain several (to be defined and must be easily changeable) time estimates on change requests, for example:
    u2022     Time estimated for development
    u2022     Time spend for development
    u2022     Estimated time left for development
    I have tried to create a custom date. I got confused with the date rules and the entire procedure. I was not sure whether the procedure is correct or not.
    Kindly advice on the exact procedure for creating custom dates for change request.
    Regards,
    Subhashini.

    Hi all,
    could anyone guide on this issue pls.
    Regards,
    Subhashini.

  • Foreign Trade / Custom data for local Client

    Hi SD's,
    I've an issue regarding the creation of Billing document, because for a local Client it is asking me for this data.
    We've a 3 scenarios working:
    1- Normal sales inside the country for a certain Order Type - ZA, Delivery Type - ZA and Billing doc Type - ZA. Flow works ok.
    2- Export sales - flow work ok and the user as to fill Foreign Trade / Custom data (using the same documents types as above);
    3- Intermediation - for local client or to export, here is where the system fails when we've local Client it still ask for Foreign Trade / Custom data and it should not. In this scenario we are using Order Type - ZB, Delivery Type - ZB and Billing doc Type - ZB and we've CO-PA for this scenario.
    I think this may be related because before we've this scenario integrating with CO-PA everything worked perfect.
    Does anyone have a clue on this?
    I've read some notes regarding Foreign Trade / Custom data but none of them seam to answer my problem.
    Thanks in advance.
    Regards,
    BO.

    Hi bruno
    It is in copy control  VTLA and in  VTFL also . select your order type and delivery type and click on blue lens on top left. There try to maintain as follows:-
    Order requirements:::::::001
    Combination requirmt::::051
    Header Data:::::::::::::::::001
    Similarly, go to VTFL, select your delivery type and billing type and click on blue lens on top left. There for the field Determine export data, maintain as per your requirement and for Copying requirements, maintain routine 003.
    Regards
    Srinath

  • Custom data for equipment load from ECC to CRM 7.0

    Dear All,
    Please suggest the steps required to trace the initial/delta load data for equipment from ECC to CRM & carry out the enhancement for missing fields data.
    Thanks & Regards
    DB

    Hi,
    You have to use download object CRM_EQUI_LOAD. First ensure that all the materials and business partners from  ECC to  CRM are downloaded.
    For more details jut go through
    http://help.sap.com/saphelp_sm40/helpdata/en/94/657a3b233b8541a18ed80b424bf1f8/frameset.htm
    Best Regards,
    Rajendra

  • Custom Date for Birthdate entry

    I got issued a project that requires me to take a pre-exsisting professional Scholarship form and make it into a PDF. I've been able to make the form fields with no problem but I'm running into a few issues with the Date format.  This form requires the Applicant to type out their Birthdate and Social Security #, however, the higher ups don't like the default method Acrobat uses.
    Problem #1: Because some of our Applicants are Elderly and/or are not very computer literate, I want there to be "some" flexibility to them typing out their birthdate.  IE, MDDYY, MMDDYY, MDDYYYY, MMDDYYYY will Validate through a script that turns it into the company standard format of MM/DD/YYYY.  I have a very basic bit of Custom Keystroke script that I found and edited slightly.  Its not pretty though.
    var a = event.value;
    if(a.length==5){var b = util.scand("mddyy",a);event.value = util.printd("mm/dd/yyyy",b)}
    if(a.length==6){var b = util.scand("mmddyy",a);event.value = util.printd("mm/dd/yyyy",b)}
    if(a.length==7){var b = util.scand("mddyyyy",a);event.value = util.printd("mm/dd/yyyy",b)}
    if(a.length==8){var b = util.scand("mmddyyyy",a);event.value = util.printd("mm/dd/yyyy",b)};
    This does what I want it to do, sort of, but deviating outside of this script results in undesired results. IE typing 02/13/71 will get 02/13/71 not 02/13/1971.  Then there's a potential problem of the century. Typing 021327 will get 02/13/2027 not 1927.
    Can anyone lead me in the right direction of where to close the flexibilty off at giving an Audio Alert when any other keystroke besides 0-9 and / is entered while maintaning the Validity of the above format of MM/DD/YYYY?
    (I realize this is pretty much nitpicking, but the higher ups say jump and I have to say How High and I'm not at the skill level yet to achieve the desired results.)
    Problem #2: In the same form, the Applicants SSN needs to be entered but the default format under Properties > Format > Special is requiring the full 9 digits. However, we have more than a few people who have "less" than 9 digits.  Given that the higher ups want to give some flexibilty to Elderly and non-computer literate on the SSN field as well, I've been asked to correct this problem.  Now, I've been steered in the direction of Leading Zeros script and AutoTab features, but to be honest, most of this is beyond my understanding in how to achive it. I understand the concept of leading 0's in the util.printd feature of the 999-99-9999 format, however, any attempt to do this stuff leads in undesired results.  Please help if you can.
    Thanks in Advance,
    Dean

    Thank you for replying Gkaiseril, not really sure what you're talking about with RegExp, hidden Fields and the like.  As I stated above, my skills with acrobat are limited and my knowledge of Java script is less than that.  Could you give examples or write out examples of what you're talking about?  I plan to learn more on Java, scripting and getting better at Acrobat, but for the mean time, I just need the scripting of how to get the Date field to do what I want it to do.
    As for the SSN, I'm aware of the 9 digit limit, this is why I'm wanting the script to fill in less-than-9-digit SSN's with leading Zeros.  We have had examples of the past of our clients and applicants with Exm 001-34-5678 not entering their 0's first and it confuses them as why their paperwork was'nt accepted or returned invalid.  Plus, our OCR system doesn't like the SSN field if its entered incorrectly.  This is why I was directed to look at leading 0's and something about a decimal point ...
    I haven't looked into the util.printd yet, in fact I know absolutely nothing about it except from what you told me.  No idea where to look for the things I want to accomplish.

  • Fecthing custom dates from custom ODS

    hi,
    I have a custom calendar ODS which hascorresponding custom dates for a given date such as:-> week in year, week in month, day in month and also i have a flag which has a unique value for every week.
    Now I have loaded all these data in the cube by looking up into this ODS for all the records corresponding to their dates.
    Now while executing a report on that cube. I want to fetch the value of flag for the current system week.
    Means according to todays date i want to get the flag value.......PLease tell me how to go about the problem...or tell me if you want more details..
    Thanks a lot in advance.

    Hi,
    Try this code.
    DATA: L_S_RANGE TYPE RSR_S_RANGESID.
    DATA: LOC_VAR_RANGE LIKE RRRANGEEXIT.
    DATA : ZDATE LIKE SCAL-DATE.
    CASE I_VNAM.
    WHEN 'ZTVDAY'. 'VARIABLE FOR your Flag IO
    IF i_step = 1.
    ZDATE = sys-datum.
    Select single flag from /bic/odsname00 where /bic/date = zdate.
    IF sy-subrc EQ 0.
    l_s_range-LOW = flag.
    ENDIF.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'EQ'.
    APPEND l_s_range TO e_t_range.
    ENDIF.
    ENDCASE.
    Lemme this works..
    Regards,
    San!

  • Nested routings and Custom Data

    Hi,
    I am working and testing different solutions with Nested Routings.
    For normal operations in a routing I can add Custom Data for each routing step.
    However when I add a special routing as a nested routing within my routing I can not add Custom data
    for this routing step.
    Are there any workarounds available? Am I  doing it the wrong way?
    Br,
    Johan

    Hi Johan,
    I would suppose that nested router is not treated as a router step but rather as a link to that router because there is no actual activity done at the step-link but rather at the actual steps of the nested router. So, if you can assing Custom Data to nested NC router but can't for Special router, then it is probably a bug. Otherwise, my guess is true and you can't assign Custom Data to step-link at all.
    Regards,
    Sergiy

  • How to Copy customizing data from one company code to another company code

    Hi
    Big Boss opened a new company, we need to implement SAP system for this new company. this new company has same business with our one old company. so, we may almost use old the company customizing data for this new company. anybody can tell me how to copy the customizing data.
    Regads
    Henry

    Hi, Paraschand G
    Thank your very good solution as BC Sets. I had general knowledge on Rollout and BC Sets now.
    How ever, I have a problem on creating my first BC Sets. Should I creat a BC Sets as my template via copy existing customizing data? I seen some existing BC Sets which arenot I want. We implemented big5 modules for some company codes. I want to copy one of them as my BC Sets template. I won't create it manually because I worried about I will miss some data if I select these data one by one. I cannot find out a Full-BC Sets template contains all customizing data. Could you please give me some guide. I cannot ensure my understanding of BC Sets. Please correct it if I have wrong idea.
    Regards
    Henry

  • How do I delete a custom date (in addressbook) with applescript

    I can't figure out how to delete a custom date for a contact.  I've worked with addresses and emails, phone numbers, but this one eludes me.
    I want the script to go through all my contacts and delete every custom date whose label is "Mail Received"
    I've searched and found a few people who had problems deleting custom dates, but I can't find an answer...
    Thanks,

    Hi,
    Delete a custom date  doesn't work,  it's a bug.
    Setting the value of the custom date to "missing value" works here (Mac OS X 10.5.8), but this generates an error (error : AppleEvent handler failed), I use a try block
    Try this script
    tell application "Address Book"
         repeat with theseDates in (get custom dates of people whose its label = "Mail Received")
              repeat with thisDate in theseDates
                   try
                        set value of thisDate to missing value
                   end try
              end repeat
         end repeat
         save
    end tell

  • Custom Data Question

    I have a column of a table with images defined like so:
    wqTable.addColumn(new sap.ui.table.Column({
      label: new sap.ui.commons.Label({text: "Photo"}),
      template: new sap.ui.commons.Image({customData: new sap.ui.core.CustomData({
             key:'zoom-image'
           }).bindProperty("value", "ImageSource")}).bindProperty("src", "ImageThumbnail").addStyleClass("image-constraint"),
      width: "400px"
    and a JSON object like so:
    var aData [{id: 6, GateType: "AGS", DamageInfo: "", ImageSource: "http://v0-230.netapp-n1.omhq.uprr.com/iee_2a/NOV/08/110813SO23200045765/snapshot-chassis0-lsright-full.jpg", ImageThumbnail: "http://v0-230.netapp-n1.omhq.uprr.com/iee_2a/NOV/08/110813SO23200045765/snapshot-chassis0-lsright-thumb.jpg", Date: "02/03/2014 11:21", GateDirection: "Out-Gate", Location: "Global 1", checked: false}];
    It doesn't seem like the customData is binding to the ImageSource correctly. How should I be defining the custom data for this column of images?

    Hi Michael,
    actually I think your example code works fine.
    See this running example:
    http://jsbin.com/deqaciju/1/edit
    If you want to see the custom data in HTML, you need to set "writeToDom: true". I think this is the only change I did.
    Would have been helpful for us and others if you had provided such a JsBin example. Dennis could have easily tried his suggestion and would have found it is not applicable because within the Table's aggregation binding the relative binding path you used is fine.
    Regards
    Andreas

  • Custom data types for Web Service services

    Instead of language primitives (int, double) or Strings, is it possible to define custom data types (i.e. classes) for use in a service method argument or as a service return type? For example, if I create a class called MyClass then could I use it as an argument n a service as follows: someServiceMethod( MyClass myClassInstance). A service returning the custom type might look like this: MyClass getTheClassServiceMethod(String someString). Are either of these ideas possible?

    Hi there,
    you can use your own classes as service method argument or return type. But you should not forget to do a type mapping on both the service and client side.
    I can tell you, how I am sending and receiving my own datatype called "FileBean" which is a simple JavaBean with getter() and setter() methods for the properties.
    I'm using axis for deployment and tomcat as the web server, where my service runs on (currently only local but in future this will be remote).
    Service class: "InstallationService.java"
    Bean class: "FileBean.java"
    Client class: "FileSaving.java"
    My deploy.wsdd file has the following entry:
    <beanMapping qname="myNS:FileBean"
      xmlns:myNS="http://packageDelarationBackwards"
      languageSpecificType="java:packageDeclaration.FileBean"/>
    ...The method header in my service:
    public FileBean storeAttachments(FileBean file)The important part of my Client:
    QName qnFileBean = new QName("http://packageDelcarationBackwards", "FileBean");
    call = (Call) service.createCall();
    call.setTargetEndpointAddress( new java.net.URL(endpointURL) );
    call.setOperationName(new QName("InstallationService","storeAttachments"));
    call.setReturnType(qnFileBean);
    call.registerTypeMapping(
                            FileBean.class,
                            qnFileBean,
                            new BeanSerializerFactory(FileBean.class, qnFileBean),
                            new BeanDeserializerFactory(FileBean.class, qnFileBean));
    ....After deploying the service and starting the server I can send my "FileBean", work with it and give it back.
    Hope this helped. If you need more information, just let me know.
    Steffi

  • How to get data for current week and previous week using customer exit in Bex.

    Hi everyone,
    I have a scenario in which I need to display data for current week and previous week (based on "sy_datum" the program has to calculate current week and previous week) in Bex using  Customer exit. I have created one variable in Bex Query Designer and I have written code for the variable in CMOD. But it is not working fine, (I know that we can do the same by using offset value in Bex). Can some one guide me how to achieve my requirement using customer exit.
    Thanks in Advance,
    G S Ramanjaneyulu.

    Hi krishna,
    Thanks for your quick reply, can you have a look at my code,
    case i_vnam.
    WHEN 'ZPWK_CWK'.
    ranges : pre_week for sy-datum.
    data : start_date type DATS,
           end_date TYPE dats .
    ************FM TO GET FIRST DATE OF CURRENT WEEK ************************
    CALL FUNCTION 'BWSO_DATE_GET_FIRST_WEEKDAY'
      EXPORTING
        DATE_IN  = sy-datum
      IMPORTING
        DATE_OUT = start_date.   " WEEK FIRST DATE
    end_date = START_DATE + 6.   " WEEK LAST DATE
    END_DATE   = START_DATE - 1.   " PREVIOUS WEEK END DATE
    START_DATE = START_DATE - 7.   " PREVIOUS WEEK START  DATE
    **********PREVIOUS WEEK DATES IN PRE_WEEK******************
    pre_week-SIGN   = 'I'.
    pre_week-option = 'BT'.
    pre_week-LOW    = START_DATE.
    pre_week-HIGH   = END_DATE.
    APPEND  pre_week.
    CLEAR : START_DATE,END_DATE.
    endcase.
    Regards,
    G S Ramanjaneyulu.

  • How to select data from an aggregate in a customer exit for a query?

    Hi,
    I have written a virtual key figure customer exit for a query. Earlier the selection was from the cube, where there was severe performance issue. So I have created an aggregate, activated and have loaded the data.
    Now when I select that data I find that the Key table is different in development and production. How do I resolve this.
    My code is attached below. The table in developemnt is KEY_100027 and in production is KEY_100004. This code is activated and running in BW development server.
    SELECT
        F~KEY_1000041 AS K____035
         F~KEY_1000271 AS K____035
         F~QUANT_B AS K____051
         F~VALUE_LC AS K____052
    INTO (xdoc_date, xval1, xqty1)
    UP TO 1 ROWS
    FROM
    FROM
    */BIC/E100004 AS F JOIN
    /BIC/E100027 AS F JOIN
    /BIC/DZMM_CGRNU AS DU
    ON FKEY_ZMM_CGRNU = DUDIMID
    JOIN /BI0/SUNIT AS S1
    ON  DUSID_0BASE_UOM = S1SID
    JOIN /BI0/SCURRENCY AS S2
    ON DUSID_0LOC_CURRCY = S2SID
    JOIN /BI0/SMATERIAL AS S3
    *ON FKEY_1000042 = S3SID
    ON FKEY_1000272 = S3SID
    JOIN /BI0/SMOVETYPE AS S4
    *ON FKEY_1000043 = S4SID
    ON FKEY_1000273 = S4SID
    JOIN /BI0/SPLANT AS S5
    *ON FKEY_1000044 = S5SID
    ON FKEY_1000274 = S5SID
    JOIN /BIC/D100004P AS DP
    *ON FKEY_100004P = DPDIMID
    ON FKEY_100027P = DPDIMID
    WHERE
    WHERE
    ( ( ( ( F~KEY_1000041 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
    ( ( ( ( F~KEY_1000271 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
             S3~MATERIAL = <l_0material> ) ) AND  ( (
                s2~movetype BETWEEN '101' AND '102' OR
             s4~movetype BETWEEN '921' AND '922' OR
             s4~movetype BETWEEN '105' AND '106' OR
             s4~movetype BETWEEN '701' AND '701' OR
             s4~movetype BETWEEN '632' AND '632' ) ) AND  ( (
             S5~PLANT = <l_0plant> ) ) AND  ( (
             DP~SID_0RECORDTP = 0  ) ) ) )
    GROUP BY
        ORDER BY F~KEY_1000271 DESCENDING.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
        ENDSELECT.
    How do I transport the code and make it work?
    Whats the reason that the two key fields are different.
    I had transported the aggregate from development to production. Activated it and filled the data.
    What is the way out? Please help.
    Regards,
    Annie.

    Hi Sonu,
    The main task is to move the contents of the one internal table to another with some condition.
    First sort and delete the duplicate entries from the First Internal table like below : 
    sort it_tab by material ascending date_modified descending.
    delete adjacent duplicates from it_tab.
    Then move that Internal table contents to another internal table.
    Define another internal table with the same structure as you have first internal table and then
    Second Step :
    it_itab1 = it_itab.
    If you are using seperate Header line and Body then you can do like below :
           it_itab1[] = it_itab[].
    This will fix the issue.
    Please let me know if you need any further explonation.
    Regards,
    Kittu
    Edited by: Kittu on Apr 24, 2009 12:21 PM

  • How to format data for a custom group

    Hi all
    I have a pivot table with Actual and Budget as columns and some accounts in the rows. Since I'm using the account hierarchical column, I created custom groups for the accounts using the Selection steps pane. For example, I created a new group called Profit to combine 3 different Profit accounts and display one Profit line.
    Now I want to format the data for the Profit group. I right-click on the Profit group, choose to edit the group and click on the Format button on the bottom left corner. I add some formatting, e.g. borders. When I now view the pivot table, borders have been applied to the label of the group - so the word Profit is now bordered. However, the values in the Actual and Budget columns do not have a border. Don't know what I'm missing, but I want both the group label and the values to be formatted the same way.
    How can I apply formatting to the data/values for the custom group?

    Yeah tried that already, it formats the entire column whereas I need just the values for the Profit row to be formatted. Seems it is a limitation only when using custom groups?

Maybe you are looking for

  • When I try to open a photoshop image it opens in camera raw

    I store all my images in jpeg.  Been doing my editing elsewhwere, but yesterday tried to use Adobe Bridge.  I opened a jpeg image in camera raw and was unsuccessful in getting what I wanted.  Now, when I try to open one of my jpeg images in Photoshop

  • Card reader problems

    since I upgraded to OSX 10.6.8 my macbook pro's SD card reader has stopped working. any suggestions?

  • Show another page in JSP

    I would like to show another web page from a different server in my JSP on Tomcat 6.0.20. My attempt outputs error message: The requested resource (/show/jsp/http:/mainsite:8500/first/third.cfm) is not available Here is my attempt: <jsp:include page=

  • How to repair the smart cover

    The hinge section of my smart cover has separated from the leather portion. Anyone know of an easy home repair?  Nothing damaged and just separated...

  • SAP Online documentation Guide

    Dears, I am looking for the proceess to implement sap online doc on my solman 7.0 server. Please help me in finding its process or provide link of any imp guide. Shivam