Textflow examples...how to export to db

Hi,
I'm studying the textflow framework examples and see that they use a canvas + sprite child with an editManager and IEditManager rather than the textarea.    My question is, once the user has made all the formatting changes, how can I export the contents to a database to save it?  I know with the textarea component there was the htmlText, but I'm not seeing an option of sorts. Flex will be the only accessor of this info.
Thank you!

The TextConverter class supports converting a TextFlow to and from a string.  For example,
var markup:String =TextConverter.export(textFlow,TextConverter.TEXT_LAYOUT_FORMAT,ConversionType.STRING_TYP E)
and
var  textFlow:TextFlow = TextConverter.importToFlow(markup, TextConverter.TEXT_LAYOUT_FORMAT);
TextLayoutFormat roundtrips with all properties and content.
Richard

Similar Messages

  • How to export rpt file to html in java

    Hello.
    Probably this subject appears already but after many hour searching I still canu2019t found how to export rpt file to html. To by clearly I need stream (but html will by good beginning). I won to display this html in my web application (application in IceFaces).
    I joust wno to simply example how to do this export in java.
    ps.Now I see that I should put this post in "Java Development - Crystal"

    Ok. I founded example how to export rpt file to html (but Iu2019m a little disappointed how this was made) I still need example how to export rpt file with image (or chart) to html.
    Do any one know how to do this?
    [Example how to export rpt to html|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/d09a2df6-3d11-2c10-7fbc-9c2940cdc803]

  • How to export related items

    Hi All,
    I couldn't find any information about exporting related item list, is it possible to export related items?
    For example, how can i export Opportunity Product Revunues of an Opportunity record?

    Hi,
    One option to to create an Analytics Report on the Opportunity Product Revenues subject Area and then export from there.
    This is when you want the Related Item together with the header.
    Hope this helps

  • How to export the data to a  Excel file

    Hi all,
    How to use the  'EXCEL_OLE_STANDARD_DAT'
    to export the data from itab to EXCEL file.
    REPORT  ZT11.
    data : begin of itab occurs 0,
          t1(3)  type c  value 'sag',
          t2(3)  type c value 'ntc',
          end of itab.
          append itab.
          write : itab-t1,itab-t2.
          CALL FUNCTION 'GET_FIELDTAB'
          EXPORTING
            LANGU                     = SY-LANGU
            ONLY                      = ' '
            TABNAME                   = ' '
            WITHTEXT                  = 'X'
          IMPORTING
            HEADER                    =
            RC                        =
            TABLES
              FIELDTAB                  =
          EXCEPTIONS
            INTERNAL_ERROR            = 1
            NO_TEXTS_FOUND            = 2
            TABLE_HAS_NO_FIELDS       = 3
            TABLE_NOT_ACTIV           = 4
            OTHERS                    = 5
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL FUNCTION 'EXCEL_OLE_STANDARD_DAT'
            EXPORTING
              FILE_NAME                       =
            CREATE_PIVOT                    = 0
            DATA_SHEET_NAME                 = ' '
            PIVOT_SHEET_NAME                = ' '
            PASSWORD                        = ' '
            PASSWORD_OPTION                 = 0
          TABLES
            PIVOT_FIELD_TAB                 =
            DATA_TAB                        =
            FIELDNAMES                      =
          EXCEPTIONS
            FILE_NOT_EXIST                  = 1
            FILENAME_EXPECTED               = 2
            COMMUNICATION_ERROR             = 3
            OLE_OBJECT_METHOD_ERROR         = 4
            OLE_OBJECT_PROPERTY_ERROR       = 5
            INVALID_PIVOT_FIELDS            = 6
            DOWNLOAD_PROBLEM                = 7
            OTHERS                          = 8
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.

    Hi, you can even use control technology. There are several example programs how to export data to excel. Please go to transaction SE80. Choose enviroment->examples -> control examples.  Take a look at office integration.
    /Ernesto

  • How to export a continous waveform data from a while loop?

    Hello there,
    I need to add noise signal to my waveform which is read from a binary file. I use noise generate vi (deleted the density part) from NI example as my sub VI, and put it into a while loop in order to get the continous noise signal, but I don't know how to export this data. There's no waveform come out from the noise waveform output tunnel (on the while loop). I used output tunnel, didn't work, tried shift register, didn't work... Can anybody help?
    Also, how to fix the dt problem for the noise generate vi and my original data ( from binarty file)
    Thanks in advance!
    Wendy

    hi
    I think notifier can do the trick (an example is shown in the master-slave template).
    Another possibility can be a FG (or action engine, look for the nugget ActionEngine, it will change your LV-coding life !)
    N

  • How to export book pdf using custom presets for all book files in indesign using javascript

    How to export book pdf using custom presets for all book files in indesign using javascript.

    Hi jackkistens,
    Try the below js code.
    Note: you can change your preset name in below (e.g, Your preset name).
    var myBook = app.activeBook;
    myBook.exportFile(ExportFormat.PDF_TYPE, File (myBook.filePath+"/"+myBook.name.replace(/\.indb/g, ".pdf")), false, "Your preset name", myBook.bookContents, "Book_PDF", false);
    example:
    var myBook = app.activeBook;
    myBook.exportFile(ExportFormat.PDF_TYPE, File (myBook.filePath+"/"+myBook.name.replace(/\.indb/g, ".pdf")), false, "[High Quality Print]", myBook.bookContents, "Book_PDF", false);
    thx,
    csm_phil

  • How to export and Import table of another user from user system using expdp

    Hi All,
    How to export a table 'scott.emp' from system user.
    expdp system/password directory=expdp dumpfile=scott_emp.dmp ???? ?? tables=emp ??????????????????????????
    thank you
    ---------------------------------------------------------- Posting solution here to make needed users not to scroll down ------------------------------------------------------
    Finally I got it right!!!
    Task :- Export table_1 of schema_a from database db1 and Import it to schema_b of database db2 as user other than schema owner
    Solution :-
    expdp system/pwd directory=expdp tables=schema_a.table_1 dumpfile=schema_a.table_1.dmp logfile=expdp_schema_a.table_1.log
    impdp system/pwd directory=expdp tables=schema_a.table_1 dumpfile=schema_a.table_1.dmp logfile=impdp_schema_a.table_1.log remap_schema=schema_a:schema_b remap_tablespace=table_1_tablespace:schema_b_tablespace
    Thank You All
    Edited by: Ven on Mar 9, 2011 7:52 AM

    Just a example
    SQL> $expdp system/sys directory=data_pump_dir dumpfile=tests.dmp tables=scott.emp
    Export: Release 11.2.0.1.0 - Production on Tue Mar 8 10:39:57 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Starting "SYSTEM"."SYS_EXPORT_TABLE_01": system/******** directory=data_pump_dir dumpfile=tests.dmp tables=scott.emp
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 64 KB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "SCOTT"."EMP" 8.570 KB 14 rows
    Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
    C:\APP\MAZAR\ADMIN\ACEME\DPDUMP\TESTS.DMP
    Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 10:40:01
    SQL>

  • How to export images into folders and subfolders

    I've been using Aperture as an orgianizer basically. Now I want to export everything into a sane folder structure, but I haven't been able to figure out a way. Currently I have a setup something like this:
    [Folder 1]
    --Project 1
    --Project 2
    --Project 3
    [Folder 2]
    --Project 4
    --[Folder 3]
    ----Project 5
    ----Project 6
    --Project 7
    And I want export everything exactly like that. For example Project 4 and Folder 3 should both be subfolders of Folder 2.  Does anyone know how to accomplish this?

    You can define an export preset for the subfolder names, but I do not think you can get so deeply nested as your structure is. You may have to do several exports, separately for the different parts of your library.
    An example for an export preset, that names subfolders is here:
    This will name the subfolders based on containing folder and project name.
    Regards
    Léonie

  • How to export sql server 2000 into oracle intergrally?

    1.environment:
    sql server 200 - character set: CHINESE_PRC_CI_AS
    tables :include ntext field (I think it equals clob)
    support english,simple chinese character.
    oracle 9i - character set :NLS_LANG=AMERICAN_AMERICA.US7ASCII
    2. aim
    export sql server objects(main is tables) into oracle intergrally
    3.question:
    3.1 the field which includes chinese data,after exporting,displays "????" code.
    3.2 how to export sql ntext field into oracle?
    thanks a lot

    You need to setup your Oracle Database use character set that support Chinesre Character. For example a unicode character set AL16UTF16.
    More information her
    http://download-west.oracle.com/docs/cd/B19306_01/server.102/b14225/ch6unicode.htm#i1006691
    Also consider use Oracle Migration Workbench to transfer SQL Server Data
    http://www.oracle.com/technology/tech/migration/workbench/files/mig_rel10104.html

  • How to export in table mode if I need to export anotehr user's table

    Please let me know how to export table owned by another user if we dont have DBA priv.
    Can we do it in table mode of export. If yes, how to specify table mode in export?
    Pls give an example also.
    Thanks a lot.

    Tables in other user's schema can only be exported either by being a member of DBA role or EXP_FULL_DATABASE role. Table mode export is initiated by specifying TABLES parameter while running exp export utility.
    An example TABLES parameter could be like
    TABLES=(dept, mydata)
    to export dept and mydata tables.
    Message was edited by:
    thrilller

  • How To EXPORT In Aperture

    Hi,
    I have imported some photos, and edited them using Aperture.
    But I do not know how to "export" the edited photos.
    Like I "move the photo dsc001 behind dsc0008", but it still does not make any change after I export them.
    Thanks.
    Ed

    Like I "move the photo dsc001 behind dsc0008"
    Can you please explain a little more how you tried to export? I really do not understand how you are moving an image behind another, and how that is supposed to export?
    If you have edited an image in Aperture and want to export the edited image to a folder on your hard disk, you use the "Export" command from Aperture's main menu bar:
              File > Export > Version
    Then set the "Export Preset" pop up menu to a suitable size and encoding, for example: "Jpeg - Original Size" and select a folder to export to. You can also specify a subfolder format and a naming preset.
    Or you can use the "Share" menu to email your images or to share them online.
    Regards
    Léonie

  • Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size

    Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size to 7 inches on the long edge. My exported result is 457 dpi and sized at 3200x2134 pixels.. Any ideas on why this is happening and what I can do to correct it?

    The DPI setting in a digital image has no meaning at all. You need to learn how to calculate what you need in your exported image. The only measurement in a digital image that has any meaning is the number of pixels in each direction. It doesn't matter what you set that DPI to (actually it's PPI or pixels per inch). The image will have the same number of pixels regardless of the setting. If you need an image that is 5 x 7" (for example) at 200 PPI then you would want an image that measured:
    5 x 200 = 1000 pixels
    7 x 200 = 1400 pixels
    So you would need an image that is 1000 x 1400 pixels to have a 5 x 7" image at 200 PPI. The reason your exported image had such a high PPI setting is because you specified the number of inches you wanted the image to be. And there were enough pixels in the image that it calculated out to be that high PPI setting.
    I apologize, I don't explain this very well. But you need to learn to do the math to determine how large you really want your exported images to be.

  • How to export and import albums between libraries in AP2

    In AP2, I transfer projects from my travel library to the home master library by exporting each project and then importing it into the master library. All objects created within a project will transfer over.
    However, I'm not sure how to export and then import objects that are "outside" of specific projects, for example, an album or smart album that pulls from multiple projects.
    Can anyone tell me how to transfer these sorts of objects between two libraries?
    Thanks

    Ian,
    So, in other words, you're saying that it's not possible to export directly objects (like smart albums) that reside outside of projects?
    I know, for example, you can "export" anything created inside a folder by dragging and dropping the folder to another library; but you then have to rebuild the library to get the new folder and its contents to be recognized. For my library, this takes too much time to do.

  • How to Export and Import the schemas

    How can i export & import the schema's ? pls give me some example on how to do it.
    Could anyone pls show the commands to retrieve the Tablespace information... i mean what its initial size.. and how much of space has been used...
    ur reply is very much appreciated
    regards
    Muraly

    user11136977 wrote:
    Hi all,
    i am trying to export / import, need to know the commands
    =>how to export and import full schemas from 1 user to another
    =>how to export and import database
    =>how to export the tablespaces
    RegardsNo version, must be 10g then.
    All you asked and much more in the Utilities guide.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/exp_imp.htm#i1023560
    HTH
    Aman....

  • How to export and import template and dimensions mumbers between 2 appset

    hi expert:
          1.How to export and import template and dimensions mumbers between two application set
          2. In Our project Requirement ,
              we moust be  develop our planning in develop evn application set , distribute template and
              dimension mumbers to another  Qas applications set .
         3. how can  i   package our template in dev application set  and Anti-package to Qas application set
             with BPC  system tools?
         4. This  Requirement  is  from  our Security control Dep. we must be change template version or dimension
              mumber with system tools.
         5.thanks for your help!

    Ian,
    So, in other words, you're saying that it's not possible to export directly objects (like smart albums) that reside outside of projects?
    I know, for example, you can "export" anything created inside a folder by dragging and dropping the folder to another library; but you then have to rebuild the library to get the new folder and its contents to be recognized. For my library, this takes too much time to do.

  • How to Export from table view to Excel (not BI query)?

    There is a 'How to' document explaining how to export from an iView using a BI query:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/47fe4fef-0d01-0010-6f87-ed8ecb479123
    However:
    This 'How-To' document is using an example of a BEx query. I am not using a BEx query, therefore I do not have an "Info port". How can I download to Excel from a table view that is not an iView of a BI query? (It is just a internal table coming from a BAPI).

    keenneth,
    i am using the query from SQL server, i am having the same problem of not having info port. so did you find a work around for exporting to excel with filters for non sap queries ?
    any body who had come across this situation , plz guide me.
    thanks in advance
    ravi

Maybe you are looking for

  • Worklist and Inbox functionality in CRM 5.0

    Hello, We would like to know the difference between the Worklist and Inbox functionality in SAP CRM. Is there any change in functionalities of the two, in 4.0 and 5.0. What the different settings for these two functionalities in any system. How do we

  • Disapearing pictures - case sensitive?

    Hi all, I create my website using iweb on my mac mini at home, then upload it from my mac at work to a university hosted webpage. The last time I updated, I noticed that some of my pictures were missing. After a bit of fiddling, I found that the miss

  • Global outline agreements

    Hi, Is it possible to create Global contract independent of company code Then release subsequent contracts with ref.to global with each company code. Has anybody worked on this scenario? Please help I need details with config settings. BR Raju

  • Issues with Rectangle tool

    Hello, I am having an issue. I have created three pie chart grahics with some text and boxes. Everything was created in Muse, except for the three piecharts, which are PNGs. I created a colored box (using the rectangle tool) and placed it behind the

  • Routing midi from an ableton arpeggiator into logic express

    anyone know if possible to recieve the midi from ableton 6 running as rewire slave into logic instrument ? ie use the live arpeggiator rather than logic one ?