Awesome "data generator"

This is pretty cool tool to generate volume of any kind of
data (it even
include
SQL options)
http://www.generatedata.com
Thierry
Articles and Tutorials:
http://www.TJKDesign.com/go/?0
Keep your markup *clean* with these DW extensions and
scripts:
http://www.divahtml.com/products/scripts_dreamweaver_extensions.php

I'm having this same problem when binding a variable of type File (see code below). I'm getting a warning saying "Data binding will not be able to detect assignments to" that variable but when running everything works fine...
I was hoping the problem would be that the File class did not implement the IEventDispatcher, but, according to the documentation here, it does.
Any ideia on how I can get rid of this warning?
Here's my code:
[Bindable]
private var currentPicture:File;
<mx:Image     id="photo"  source="{currentPicture.url}" />

Similar Messages

  • Can not access data generator in HANA SHINE Content

    Hi Expert,
      After import Delivey Unit of SHINE Content, then i was told by the Guide Book that i could use data generator to generate demo data by access URL
    http://<myServer>:<XS Port>/sap/hana/democontent/epm/admin/ui/WebContent/admin.html
    STEP1:I used SYSTEM on the HANA login page
    STEP2:Error 404 refelect
    Does anyone else have encountered this problem?
    Message was edited by: Tom Flanagan

    You might check the repository browser, but I don't believe that URL is correct.  There is no ui or WebContent folder in the path in my system.  Its just /sap/hana/democontent/epm/admin/
    But I suggest checking the folder structure in the Repositories view in your own system to make sure. My system is a new version and could be different than what you are seeing. However this would explain why you are getting the 404. 
    Also make sure that SYSTEM has the necessary SHINE admin role added.

  • I want to use Get Panel Image in Labview 5.0.1 and need details on how to save the BMP data generated

    I am trying to generate an application that saves a copy of its front panel on completion. This is easy to do using an invoke node with Print VI to HTML but this does not work in an .exe format. I have seen elsewhere that you have to use the Get Panel Image method, but no details are supplied in LV 5.0.1 documentation of how to use the "image" data (1-D Unsigned Byte array) that is generated. I want to save this in a format that can then be read as a bitmap in any standard graphics package. Any assistance?

    Hi,
    If you'd upgrade to LV5.1 or 6 you could use the 'standard' vi's for this.
    You need a VI called "Write BMP File.vi". It's not shipped with LV5.0.1.
    This vi only uses 3 subVI's, so perhaps someone at NI can convert it and
    send it to you (sorry, I won't, it's copywrited).
    If you cannot get this VI anywhere, you'll need to figure out the BMP file
    format yourself. It's not too complicated, but still could take some days.
    Perhaps someone figured it out before LV5.1 was released.
    Regards,
    Wiebe.
    "RDK" wrote in message
    news:[email protected]..
    > I want to use Get Panel Image in Labview 5.0.1 and need details on how
    > to save the BMP data generated
    >
    > I am trying to generate an application that saves a copy
    of its front
    > panel on completion. This is easy to do using an invoke node with
    > Print VI to HTML but this does not work in an .exe format. I have seen
    > elsewhere that you have to use the Get Panel Image method, but no
    > details are supplied in LV 5.0.1 documentation of how to use the
    > "image" data (1-D Unsigned Byte array) that is generated. I want to
    > save this in a format that can then be read as a bitmap in any
    > standard graphics package. Any assistance?

  • Calculations in Xcelsius using data generated by a Web Service Connection

    Hi,
    I have set up a web service connection to pull in 4 columns of data: 1. CATEGORY  2. SUBCATEGORY 3. PRODUCT TYPE   4.#OFCALLS.  There will be anywhere from 1 to 500 rows of data depending on day of week and time of day.  The web service sorts the list by #OFCALLS descending. The OUTPUT VALUES of the web service connection are mapped to cells A19:D518.
    Formulas in the spreadsheet take the Top 10 from the list and populate it to cells  A4:D13.  A formula in cell D15 sums the #OFCALLS for the entire web service connection output (A19:D518).
    The data in A4:D15 is mapped to a spreadsheet table on my canvas.   When the report generates, the data from the TOP 10 of the web service connection populates properly, but the cell that should reflect the TOTAL#OFCALLS (D15) shows zero.
    Is it not possible to do additional calculations in the spreadsheet based on data generated by the web service connection?  A major difference between using an XML Map and a Web Service Connection is the XML Map actually populates the spreadsheet with the new data when it is refreshed.  The Web Service connection data never actually appears in the spreadsheet itself, even though it updates to the appropriate vessel on the canvas.   This makes me think that no additional calculations can be done in the spreadsheet based on the web service connection data.
    Can anyone tell me if that is correct?  If so, then the web service connection would also have to pull in the TOTAL#OFCALLS along with the other data.   This would also seem to greatly limit what you could do with data generated by a web service connection, so I am hoping I am wrong and just don't understand how to do this.
    Can anyone clarify this for me?  If I failed to give any pertinent info let me know what it is, and I will update my post.
    Thanks!

    I have seen similar behavior as well.  I have live data coming into Xcelsius from a data connection. 
    A supported Excel formula
    =IF(ISBLANK(J2),I2,VALUE(TODAY()-J2))
    is then applied to one of the columns to create an additional derived column.
    Taking a snapshot of the data shows that the derived column is being populated, however the controls I've tried hooking up to the derived column (charts and labels) are always empty.
    Information on whether this is supported would be appreciated.
    Thank you,
    David

  • Data generator for NVARCHAR2 doesn't work

    HI,
    I try to use data generator to populate the table Employees, it gives good values in the test run, but when I press "Create data as SQL" and run the query it gives an error:
    SQL> insert into SYSTEM.EMPLOYEES (EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL, PHONE_NUMBER, HIRE_DATE, SALARY, JOB_ID, MANAGER_ID)
    2 values (232, Robbie, Reilly, '[email protected]', 0586862301, to_date('09-08-2009', 'dd-mm-yyyy'), 4262, 421, 135);
    ORA-00984: column not allowed here
    The error is because I have to put quotes round the nvarchar2 values, and the data generator doesn't do it.
    Does anyone knows how to make the data generator put quotes around my nvarchar2 columns?
    BTW, I thought ther would be much information about this error in the net, because everybody who uses data generator for nvarchar values should get it, but I didn't find anything..
    glad if someone can help me,
    thanks!
    Edited by: 998093 on 08:39 04/04/2013

    Strings must be enclosed in single quotes:
    insert into SYSTEM.EMPLOYEES (EMPLOYEE_ID, FIRST_NAME, LAST_NAME, EMAIL, PHONE_NUMBER, HIRE_DATE, SALARY, JOB_ID, MANAGER_ID)
    values (232, <font color=red size=2>'</font>Robbie<font color=red size=2>'</font>, <font color=red size=2>'</font>Reilly<font color=red size=2>'</font>, '[email protected]', 0586862301, to_date('09-08-2009', 'dd-mm-yyyy'), 4262, 421, 135);
    And we have no idea what generator you use. I suggest contacting vendor.
    SY.
    Edited by: Solomon Yakobson on Apr 4, 2013 11:48 AM

  • Does Aperture read and display XMP data generated by LR?

    Does anyone know if Aperture reads and displays XMP data generated by LR? I am not interested particularly in keywords.

    Thanks for the quick reply, William.
    I would suggest to David Schloss and AUPN that this would be a feature worth supporting. Although, hopefully both new software and improving skills in using them make me less concerned about preserving a static conversion or interpretation of an image, I think that whatever software we use to read/exchange keywords and other IPTC data is a constant.

  • Can't find data-generator

    Anybody read the document called "Key Data Warehousing Features in Oracle9i"? It mentioned a data-generator for the schema is available for download, however, i couldn't find it at all. Is there anybody knows where it is?

    I am also looking for the same. Did u get it. Please help.

  • Is there a driver for HP80000 Data Generator System?

    I need a Legacy or contributed driver for the HP80000 Data Generator System, especially the 1 GHz Data Module (i.e HPE2903A).
    thanks a lot for your help.

    I made one, Not an IVI or Visa, a Basic driver.Still intrested?
    Chip
    Attachments:
    hp80000.fp ‏58 KB
    hp80000.c ‏53 KB
    hp80000.h ‏5 KB

  • Sony/Tektronic Data Generator DG2020, driver to be upgraded from v3.1 to use in v6.0

    I only have labview V6.0 and I have an tektronic instrument, it is a Data Generator, model DG2020. Its driver is for Labview V3.1 and encountered such problem V3.1 and V6.0 are not compatible. I asked support from Tektronix and they advise me that from V3.1, it is recommended to upgrade to V4.0 then after to V6.0, not from V3.1 straight to V6.0. However, I do not have V4.0. Can u pls help me how to resolve this? Thanks.

    Hi Dora,
    First check with your local NI Field rep. They may be willing to help you out, free of charge.
    Otherwise,locate an NI Select Integrator or an Alliance Member in your area (NI web site will help with this).
    If they have been around long enough, they should be able to round-up some of their old disks and set up a system to do what you need. Warning, this will not be easy or quick, so you may have to pay for the time, BUT, it will generally be cheaper than trying to re-write it yourself from scratch.
    Ben Rayner
    Data Science Automation (a Select Integrator)
    (I am currently running LV 5.1.1, BV 2.1.1, and LV 6.0.2 but not earlier)
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • XML Data Generator BUG???

    Hi,
    I've been experimenting with the XML Data Generator (a Data Web Bean) in Jdev 3.2.2, and no matter what attributes I choose to display from my View Object, the bean displays ALL attributes.
    Is this a BUG or Operator Error on my part?
    Lachlan
    [email protected]

    oops, I spoke too broadly -- the Flex example does work --
    but it fails if you have any qualifiers in the tag, so for example,
    this works:
    <name>
    <first>{firstName.text}</first>
    <last>{lastName.text}</last>
    </name>
    and this works:
    <name first="{firstName.text}" last ="{lastName.text}"
    />
    but this does NOT work:
    <name>
    <first type="person">{firstName.text}</first>
    <last type="person">{lastName.text}</last>
    </name>
    so it IS probably a bug in the parser that handles the XML
    tags, upon seeing one qualifying field within the tag, it assumes
    that all of the data will be presented in the same way, and there
    will be no bound data between the tag.

  • BPC Data Generator Dimension List Issue

    Hi BPC NW Experts,
    Could you, please, help to resolve the following issue?
    During selection of an application set in the BPC Data Generator Tool we do not get the list of the application set dimensions.
    We are running on BPC NW 7.5 SP07.
    The local machine has Windows 7 Professionsl, Microsoft Office 2010, Microsoft .Net Framework 4 Client Profile installations.
    Thank you very much.
    Mila

    Hi Mila,
    i have the same issue. You can work around this problem by using the browse option:
    Then you can select the dimension xml-file definitions manually
    C:\Users\<user>\My Documents\PC_NW\<system>\Admin\<appset>\AdminAPP\DimCache\
    Regards!

  • B2B editor-- data generator thows error for hipaa 004010A 837 healthclaim

    Hi
    Getting error while create a new document and generating the data using hipaa 004010A 837 health care claim from the std hipaa database in b2b editor
    first we create a new hipaa 04010a 837 form and close the editor
    second we use the data generator to generate the dat file for the hipaa 04010a 837 it does not throw any error
    third we analyse the data for the 837 db standard or with the ecs file it throws lot of error
    is there any specific steps to be followed to generate dat file without any errors
    thanks
    raj

    HIPAA guidelines contain thousands of additional edits. Data generator will not be able to generate you a sample data file which will be valid against all the edits. The permutations required to automatically generate such data are just not possible. So you need to either get sample data as a starting point and then modify it using data dictionary via data generator update feature or create a data dictionary with all the necessary specified values.

  • Data generator operator

    hi frnds...
    can any one plz tell the process for Data Generator operator step by step.

    This is used just for SQLLoader mappings;
    http://docs.oracle.com/cd/E11882_01/owb.112/e10935/src_tgt_opers.htm#i1175749
    Cheers
    David

  • CWB Employee generation producing "no data generated for transaction"

    Hi,
    When I try to generate employee statement in compensation workbench I get the following error .
    No data generated for Transaction :
    Has anyone encounter this error ?
    Another thing I notice is that in the same screen there is a option to switch responsibility. Does this mean that there is some sort of security profile that is causing this ?
    rgd
    YYTAY

    Currently I am using a customize responsibility. Though it was the cause and used the seeded "Compensation workbench Administrator" switch manager and try generating the employee statement. The same error still appear.
    rgd
    Yy.tay

  • How to change the date generate absence quota(Time Evaluation)

    Hi all experts,
    Currently system use Time Evaluation, and generate absece quota in last day of month.
    So any way to change that system will use differ day to generate absence quota?
    Example use day 28 of each month will generate absence quota? Have any enhacement or configuration?
    Thank you,

    Tatsuya,
    there 2 better solutions for this, one is Generate Period Parameters and according accordingly the month end date you follow and use the same period parameter in V_T559L table to your Quota.
    and other Solutions is Write a PCR like Below.
    ABCD     (PCR Name)
       varstcrumo
            Varstreday
                 28
                   hrs=1
                   adddbTIME (TIME - Daily Time type - Create it in V_t555a table)
    Save it and go to TM04 Schema, and put this PCR with Function ACTIO and make sure to insert this before QUOTA Function and Before CUMBT. and save it, and dont forget to put TIME Time to your Base entitlement.
    you can run Time Evaluation to test it...let me know how it worked.

Maybe you are looking for

  • Dynamic seleciton in report variant FBL1N

    Hi, Problem Description I am trying use dyanamic selection in report variant of FBL1N but its not working. My working I am using dyanamic date variant. In the selection screen of FBL1N, we have posting date in dynamic selections. While creating a var

  • Rebuilding partitions indexes takes a lot of time

    We have 5 partitions in one table with the following sizes: P1 ---- 160MB P2 ---- 160MB P3 -- 1280MB P4 -- 5400MB P5 - 24640MB Nobody is connected to the instance, no apps is running on this server, the server is dedicated to the database and only fo

  • To create a room for every user or not?

    My application requires that guest/participants do not need to login. They only enter names. Also the meetings are not scheduled. It's on walk in basis where host waits for the guests. In my case, I will have hundreds and eventually thousands of host

  • Problem with audio jack iPad 4

    Yo, i'm from México, last year (March 4 2013) My mom gave me an iPad 4 has a birthday present from march to august anything was cool. But on august i was on the school and i just unplugged my headphones, then 1 hour later i plugged them and only one

  • Can we customize the metadata dictionary?

    Hi All, I have configured the metadata dictionary. But when we select the a particular presentation column it shows the mapping till the physical column. Can we add a business description too. For example, a column that is precalculated in ETL, can w