Question on Time Variant

Hello All
How is the time variants gets the data, Do we need to LOAD data from Source system, like how we do for Master Data Load ?
Thanks, looks silly questions, but good to understand ....
BI

Hi,
In rsa1 of BW goto the source systems. Right click on your source system and select Transfer Global Settings. This will do your job. You need not to LOAD any data from Source system.
Hope this Helps,
Thanks,
Amit

Similar Messages

  • Issues with using SV Time-Varying Loudness.vi

    Hi,
      I am rather new to Labview and am having issues getting my Time-Varying Loudness calcuations to come out correctly. Attached is my current VI and a .csv file of a set of my data (calibrated in Pa. Sample rate = 50kHz for 5 seconds). When i run the VI it does not output what I would expect. Here are my questions:
    Time-Varying Loudness:
    1) What are there so many signals? There are hundreds of lines, but I only expected one.
    2) Why is my x-axis not a range of 1 to 24 like Barks should be?
    1/3 Octave Band Analsysis:
    1) Why does it look incorrect? Their shouldnt be a linear increase as a function of frequency...
    The data is of a part being squeezed and making a squeek. So it is a transient noise that happens around 2 seconds. Additionaly, how would I go about making a waterfall (Time(s),Frequency(Hz),Amplidtude(sones)) of this signal? Is there any easy way? or do I have to make all three signals and add them to make one plot?
    Thank you for your help! Let me know if you need more infromation,
    -Troy
    p.s. i included a picture of the results as well.
    Solved!
    Go to Solution.
    Attachments:
    TimeVaryingIssue.zip ‏668 KB

    Hi Troy,
    1) The SV Specific Loudness VI "chunks" data into 2 ms blocks, and then returns these as individual Specific Loudness vs. Sone plots.  The colored lines you are seeing on your graph are representative of the 2,500 2 ms time periods within your five-second acquisition.  Each of these plots contains 241 points, however they should occur in ten sample "steps", one for each sone.  The digital filter's buffer takes a bit to fill and kick in properly, however, so you may want to give your first few rows( 0-.02 seconds or so) a closer look before using them- you may see a number of unexpected zeroes around the lowest sones.
    2) Since you are using a chart, the x-axis will increment with every subsequent run (the previous data is retained.)  If you only want to display the most recent data, I would recommend switching to a graph, which can also be found in the graph controls palette.  Also, see above (#1) for why the x-axis is longer than 24 points.
    3) Remember that dB is a unitless measure, and can only be used in reference to another value. A typical reference for sound is 20 uPa, however you will likely need to equalize your input data and determine/set a dB reference.  You may want to take a look at SVL Scale voltage to EU.vi (EU stands for equalized units) and SVL Set dB reference.vi.  In your case, I believe the Octave plot is showing your dB relative to a default value of 1.  The values should be accurate with respect to one another, but you will need to provide a reference value to calibrate the scale.
    4) I think that this VI serves as a good example of how to go about creating a waterfall plot:
    Waterfall Display for Octave (DAQmx)
    http://zone.ni.com/devzone/cda/epd/p/id/5562
    You will need to break up your waveform into chunks, much like the specific loudness VI, but the basic concept is roughly the same (take waveform chunk, take octave measurement of chunk, append octave measurement output cluster to array of clusters, repeat for remainder of waveform, display)
    Phew!  That was quite a bit of information.  Let me know if that makes sense, and don't be intimidated by the detail and/or unfamiliar functions or methods  - you're definitely on the right track, or at the very least asking the right questions.
    Tom L.

  • Frequency analysis of time varying data

    I want to add a routine for frequency analysis of before and after strong impulse on a body.
    Some vibration sensors will be attached to the body.
    In this case, I was told I need to use a time-varying method like wavelet or any other to analysis instead of simple FFT.
    I installed wavelet package but I have no idea how to use it.
    (Wavelet method seems to be popular in reduction of noise.)
    Only what I want to know is the frequency elements in dynamics.
    Can you recommend any tools (functions) for my purpose?
    Are there some LabVIEW examples?
    I am using LV2009 and some extra toolkits (developer suites).
    labmaster.

    labmaster wrote:
    I want to ask some curious things.
    1. I have to analysis the spectrum of frequency in dynamic signal.
    In case of presenting dB, how to know the frequencies?
    2. In high sampling rate (1MHz), the low frequency element can't be analyzed. (too small window for 60Hz in my last example).
    If so, generally, do I have to down sampling to ~1kHz for the 1MHz in wavelet or short time FT?
    Take a look on how the Express VI you are using are made. The Express VI you are using is located here
    C:\Program files\National Instruments\LabVIEW 2010\vi.lib\addons\Time Frequency Analysis\_express\_TimeFrequencySpectrogramConfig.llb
    The VI you need to open is the configure.vi. Copy this VI to your user.lib folder before doing any work on it.
    To answer your first question. The dB setting will change the Y axis scaling, and not the X axis scaling. Which is the frequncy axis 
    The step between each frequncy bin will be( number of Frequency bins/(Fsample/2)). So using 1 MHz may reduce resolution. Perhaps 10 KHz will be bettter for you to use. 
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • Mapping "Time-variant"dimension

    Hi,
    how can I map in AWM a dimension which has a level "time-variant"? Maybe I must add to the dimension a level which refers to key of Time Dimension?
    Thanks
    Giancarlo

    Giancarlo,
    Thanks for the tables and mappings. It always helps to have specific details. The next question is how do you want to report this data? I assume you want to know the total revenue by city and date. E.g.
    select sum(revenue), c.city, t.month_id
    from
    customer_dim_table c, time_dim_table t, fact_table f
    where <natural joins>
    group by c.city, t.month_id
    I assume you also want to know the result by customer name (which I will assume for the sake of argument is a unique identifier). E.g.
    select sum(revenue), c.customer_name, t.month_id
    from
    customer_dim_table c, time_dim_table t, fact_table f
    where <natural joins>
    group by c.customer_name, t.month_id
    Finally, I expect you want the same thing where the group by doesn't include month. e.g.
    select sum(revenue), c.customer_name
    from
    customer_dim_table c, time_dim_table t, fact_table f
    where <natural joins>
    group by c.customer_name
    Is this accurate? The answer will help determine a proper hierarchy structure for the customer dimension.
    On another issue, are you only interested in the simple aggregates or do you also want calculated measures (such as year to date)? The answer to this will let me know if you could use rewrite on a cube materialized view, which simplifies matters a little.
    One more question. How are you using the 'validity' column? Specifically, what happens if customer 'Patrick Jackson' remains in NY for another month. Will you add a third row (with validity = 3) or are you assuming that the system is smart enough to know that if there is no validity = 3 row, then it should look for validity = 2 (etc)?

  • MPC Time Varying Output Constraints

    Does anyone have experience with implementing time-varying output constraints for an MPC controller (from the Control Design Module)?
    So far, from playing around with the example VIs it seems that I'm stuck with fixed values.
    Cheers.

    Hi Signorec, 
    Can I ask what example VIs you've been looking at? The ones that come with the Control Design Module in LabVIEW example finder?
    When you say time-varying output constraints do you mean be able to change the MPC configuration settings during run time? From the examples I can find it seems that you set it all up and leave it to run. Where as you would like to be able to tweak the settings at particular times? Is that correct? 
    Assuming that it is the implmentation of the MPC controllor occurs within a Control & Simulation Loop. To change any constraints on the MPC you would need to stop that loop, change the settings and re-initalise the process before running that Control & Simulation Loop again. You can implement this with a state machine architecture or a while loop and some logic. I would recommend the state machine personally. 
    Please let me know if I have misinterprted the question or if there's something unclear. If you want me to take a look at an example you're working from I can show you the basic architecture you would need if you like? 
    Best wishes, 
    Charlotte N.
    Applications Engineer, NI UK & Ireland

  • Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    Hello, I have two questions on time capsule  I can only have it on my external hd files and free up my internal memory to my mac  I can use an external hard drive, in my case a lacie rugged as shared memory for my two computers

    I have a mackbook pro and an iMac if I buy a time capsule 2tb airport, I can use it with time machine and what would be the best way to use it.
    There is no particular setup required for TM.. both computers will create their own backup sparsebundle which is like a virtual disk.. Pondini explains the whole thing if you read the reference I gave you.
    and how to use time capsule airport whit other external hd to use my old lacie airport with the new time capsule
    Up to you.. you can plug the external drive into the TC and enjoy really slow file transfers or you can plug it into your computer and use it as external drive.. which is faster than the TC.. and TM can include it in the backup.
    Again everything is explained in the reference.. you are not reading it.

  • How can I prevent deleted mail from ending up in "All Mail"     and "Archives"?  To my horror, I've emptied these boxes and lost all my mail from all my boxes  (and why do I need to enter this question three times?"

    How can I prevent deleted mail from ending up in "All Mail" and "Archives"? 
    To my horror, I emptied these boxes and lost all my mail from all my boxes .
    All mail also disappeared from my iPad, I suppose because they are "synched"
    (Also, no offense, but why do I need to enter this question multiple times?)
    Thanks for any thoughts.

    I'm having a similar but slightly different problem. My company just migrated to Gmail, and it's saving mail drafts every 30 seconds into my Trash folder.
    I unchecked the "Show in IMAP" preference in the Gmail settings, but my Drafts folder completely disappeared. I went back and checked it and the folder reappeared (with my drafts still in there).
    I like the idea if starting an email on my laptop and having the option of finishing it on my iPhone or iPad, so only saving Drafts locally would not be ideal.

  • I'm using a new computer and to open one website I have to answer the security questions each time saying that the site doesn't recognize this computer.

    Each time I try to open my "ubt" website, I get a message that says the site does not recognize this computer so I have to answer the security questions each time. I get the message "You are attempting to log in to your account from a computer that we do not recognize..." All other websites work just fine. The Mac store person could not figure it out. This site works on Safari, but I prefer Firefox.

    The ipod is not a backup device. The music sync is one way - computer to ipod.  The only exception is itunes purchases:  Without syncing:File>transfer Purchases
    Copy everything from your backup copy of your  old computer to your new one.

  • Why do I have to answer security questions every time I download an app

    Not sure why I have to answer my security questions every time I try to download an app? How do I change that setting?

    Contact iTunes
    Apple - Support - iTunes - Contact Us
    To reset the them:
    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'. Please be patient waiting for the return
              phone call. It will come in time depending on how heavily the servers are being hit.
         2.  Call Apple Support in your country: Customer Service: Contacting Apple for support or
              Apple ID- Contacting Apple for help with Apple ID account security. Ask to speak to
              Account Security.
         3.  Rescue email address and how to reset Apple ID security questions.
    How to Manage your Apple ID: Manage My Apple ID

  • HT5622 Will I have to awnser my security questions every time I get an app? And if so how do I get rid of them?

    Will I have to awnser my security questions every time I get an app? And if so how do I get rid of them?

    If you forgot them:
    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
    Go to https://expresslane.apple.com ; click 'See all products and services' at the
    bottom of the page. In the next page click 'More Products and Services, then
    'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
    ID security questions' and click 'Continue'. Please be patient waiting for the return
    phone call. It will come in time depending on how heavily the servers are being hit.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this

    I have installed Adobe Reader 11.0.07 for Mac OS 10.9.3. Have asked this question numerous time without results. The problems I am having are: I cannot scroll using the side slider on downloaded PDF files, nor can I fill in fillable files. Also, and this is extremely irritating, I cannot re-initialize the same file or initialize and another PDF file after I have initialized the first file. If you cannot help please let me know if should use an earlier  version of Reader or find anther company that has the appropriate software.

    Perhaps you missed that you started a discussion at I have OS 10.9.2 and have downloaded latest version of Reader 11. I can no longer fill in form or scroll using the side bar. and you did not respond to the last post there.

  • Time varying velocity input for servo motor

    I 'm running a PXI-8145RT CPU with a 7344 motion controller.I want to load a time varying velocity profile for my servo motor.How can I do this? The "load velocity" tile does not have an input for such a profile,but only for a maximum velocity that will be reached after a certain time.

    Are you using the Motion Assistant or a programming language like LabVIEW? If you are using the motion assistant, you can do a contoured move with a Position-Velocity-Time Profile. I have never done this, but it sounds to be what you are looking for. This assumes that you have a controller that can do contoured moves.
    Hope that this helps,
    Bob
    Bob Young - Test Engineer - Lapsed Certified LabVIEW Developer
    DISTek Integration, Inc. - NI Alliance Member
    mailto:[email protected]

  • Import times vary-explain this to me please

    Why is it that when I’m importing a CD to iTunes (this is with either a new CD or an old CD) the import times vary so drastically?

    2. It displays the objects on the stage. (It displays them one by one in the order in which they
    were dragged to the stage from the Library when you designed the game in the FLA.)what does he mean by saying display them on the stage?? because i cant see them without addchild method and he said the swf file display them??!!!!!!!!
    are you using pure AS3 or are you using the design tool in CS4/5
    when using the design tool in CS4/5 you can have objects in the library and drag them to the stage. this will automatically at the objects to the stage without having to call addChild()
    if you are using pure AS3 you don't have access to this and you have to explicity add all you objects using addChild
    Here’s the issue: if the class’s constructor method includes a reference to the stage or an object that
    is on the stage that hasn’t yet been displayed, you’ll get an error message saying this: here i cant understand any single word!!
    Error #1009: Cannot access a property or method of a null object reference.
    you would only need to add a reference to the stage for non DisplayObjects (e.g. generally things that aren't sprites or MovieClips)
    All DisplayObjects have access to the stage via the stage property. The stage property for an object is always null until you call addChild, not when they are constructed as you mention.
    if you are trying to use the stageWidth and stageHeight property you shouldn't do this in the constructor of the object instead you would need to add an Event.ADDED_TO_STAGE listener and then do any configuration based ont he stage within this listener.
    hope that clears it up a little

  • Some question regarding time evaluation

    Hello,
    I have two questions regarding time evaluation:
    1. Is it possible (if yes, how) to still include a employee in time evaluation even if this employee is inactive (status P0000-STAT2 = 0). We need this in order to calculate weeks of not working (this has to be calculated). I know that for payroll this is possible wih a setting in infotype 0003.
    2. Is it possible (and how) to read data back from payroll into time. For example in payroll you export something to ZL table, can you then pick this up in time evaluation schema, as there is also ZL table. Or is there another way to do this?
    Thanks for you answers,
    Liesbeth

    hi Schrage
    Why you want to evaluate the time for inactive person.
    If you want you can do.
    Process :
    First of all you have to group your employees. and sub groups.( for inactive emp)
    Assign the employee sub group grouping for PCR in Basic Pay ( IMG ).
    Then come to Time Evaluation Schema. Put the Day grouping nn nn nn nn in the Parameters. and run the time evaluation. You will get the output in DZL table.
    For the above process you need to configure the T510S table.
    Yes you can read the payroll into time.
    the same concept will run in both of the modules.
    the output should appear in the ZL table only.
    Here the concept is.....Some companies, they will not use the payroll wage types. only they will use the time wage types.. these wage types has to be configure in the T510S. and we have to do the wage type copying from the part of time management only if they are not using the payroll. So either in Payroll or in Time management the evaluation of time willbe the same.
    Cheers
    Vijai

  • How to use the Time Variants PYTD and Prior Year Annual?

    Hi,
    We have a time dimension which has the generic columns i.e Month, Year.
    We need to calculate the Time variants for the Facts Say Sales. I was able to calculate the Prior Month, Current YTD
    I have some doubts regarding the other variants:
    1. Prior Year : Does this include the Prior Year Annual?
    2. Prior YTD: How to calculate it?
    Somehow I am getting the same results for PYTD and Prior Year.
    The formula used are :
    Prior Year:
    AGO(Sales, Year, 1)
    PYTD:
    AGO(Sales CYTD, Year, 1)
    Has anybody encountered similar issue?

    I assume the Sales measure is a monthly measure. The Prior year calculation as I described will give you the sales for the same month in the previous year when selecting month in your report. When selecting year it will add up all months of the prior year until now and you will indeed see the Prior year YTD.
    If you want to see the total sales for the previous year you have to use the same calculation as 'Prior year' and map it to the year level of your time dimension. This will work as a 'partition by year'.

Maybe you are looking for

  • WRT54G....Can I set DHCP to use the router for DNS instead of external DNS?

    Hi folks. I cant' get my router to have DHCP tell my PCs that the router should be the DNS server instead of the external servers it is using. I am using Comcast Cable internet. It sets the external DNS servers for every PC that connects to it and I

  • Samples template for oracle 10g reports

    Hi, I need a oracle 10g reports sample templates were we need to make modifications and use it. if any body has the sample templates can share with me or where can i get the sample templates. Please advice.

  • Prompt for Begining and End Date - HELP

    I'm very new to this application so I hope I'm asking the correct question. I have 1 field in the database that's used for dates. format is DD-MON-YYYY. How do I create a form that I can use to search between 2 dates. Example: Display all records bet

  • Is it possible to charge I-pad on 24-36 volt?

    I was wondering if my i-pad could be charged using for instance a cigarette lighter on a circuit of 24-36 volts? Thanks in advance, Jaap de Visser

  • Photo stream adding multiple empty Projects

    In Aperture 3.3.2, with Mountain Lion I am using iCloud an the Photo Stream. Aperture has started adding empty Projects representing prior months from the Photo Stream. I can delete the Projects and when Aperture restarts, the Projects return. Any th