Simulator server contains what type of data .

Please can anybody say the simulator server stores what type of data.

The simulator actually does not store data at all, just algorithms for generating sample time series data.  Time series data is what you would retrieve from a historian or OPC data source.
Each time you run a Tag Query and retrieve data from the Simulator you get a freshly generated data set according to the algorithm.  This can be somewhat limiting since you will not have a static "history".
Regards,
Mike

Similar Messages

  • How can I find out what type of data is being sent over one of the phones on my plan?

    I have a few phones under a shared family plan.
    I wanted to know what type of data is being sent over them, wether this is VOIP, Streaming Audio or Video.

    I think the only way you can find out is if you look at the device itself.

  • What type of Data target is used when the safety interval is used?

    Hi ,
    what type of Data target is used when the safety interval is used in generic delta in datasource?DSO or cube  or cube?
    Pls explain me ?
    Thanks,
    Nimai

    It's up to your reporting requirement to go for dso or cube..
    I prefer to having staging with DSO and then further reporting on Cube ..
    It's always easier to manage when you have any changes to the cube .. you need not to extract data from R/3 .. if you have dso you can extract directly to cube
    Another thing is -for any reason some of your records got corrupted so you can have full loads to dso which has the overwrite functionality...  and sends delta records to cube. even in cube you can do selective deletion but we have to very careful to avoid double records in next loads
    Edited by: Srinivas on Jul 29, 2010 8:23 PM

  • What types of data are entered in the order type?...

    Hello SAP-team!
    What types of data are entered in the order type?
    - Settlement profile
    - Sample order
    - Settlement rule
    - Order category
    - Costing sheet for overhead rates
    ps: thanks to SAP-community!
    Eugene

    Hi,
    What types of data are entered in the order type?
    - Settlement profile- True
    - Sample order -True(by model order)
    - Settlement rule-True
    - Order category-True
    - Costing sheet for overhead rates-False
    Regards
    Sudhakar Reddy

  • Creating table without creating domain n dataelement(what type of data is)?

    is it possible to create table without creating domain n dataelement
    for what thoose tables are used for(what type of datait holds?)

    Yes it is possible to create a table without domains and data tables.
    Enter the table name and click on CREATE. On the next screen click on "Predefined types" button. This will gray out the data element column and open the columns data type, length, decimals and text columns for input. You need to specify the data type details in these columns.
    Even though it is possible to create the table in the above fashion I would suggest you create data elements and domains for all the fields.
    -Kiran
    *Please reward useful answers

  • What type of data I must use in the column (SQL)?

    Hi Guys,
    I have a little bit problem with this value (2_1232_123). I don´t know what type of value can be. This value is the result of the concatenation of three integer and "_".
    The code I have is:
    While readerCodeAccount.Read
    Code_Account = readerCodeAccount.Item(0)
    End While
    Try
    IDTextBox.Text = Code_Company & "-" & Code_Account

    varchar(20) 
    But  why storing it in the database if you can generate the concatenation on the fly in the SELECT statement
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • HT201269 What type of data/information can be transferred through iCloud?

    Hi there,
    I just received my new iPhone 5, & I still have my old iPhone 3GS, which have all of my ringtones & songs that i used to listen to, & I would like to have them on my new iPhone 5.
    But the problem is that I no longer use my old PC, which used to have the data that my iPhone 3GS currently carry, such as Ringtones, Music...etc.
    So my concern is, Do Ringtones & Songs can be transferred via iCloud as well from my old iPhone to the new one? & what other type of data/information can be transferred through iCloud?
    & if my Ringtones have been successfully transferred to my new iPhone 5, would the ringtones be assigned to the same people that had their unique ringtones when they call me? Or shall I assign them manually by myself again?
    Waiting for your reply,
    Hosam

    Hi,
    You can Bind the Boolean type of webdynpro to the CheckBox in Adobe Interactive Form.
    Just define the value Attribute in the Context of type Boolean and bind the Checkbox in Aif with this attribute.
    Sample Code:
    if (wdContext.currentContextelement.reason == true)
    ur validations.....
    Regards
    Mustafa

  • What type of data go's to the cloud besides photos.

    I Bought the 20$ package and it filled up in a few days the. I got the 40$ package and it filled up in a few days to what can I dump because I take a lot of photos and I use a lot of apps and I I'm having to dump apps and photos daily to make room for new stuff and its frustrating help?   Also I got $20 pack than a short time later I got the 40$ pack was charge 40$ total  or was i charged  20$ + 40$=60$ ?

    First of all, you are not talking to Apple here - this is a user to user forum.
    About filling up your icloud space, it's hard to believe that you have that much data assuming you are using icloud with just one device (not counting any computer).  And, photos are not stored in icloud, except for backups (and I advise that you also sync them to a computer, as many users have lost their pictures when performing a restore from a backup - if you have that many photos, you should sync them to a computer and turn off photos from backups - that will save you money and space).
    You mention having to dump photos and apps to make more space - I think the space you are talking about is the storage on your device, not on icloud.  That storage is fixed, you cannot add more to your device and buying more space on icloud won't help.
    To tell how much storage is being used on the device and on icloud...
    Go to Settings>General>Usage to see how much "Storage" you have available.  Farther down the list is the available storage on iCloud.
    Also check the following (this assumes you have backups to icloud turned on):
    Go to Settings>iCloud>Storage & Backups>Manage Storage; there, tap the device you need info on and the resulting screen lists Backup Options with which apps store data on iCloud.  You might turn off photos.

  • What type of data type would I use for this situation?

    I have a class which connects to Oracle, but each connection may be to a different database. Each database has it's own user name and password.
    I'd like to pass one key value and then the class would get the user name and password and url from that but not sure how to do it.
    Right now, for the function I pass it the url, username, password which then calls a connection function and passes it the same value. This seems messy keep passing values around.
    Is there some kind of enumerations or something ?

    You might consider putting the URLs, usernames and password into a properties file.
    The properties file might contain:
    all.databases=database1,database2,database3
    database1.user=user1
    database1.password=dingbat
    database1.url=jdbc:oracle:thin:dohdah:base1
    database2.user=someone
    database2.password=toad
    database2.url=jdbc:oracle:thin:xyx:dsds
    Then use ResourceBundle.getBundle() to load the properties and you can just do
    Connection con = DriverManger.getConnection(bundle.getString(key + ".url"),bundle,getString(key + ".user"), bundle.getString(key + ".password");

  • Is there a way to track down what type of content was sent in an iMessage?

    Is there a way to track down what type of content was sent in an iMessage?
    There was some data sent (that I saw from my cell phone provider) at around 7AM one morning while I was in bed.  I am concerned as to what this data was and would like to find out if it is possible to trace what the content was?  My cell provided indicated that they do not know what type of data it was.

    Hello Michael:
    I have not yet seen a
    good approach to using that information (short of
    deleting the account).
    better search some yourself Barry <G>
    if something runs fine in another account - one can isolate the cause to one of the plist files in the main acct Home/Library/Preferences/ or possibly an add-on in Home/Library/Internet Pug-Ins or ...Input Managers for example.
    If there is the same problem in the new acct - you can discount anything with the main acct user library - plists,caches,plugins,input managers, the whole lot.
    A useful tool is Console - found in Applications/Utilities/ keep it running while the 'problem' in question crops up & see if any messages pop up in either the system log or console log. Sometimes these will point straight at the problem area, other times no help at all.

  • What type of HBA needed for 220 R to connect to 3100 JBOD

    Hi
    We have a number of 3100 JBODs that are not currently being used and I am planning to use them to connect to the 220R server. What type of HBA we would need to make that happen.
    Thanks
    Srini

    Sorry, you won't be able to connect an Sun Storage Array 200 to an Intel server. The array uses a Sun sbus HBA. It is commonly known as a SOC adaptor and is only available in sbus, so the array can only be connected to Sun sbus systems, not pci systems.
    hth,
    john

  • What type of qustions i need to ask to client before sap fico prject start

    what type of questions i need to ask to client before sap fico project starts
    helo guys
    i am new here as well i am fresher in sap FICO but my pm put me in project
    soon i am going to my clients place
    what type of questions i need to ask , before my sap fico project start
    what type of data i need to prepare AS IS -TO BE & SAP FI/CO BLUEPRINT START.
    GUYS PULL ME
    PLS
    REGARDS
    SUBU

    Hi Subu
    Initially you need to prepare topics wise questions and in the process the data collection should be from 2 sources i.e. Primary - collecting information directly by interacting with the client and the other one is Secondary - from the documents that you collect from the client.
    After formal introduction during the Kick off meeting never directly jump down to interact with the client you need to patiently observe the day to day business process of the client - department wise for the first few days. Do document all the observations that are made by you, this will help you to analyse the gap between the legacy system and std SAP Process.
    The first and the foremost thing is that we need to see on what flatform all the business process relating to Accounting is maintained i.e the software used to store the legacy data.\
    Now I will mention some of the important points that can be used a check list during your interaction with the client.
    1.We are the consultants who need to freeze the Enterprise Structure first and later on the other module consultants will add their respective enterprise elements to the enterprise structure freezed by us. Therefore this process will by itself will take not less than 1 to 2 months. This process is the Typical phase where a lot of interaction/understanding/experience will come into limelight. So be attentive and observe the process throughly, once the Enterprise Structure is freezed and configured we cannot withdraw from the system.
    2. Codification of the Enterprise Elements play a vital role do follow some naming convention. Here coding can be in 3 forms i.e. pure numeric, alfanumeric or pure alphabets.
    3. Identify the chart of accounts that is maintained.
    4. Grouping process of the GL Account According tos Schedule VI of Companies Act 1956
    5. Customer & Vendor Grouping - payment terms maintained - Down payment if applicable - how the memos maintained.
    6.. Collect all the documents relating to Procurement Process right from indent preparation to billing and followed by payment. This is very useful.
    7. CIN plays a very important role regarding this we will have a seperate session in the days to come.
    This is just a beginning and hope this will help you and as the time comes up do feel free to put up questions and I will clarify for the same.
    Regards
    Murali Kanth Natti

  • What type of Container Persistence should I choose �?

    Hi,
    I would like to know... what type of persistence should I choose to manage the entities bean.
    At first I choose CMP because it seems to be much easy to understood and maintain, and it seems to work fine with small queries...
    Every record of a table of muy RDBMS is represented by CMP Bean... �? is it true �?
    What happens if i will like to extract a big table with thousands and thousands records �? does this, affects to the performance of my server �? how can i control...�?
    Can I make complex queries with the CMP beans or should i use BMP beans in this case �?
    I do not know if the ejb-ql language will result helpful to perform complex queries...
    Can you help me �?
    Thank you....

    Hi,
    I would like to know... what type of persistence
    should I choose to manage the entities bean.CMP or BMP - those are the two choices.
    >
    At first I choose CMP because it seems to be much easy
    to understood and maintain, and it seems to work fine
    with small queries...
    Every record of a table of muy RDBMS is represented
    by CMP Bean... �? is it true �?True.
    >
    What happens if i will like to extract a big table
    with thousands and thousands records �? does this,
    affects to the performance of my server �? how can i
    control...�?Yes, indeed, it does affect performance.
    One way to handle that is to use a session bean to access all the data at once and then send back a collection of objects. There's a Core J2EE pattern called session facade that can help:
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/SessionFacade.html

  • What's the data type when defining a KF to show an integer with a sign?

    We want show some days difference which should be an integer with either a positive or negative sign.  I used to design a KF with type of Number with "DEC - Counter or amount field with comma and sign" as the Data Type, but find it shows 25.000 if the day difference is 25 days.  We want to show it as 25 other than 25.000.  Then what type would we pick when defining the KF?  Use Integer as the type?  But we also want it to show the sign symbol.
    The type field is dimmed as long as the InfoObj. is activated that I have to remove this field.  I've delete all the data loaded in ODS, PSA and etc., and I have successfully remove this KF from InfoSource, but when I try to remove it from the ODS, always get the msg "Can't move/delete locked InfoObjects" even if the InfoObject is not locked (I've tried SM12 to delete all locked entries and also tried relog on, but not helpful).  If someone gives any idea, I would be very appreciated on how to remove this KF from ODS and also let me what type should I use when creating a new KF which only shows integer with a sign!
    Thanks

    hey Siggi,
    Now after I right click the ODS and select "Delete Data", the KF eventually gets removed from the ODS without any error, then I continue to delete this InfoObj. 
    However, when I run the InfoPackage to load data to the ODS, get a msg (see below in between two dashed lines):
    Syntax error in GP_ERR_RSDRO_UPDATE, row 1,210 (-> long text)
    Message no. RG102
    Diagnosis
    The data object "I_S_OLDDATA" does not have a component called "/BIC/Z_field".
    Where Z_field is the InfoObject we deleted.  With this error, that's even worse since that stops any data coming in!  How to get rid of this error that we can continue to load data?
    Thanks

  • Send for shared review - What type of Web server folder works?

    Hello all,
    Can someone please explain to me what type of web server folder works with "Send for shared review"?
    I have created a folder on my GoDaddy server account with full permissions... http://webservername.com/Adobe_Test but after clicking Next, I see the error, "The Shared Folder Location is not valid. Click OK and check the Status field for more information."
    1) It isn't valid? What are the valid server requirements?
    2) "...check the Status field for more information."? What Status field?
    It would have been great if I could use a Google Docs folder but that failed as well.
    What must I do to unlock this neat feature?
    Thank you

    Thanks CtDave.
    I ended up building a WebDAV server and I am now encountering a bunch of new issues. Such as:
    From my workstation, working with Acrobat.
    - After making comments. I click the top button "Publish Comments" - this works well - no errors. But when I attempt to exit the PDF, Acrobat wants to save the document. Attempting to Save results in a read-only error. After trying this, Acrobat gets into a loop where there doesn't appear to be a way to exit Acrobat (other than by Save As new file name):
    Even worse... I understood that reviewers only required the Adobe Reader in order to comment. This doesn't seem to be the case.
    When I emailed a test document for review, this is the message that pops up:
    All that is available is the original content (none of the review comments are available).
    Any ideas?

Maybe you are looking for

  • Update of the System 10.6.8

    From mysterious reason no longer works update in my system (10.6.8). Periodically it says that  update can not be done, and I have made a diagnosis. This of course turns out well, but update is not possible. Otherwise, the Internet works as it should

  • Group wise maximum query

    hi, I have a table with following values AUTOID RNO NAME 1 1 ACCOUNTS 2 1 IT 3 1 SALES 4 2 MARKETING 5 2 SALES 6 2 IT 7 3 MAINTANANCE 8 3 SUPPORT 9 3 ACCOUNTS i need to get the max row of each RNo. AUTOID RNO NAME 3 1 SALES 6 2 IT 9 3 ACCOUNTS Regard

  • Using cuepoints in video to advance main timeline

    How would I play an intro video and then when the video ends, advance to frame 2?  I know to use cuepoints, but my code seems to be more than broken.  Here is what I have: stop(); var listenerObject:Object = new Object(); listenerObject.cuePoint = fu

  • Keynote quits unexpectedly

    Help! I can open a new file in Keynote 2.0 but can't seem to open an existing file without Keynote quitting unexpectedly. The message displayed in console.log is: Keynote(236,0xa000ef98) malloc: * set a breakpoint in szone_error to debug Keynote(236,

  • Rewire, 1010lt and my sanity...

    (Reason4.0) okay...Ive got rewire setup in Audition and it all interacts properly. Using an m-audio delta 1010LT. Sound is there, all seems proper. I just cannot figure how to record it. I record into Reason and the block is there but how the hell do