Newbie question saving data to a VO

I have a datagrid with a list of files. I'd like the user to be able to select one or more files and add text/data in a form. On a click event I'd like to save the form data and to a VO for the selected file. Eventually I'll pass the an array of AssetVOs to a BlazeDS service.
Here's my VO:
package com.example.vo
          public class AssetVO
                    public var fileName:           String;
                    public var fileSize:           String;
                    public var assetType:           String;
                    public var assetTags:          Array;
                    public var assetName:   String;
                    public var assetDescription: String;
                    public var readyForReview: Boolean;
                    public function AssetVO()
What's the simplest way to accomplish this task?
Thanks

I have a datagrid with a list of files. I'd like the user to be able to select one or more files and add text/data in a form. On a click event I'd like to save the form data and to a VO for the selected file. Eventually I'll pass the an array of AssetVOs to a BlazeDS service.
Here's my VO:
package com.example.vo
          public class AssetVO
                    public var fileName:           String;
                    public var fileSize:           String;
                    public var assetType:           String;
                    public var assetTags:          Array;
                    public var assetName:   String;
                    public var assetDescription: String;
                    public var readyForReview: Boolean;
                    public function AssetVO()
What's the simplest way to accomplish this task?
Thanks

Similar Messages

  • Newbie question: Saving User Data on iPad

    Hi
    I am working on an App for iPad in Flash CS5.5.
    In the app the user will be writing poetry and saving text on the iPad locally.
    I need them to be able to decide which poem they load back into the app.
    It seems to me this will qualify ofr saving to the /Documents folder.
    I have looked at shared objetcs and dont think it will do that job.
    Can I use FileReference on an iPad?
    Will the user be able to browse the different files he/she has saved?
    Can someone point me to some example code for saving to and loading from /Documents?
    Best
    Tommy Banana

    Here is some basic code that will work.
    import flash.filesystem.*;
    import flash.events.Event;
    var f:File;
    var fs:FileStream;
    var myDATAstring:String;
    function CheckSettings():void{
                f = File.applicationStorageDirectory.resolvePath("Storage_File_Name.txt");
                if(f.exists){
                    getDATA();
                }else {   
                 trace("Nothing stored yet");
    function getDATA():void{           
              fs=new FileStream();
              fs.addEventListener(Event.COMPLETE, onFileOpened);
              fs.openAsync(f, FileMode.READ);
    function onFileOpened(e:Event):void{
                myDATAstring=fs.readUTFBytes(fs.bytesAvailable) as String;
               fs.close();  
    //****** Use this to save the high score *******       
    function SaveDATA(s:String):void{       
                f = File.applicationStorageDirectory.resolvePath("Storage_File_Name.txt");
               fs=new FileStream();
              fs.openAsync(f, FileMode.WRITE);
              fs.writeUTFBytes(s);
             fs.close();

  • Newbie question: Send data to printer from ABAP program

    Hello, I am a newbie.
    I do not use  SAPScript nor SmartForms.
    But I need to send a printer command stream from my ABAP to printer.
    Is it possible?
    How can this be possible? Please give me some guideline.
    I will reward you points. Promise.
    Thanks

    hi,
    u can send ur program details to printer using submit to sap-spool statement.
    SUBMIT TO SAP-SPOOL
    Basic form
    SUBMIT rep ... TO SAP-SPOOL.
    Extras:
    1.... DESTINATION dest         ... COPIES cop
            ... LIST NAME name
            ... LIST DATASET dsn
            ... COVER TEXT text
            ... LIST AUTHORITY auth
            ... IMMEDIATELY flag
            ... KEEP IN SPOOL flag
            ... NEW LIST IDENTIFICATION flag
            ... DATASET EXPIRATION days
            ... LINE-COUNT lin
            ... LINE-SIZE  col
            ... LAYOUT layout
            ... SAP COVER PAGE mode
            ... COVER PAGE flag
            ... RECEIVER rec
            ... DEPARTMENT dep
            ... ARCHIVE MODE armode
            ... ARCHIVE PARAMETERS arparams
            ... WITHOUT SPOOL DYNPRO
    2. ... SPOOL PARAMETERS params
             ... ARCHIVE PARAMETERS arparams
             ... WITHOUT SPOOL DYNPRO
    3. ... Further parameters (for passing variants)
            are described in the documentation for SUBMIT
    The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Missing print parameters with SUBMIT.
    Effect
    Calls the report rep with list output to the SAP spool database.
    Additions
    ... DESTINATION dest(output device)
    ... COPIES cop(number of copies)
    ... LIST NAME name(name of list)
    ... LIST DATASET dsn(name of spool dataset)
    ... COVER TEXT text(title of spool request)
    ... LIST AUTHORITY auth(authorization for display)
    ... IMMEDIATELY flag(print immediately ?)
    ... KEEP IN SPOOL flag(keep list after print ?)
    ... NEW LIST IDENTIFICATION flag(new spool request ?)
    ... DATASET EXPIRATION days(number of days list
    retained)
    ... LINE-COUNT lin ( lin lines per page)
    ... LINE-SIZE  col(col columns per line)
    ... LAYOUT layout(print format)
    ... SAP COVER PAGE mode(SAP cover sheet ?)
    ... COVER PAGE flag(selection cover sheet ?)
    ... RECEIVER rec(SAP user name of
    recipient)
    ... DEPARTMENT dep(name of department)
    ... ARCHIVE MODE armode(archiving mode)
    ... ARCHIVE PARAMETERS arparams(structure with archiving
    parameters)
    ... WITHOUT SPOOL DYNPRO(skip print control screen)
    With the parameters IMMEDIATELY, KEEP IN SPOOL, NEW LIST IDENTIFICATION and COVER TEXT, flag must be a literal or character field with the length 1. If flag is blank, the parameter is switched off, but any other character switches the parameter on. You can also omit any of the sub-options of PRINT ON. mode with SAP COVER PAGE can accept the values ' ', 'X' and 'D'. These values have the following meaning:
    ' ' : Do not output cover sheet
    'X' : Output cover sheet
    'D' : Cover sheet output according to printer setting
    armode with ARCHIVE MODE can accept the values '1', '2' and '3'. These values have the following meaning:
    '1' : Print only
    '2' : Archive only
    '3' : Print and archive
    arparams with ARCHIVE PARAMETERS must have the same structure as ARC_PARAMS. This parameter should only be processed with the function module GET_PRINT_PARAMETERS.
    Effect
    Output is to the SAP spool database with the specified parameters. If you omit one of the parameters, the system uses a default value. Before output to the spool, you normally see a screen where you can enter and/or modify the spool parameters. However, you can suppress this screen with the following statement:
    ... TO SAP-SPOOL WITHOUT SPOOL DYNPRO
    You could use this option if all the spool parameters have already been set!
    Note
    When specifying the LINE-SIZE, you should not give any value > 132 because most printers cannot print wider lists.
    Addition 2
    ... SPOOL PARAMETERS params(structure with print
    parameters)
    ... ARCHIVE PARAMETERS arparams(Structure with archive
    parameters)
    ... WITHOUT SPOOL DYNPRO(skip print parameters
    screen)
    Effect
    Output is to the SAP spool database with the specified parameters. The print parameters are passed by the field string params which must have the structure of PRI_PARAMS. The field string can be filled and modified with the function module GET_PRINT_PARAMETERS. The specification arparams with ARCHIVE PARAMETERS must have the structure of ARC_PARAMS. This parameter should only be processed with the function module GET_PRINT_PARAMETERS. Before output to the spool, you normally see a screen where you can enter and/or modify the spool parameters. However, you can suppress this screen with the following statement:
    ... WITHOUT SPOOL DYNPRO
    Example
    Without archiving
    DATA: PARAMS LIKE PRI_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION           = 'LT50'
                COPIES                = COUNT
                LIST_NAME             = 'TEST'
                LIST_TEXT             = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY           = 'X'
                RELEASE               = 'X'
                NEW_LIST_ID           = 'X'
                EXPIRATION            = DAYS
                LINE_SIZE             = 79
                LINE_COUNT            = 23
                LAYOUT                = 'X_PAPER'
                SAP_COVER_PAGE        = 'X'
                COVER_PAGE            = 'X'
                RECEIVER              = 'SAP*'
                DEPARTMENT            = 'System'
                NO_DIALOG             = ' '
      IMPORTING OUT_PARAMETERS        = PARAMS
                VALID                 = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.
    Example
    With archiving
    DATA: PARAMS   LIKE PRI_PARAMS,
          ARPARAMS LIKE ARC_PARAMS,
          DAYS(1)  TYPE N VALUE 2,
          COUNT(3) TYPE N VALUE 1,
          VALID    TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING DESTINATION            = 'LT50'
                COPIES                 = COUNT
                LIST_NAME              = 'TEST'
                LIST_TEXT              = 'SUBMIT ... TO SAP-SPOOL'
                IMMEDIATELY            = 'X'
                RELEASE                = 'X'
                NEW_LIST_ID            = 'X'
                EXPIRATION             = DAYS
                LINE_SIZE              = 79
                LINE_COUNT             = 23
                LAYOUT                 = 'X_PAPER'
                SAP_COVER_PAGE         = 'X'
                COVER_PAGE             = 'X'
                RECEIVER               = 'SAP*'
                DEPARTMENT             = 'System'
                SAP_OBJECT             = 'RS'
                AR_OBJECT              = 'TEST'
                ARCHIVE_ID             = 'XX'
                ARCHIVE_INFO           = 'III'
                ARCHIVE_TEXT           = 'Description'
                NO_DIALOG              = ' '
      IMPORTING OUT_PARAMETERS         = PARAMS
                OUT_ARCHIVE_PARAMETERS = ARPARAMS
                VALID                  = VALID.
    IF VALID <> SPACE.
      SUBMIT RSTEST00 TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        ARCHIVE PARAMETERS ARPARAMS
        WITHOUT SPOOL DYNPRO.
    ENDIF.

  • Newbie Question - Live Data

    Hi All,
    I am very new to the world of BI but have been programming with MS SQL Server and Crystal Reports for the past 15 years.  I'm looking into SQL BI to replace our Crystal Reports suite and provide additional reporting functionality such
    as drilldown capability and allowing users to edit/build their own reports.  Some reports will require drilldown functionality and some do not, also, some reports require live data and others do not.  A live data report might
    include employee time punches, or an open orders report run at the end of the day.
    To build drilldown reports, I understand that I must create data cubes which require Dimension and Fact tables that are generally populated by a data warehousing process using SSIS.  In doing that, I no longer have live
    data and the warehouse tables must be updated at some point.
    I believe that if the report does not require drill-down functionality, you don't have to create a cube and can therefore connect directly to the live data.
    What are the generally accepted practices for these scenarios?  Should I build reports directly against a live system in SQL reports?   If not, how would I go about updating the warehouse tables as needed?
    Am I correct about the usage of the Dimension and Fact tables?  Do they have to be based on a data warehouse?  Could a cube pull data from a live table?
    I really want to implement BI correctly, so this information would be of great help to me.
    Thanks

    There is a Myth that Business Intelligence (which includes Analysis Services) replaces current reporting in systems. This is not the case even though people are trying to do it or being “told” to do it in their current environment.
    My suggestion is let’s separate analysis of data from real-time reporting.  Analysis might include show a trend of Employee Turnover in the last 5 years to see if there is a growing problem. Real-Time reporting might be can get a list of new employees
    in the last 3 months that have not finished all required training.
    The real-time data can be updated by the employee today, and then re-reported the same day. The analysis of data would be run once a month lagging the end month of the report to 2 months prior to current month because
    data is not completed.
    Now to answer your questions:
    1. What are the generally accepted practices for these scenarios?  Should I build reports directly
    against a live system in SQL reports?   If not, how would I go about updating the warehouse tables as needed?
    --> If you want to build the data warehouse to do the analysis type (Business Intelligence) reporting,
    you will want to do it according to Best Practices in the community and Dimensions and Facts (Kimball Methodology) is a standard that holds up very well with Analysis Service cubes, even though there are other options - Data Vault or Inmon methods. Reports
    in this scenario should not be against live data. SSIS is the Microsoft tool for ETL (Extract, Transform and Load) into a Data Warehouse.
    You should only build those types of reports against real-time data as the example above with current employees.
    2. Am
    I correct about the usage of the Dimension and Fact tables?  Do they have to be based on a data warehouse?  Could a cube pull data from a live table?
    -->Yes, you are correct, Yes it is best in a data warehouse and yes a cube can pull live data. BUT,
    to pull live data, the cube would have to be what is called ROLAP connected and direct queries would run against Live Data and can cause headaches (blocking, long running) in the transaction system. A company I worked for in the past had a replicated database
    for real-time reporting that was 2-15 seconds behind the transaction system and it worked well. But, not with a cube running on top of it. Dimensions and Facts are best for a cube.
    Hope this helps.
    http://www.kimballgroup.com/
    http://www.inmon.com/
    https://www.youtube.com/user/DataVaultAcademy
    Thomas
    TheSmilingDBA Thomas LeBlanc MCITP 2008 DBA

  • Newbie question: saving jpeg files in indesign document

    hi there,
    i'm rather new to indesign and i can't get this thing to work:
    whenever i place a jpeg image (or for that matter, any other image format) into an indesign document and later move
    the jpeg file to a different location on my harddrive and then reopen the indesign file, the image is all pixeled. it seems like the image
    isn't saved inside the .indesign file, but is more of a referal to the file on my hard disk.
    is it possible to embed external files (like jpeg) into the actual indesign document and save them within this document?
    i'd be gracious for any help.

    Grant's answers are correct. You SHOULD use linked images and you should update them on the Links panel.
    There are specialized reasons it might be necessary to embed an image, but in general it's not a good idea: (1) It makes the files unnecessarily large, (2) if you make changes in the image, it can be updated in the InDesign file.

  • Newbie Question: Creating Data Sources

    Our current Hyperion setup consists of the Hyperion 9.3 client that users access via a terminal server. We are trying to get the web version of Hyperion running.
    I installed some base components of the Oracle Enterprise Performance Management System (11.1.1.2.0.940). It all starts fine and I can login with admin, but I do not see how to create data sources or load .bqy query files. If I create a new interactive reporting document, it makes me choose a Data Source from the virtual directory in which I do not have one. if I try to import one, or import a .bqy file, I browse to the file, select it, then always get a "File path is wrong." error. I also found how to create Data Sources using the CMC, but I do not see how to reference these. What am I doing wrong?.

    HI,
    What version of Hyperion planning are you using version 9.3 or epm11.1?
    Because they have different ways of creating datasources.
    In version 9.3 you can create datsource in the configuration utility.
    While in version 11 you need to create planning application first before creating datasource either by classince planning application or epm.
    Thanks,
    Hanson

  • Newbie question, saving multitrack

    ok,
    i just downloaded the free trail, cause i wanted to try out the product.
    now i just made a multitrack mix from different audio files.
    all i want to do is save my mix to my hdd in one piece, not 100 little wav files.
    i tried all i could think of but nuthin works.
    can someone please tell me how to save it to 1 file?
    thanks alot.
    greetz,
    rajah

    Welcome to ASIO. Great in that it will enable all the features of Creative Labs soundcards. Crappy in that it will now only deal with one audio program at at time. Want to record some audio off the net? Sorry, no. That's why I keep 1.5 around, just for that very purpose.
    Floyd is right with the "release ASIO" uncheck. That works great for any other non-audio program. Trying to have 2 audio programs going simultaneously however shows just how much of a monkey's paw ASIO is.

  • Newbie question about saving files

    Hi all,
    A newbie question here, and maybe it is a dumb question, but I can't get my head around this and sofar found no answer in the forums here.
    When I save a file on my macbook, I can only save it to "top" folders.
    What I mean is I try to save a file for instance to documents/worddocs/lyrics just to say something, then I have to save the file first to documents, and the move it to the lyrics folder via finder or move it to :worddocs folder and then move it again to the lyrics folder. Hope you still get my drift here
    Is there a way to just save it to the subfolders without going through all this moving around?
    Thanks in advance for any advice
    Peter

    When you click File>Save As, you will see the Save As window pop up. At the top, you will see a box entitled Save As, which has a space for your to enter the file name. To the right of this box is an arrow pointing down. Click it. The full file hierarchy will be seen. Then you can save directly to the file you want.
    Hope this helps.
    Don

  • Question about iphone apps and saved data.

    So let's say I'm playing a game from the app store on my iphone and I beat it. Now I want to buy a new game but I don't have enough space to keep them both on my phone. So I delete the old one from my phone knowing it will still be on my mac. Then I play the new game and beat it and I start wanting to play that old game again. So I put the old one back on my phone and I lost everything I did before. Why? Is there a way I can take an app off my iphone without losing all the saved data?

    Here's how it works (from page 179 of the iPhone iOS4 User Guide).  You can delete apps you install from the App Store. If you delete an app, data associated with the app is no longer available to iPhone, unless you reinstall the app and restore its data from a backup.
    You can reinstall an app and restore its data as long as you backed up iPhone with iTunes on your computer. (If you try to delete an app that hasn’t been backed up to your computer, an alert appears.) To retrieve the app data, you must restore iPhone from a backup containing the data.
    To restore from a backup, see page 257 of the iPhone iOS4 User Guide

  • RV042G Newbie Questions

    I have the new Cisco RV042G router, and I have just a few "newbie questions" about it as I get started using it:
    The firmware on board is v4.2.1.02. Since this is a brand new router, is that the latest firmware?
    Under Time>DST Dates, what do I need to configure in there? I'm in the US, Central Time.
    I want to use Back to My Mac from iCloud (formerly MobileMe). Under the iCloud preferances pane on my Mac, it's saying: "Back to My Mac may be slow because NAT Port Mapping (NAT-PMP) or Universal Plug and Play (UPnP) is turned off on your router. Turn on NAT-PMP or UPnP." What should I enable on my router in order for Back to My Mac to better function?
    I'm using a VOIP phone on the network (only 1 device with a couple phones). Are there any QoS settings I should tweak for better performance of my VOIP phone? I did change the port the VOIP phone is connected to to High (instead of Normal) under Port Settings. Will this help boost performance?
    I also want to setup a VLAN on a port for guests to access the Internet, but not have any access to my personal network. Here's the steps I've done so far. Is this sufficient or is there anything else I need to do?
    I went to Setup>Network, enabled Multiple Subnets.
    I added 192.168.254.1/255.255.255.0 as a subnet.
    I went to Port Management>Port Setup, set the port I wanted to use (Port 4) to VLAN2.
    I went to Firewall>Access Rules, added two rules:
    Deny All Traffic from 192.168.254.0 to 192.168.1.0.
    Deny All Traffic from 192.168.1.0 to 192.168.1.0.
    Thanks everyone for your help!

    Easy.  just goto the DHCP field and fill in the Static DHCP fields.
    Assigning static IP addresses by adding devices from a list
    Click Show unknown MAC addresses. The IP & MAC binding list appears. If the web browser displays a message about the pop-up window, allow the blocked content.
    The devices are listed by the IP address and the MAC address. (Typically the MAC address appears on a label on the bottom panel or back panel of a device.) If needed, you can clickRefresh to update the data.To select a device, first enter a descriptive Name. Then check the Enable box. Alternatively, select all devices in the list by clicking the check box at the top of the Enable column.
    Click OK to add the devices to the Static IP list, or click Close to close the pop-up window without adding the selected devices. After you click OK, a message appears. The message includes important information. Read it before clicking OK. Keep the browser open and wait until the selected MAC addresses appear in the Static IP list.
    Modify or remove list entries, as needed:
    To modify the settings: Click a device in the list. The information appears in the text fields. Make the changes, and then click Update. If you do not need to make changes, you can click Add New to de-select the entry and clear the text fields.
    To delete an entry from the list: Click the entry that you want to delete, and then clickDelete. To select a block of entries, click the first entry, hold down the Shift key, and then click the final entry in the block. To select individual entries, press the Ctrl key while clicking each entry. To de-select an entry, press the Ctrl key while clicking the entry.
    Assigning static IP addresses by entering devices manuallyIn the Static IP Address section, add or edit entries as needed. Remember that the settings are not saved until you click the Save button.
    To add a new device to the list: Enter the following information, and then click Add to list.
    Static IP Address: Enter the static IP address. You can enter 0.0.0.0 if you want the router to assign a static IP address to the device.
    MAC Address: Enter the MAC address of the device. (Typically the MAC address appears on a label on the bottom panel or the back panel of a device.) Enter the address without punctuation.
    Name: Enter a descriptive name for the device.
    Enable: Check this box to assign the static IP address to this device.
    To add another new entry: Enter the information, and then click Add to list.
    To modify the settings: Click a device in the list. The information appears in the text fields. Make the changes, and then click Update. If you do not need to make changes, you can clickAdd New to de-select the entry and clear the text fields.
    To delete an entry from the list: Click the entry that you want to delete, and then click Delete. To select a block of entries, click the first entry, hold down the Shift key, and then click the final entry in the block. To select individual entries, press the Ctrl key while clicking each entry. To de-select an entry, press the Ctrl key while clicking the entry.
    Using the Static IP List to Block Devices
    You can use the Static IP list to control access to your network. You can block access by devices that are not on the list or do not have the correct IP address.
    Add devices to the Static IP list as described in Static IP Addresses.
    Enable or disable the following features:
    Block MAC address on the list with wrong IP address: Check this box to prevent a computer from accessing your network if its IP address has been changed. For example, if you previously assigned a static IP address of 192.168.1.100 and someone configures the device to use 192.168.149, the device will not be allowed to connect to your network. This feature discourages users from changing their device IP addresses without your permission. Uncheck the box to allow access regardless of the current IP address assignment.
    Block MAC address not on the list: Check this box to block access from devices that are not included in the Static IP list. This feature prevents unknown devices from accessing your network. Uncheck the box to allow access by any connected device that is configured with an IP address in the correct range.
    Hope that helps.
    Regards Simon
    http://www.linksysinfo.org

  • Premiere Elements 12 crash, lost all saved data on a new project.

    I was working on a short project that had many video and audio clips. About 3 hours into the project Premier Elements 12 crashed. Now It will not open the saved data. It simply tells me "An unknown error occurred while opening the project"  Am I SOL? Is this what I should expect as a regular from Adobe? More importantly, is there a method to recover the project? I am a new user to Adobe Elements and video editing in general.
    Thanks,
    Jordan M-

    I've attempted to update the software. When I open the program up and go to the Help tab and Check for Updates, it tells me that it is already up to date. I've noticed through screen shots that other users' icons say 12.1 Mine does not and I still have performance issues while trying to render or upload.
    My computer runs high end games at max settings, so as far as I can tell, my computer works fine. I would like to understand these updates further before I continue to analyse the issues I am having.
    Also,
    I ran a  Program Compatibility Test and it tells me:
    Issues found:
    Program Compatibility:
    Incompatible Application (referring to Premiere Elements 12)
    Publisher Details:
    Make older programs run in this version of Windows,
    Package Version 1.5
    Publisher Windows.
    Make older programs run in this version of Windows,
    Package Version 1.0
    Publisher Microsoft Corp."
    Detection Details:
    "Windows Version 6.1
    Architecture x86"
    I don't want to flood you with to many questions. My priority is to just update the darn thing to see if that is my issue. I thought I would mention the test above as additional info that might be helpful.
    Thank you for your help thus far, It's been of great use.
    Jordan-

  • Newb Question for burning DVD/CDs

    I have an external DVD writer on my iMac.
    I got the thing last month and an completely new to Apple (sorta)
    Now how do I make a data CD and DVD?
    On Winblows XP all I need to do is select the files, right click and click on SEND FILES TO CD for making data CDs.
    However for DVD I need 3rd party software.
    Will iDVD do the trick?
    Thanks for the looking at this simple newb question.
    GeekyBoy

    Now how do I make a data CD and
    DVD?Drag the files to the icon of the
    blank CD/DVD that appears in the
    Finder.However for DVD I need 3rd party
    software.You might want to try Patc
    hBurn.Will iDVD do the
    trick?No, iDVD is only for making video
    DVDs and it requires a G4 processor.
    Thanks for the tip Duane.
    I was just reading abotu burning CD on another site. It mentions about what you said, drag the files to the CD.
    However I am reading in my profiler that burning is NOT supported by OS X on this CD/DVD writer.
    Will Patchburn or any other software overcome this?
    Thanks

  • InDesign or Acrobat (newbie question)

    Hi,
    I tried posting this in the LiveCycle Designer forum, but I think it's a bit too much of a newbie question:
    Once in a blue moon when I'm at work, someone will ask me if I can add text fields to a PDF form so that they can easily type onto it and print it out. I've always done that directly in Acrobat (on the few occasions that it's been requested from me). But I was curious about Adobe LiveCycle since it came with CS3, so I played around with it a couple of days ago. I added the text fields in LiveCycle this time, and it seems to have worked fine. Which is the better program for this kind of task? I'm not 100% clear on the *main* purposes of either program or how they compare. If anyone wanted to give me a clue about it, I'd appreciate it!
    Thanks,
    Phyllis

    > I thought perhaps you could add that capability
    You can (I said I was oversimplifying). However there are contractual
    limits - to oversimplify (!) 500 users per form.
    >Which would be preferable -- receiving form data from LiveCycle or Acrobat?
    It depends what you want to do.
    >
    >I wish I knew what the difference was between these two programs. Is it purely a matter of emphasis on one task or another?
    They come to the same problem in different ways. For a simple task
    they may seem pretty much the same. Some differences:
    * A form made in Acrobat is a PDF with form fields stuck on top; it
    remains a normal PDF in every other way. Forms are almost always made
    by preparing an existing PDF, then adding form fields.
    * A form made in Designer is barely a PDF. It's a wrapper round an XML
    file. You can no longer edit it in Acrobat, ever, even for the most
    simple things. PDF files are imported and converted (sometimes with
    loss of quality or features), or forms are made from scratch.
    * Acrobat form fields are fixed size.
    * Designer form layout can be dynamic.
    Aandi Inston

  • Crystal report reverts back to saved data after drill down

    Hi,
        I've created a crystal report and published it to BOE. Whenever I open the report and refresh it, it fetches recent data without any problem. But when I drill down in the report, it shows the saved data instead of showing the recent data in the drill down. If I come back to original report from that drill down again it reverts back to saved data. Again I've to refresh the report to view the recent data.
    Any idea how can I fix this?
    Regards,
    Sanjay

    Hi Sanjay,
    Please do post this question in the BusinessObjects Enterprise thread BI Platform
    The peoplt there would be the best people to answer your query.
    Hope this helps.
    Regards,
    Jay.

  • 2 newbies question about diskgroups

    Hi gurus,
    I have 2 newbies question:
    Im working in a RAC Database (11.2.0.3) on Redhat 5.3 with some disk groups. One of this groups have 6 disks on it with different space (134, 236G, 236G, 185G, 185G and 185G).
    My questions are:
    1) What would be happend when the lower space disk will be full?
    2) At this moment the diskgroups are at 45% so i was thinking to change their spaces to have all with the same space (around 193G each), it would create any problem? i should restart database or can do it with database up?
    Thanks

    if a disk is filled, what would happen? could i resize the disks with same size without stop database and without affecting the data stored within each disc?
    By the word 'disk' I assume you mean LUN . When a LUN in a disk group is filled, ASM will use the remaining LUNs to store the data. You should always use LUNs of uniform size to avoid uneven I/O .
    could i resize the disks with same size without stop database and without affecting the data stored within each disc
    You can get the Unix/Storage team to allocate more LUNs for this Server. Once these LUNs are added , check if the following pre-reqs are met for the LUN which is yet to be added to the disk group
    v$asm_disk.HEADER_STATUS = 'CANDIDATE'
    v$asm_disk.PATH = /dev/rdsk/youLUNname
    v$asm_disk.NAME will be NULL
    Now you can add the LUNs using
    alter diskgroup DATA_DG01 add disk '/dev/rdsk/youLUNname' rebalance power 4 ; wait for rebalance to finish (check status in V$ASM_OPERATION)
    Yes. The above can be done without stopping the DB. It won't affect the stored data either.

Maybe you are looking for

  • Error in SXMB_MONI in SNC

    I am getting an error in SXMB_MONI in SNC. This particular PO has 2 lines exactly on the same product with different delivery dates & different quantities. The first one goes through but the second doesn't. The error says 'A severe error (ODM: Update

  • Crystal Reports dynamic parameter does not work in InfoView

    Hello, We have developed Crystal Reports in CR2008 on top of SAP infoset and we have one of our selection parameter as dynamic parameter. It works fine in the CR Dev tool but when i upload the report in the InfoView, report does not show any value in

  • Check for mounted DFS share with exists in apple script

    OS: OSX Mountain lion. Can any one advise how to detect if a DFS share is mounted or not? I have been using the following code: set volumeLabel to "R$" tell application "Finder"   exists disk volumeLabel end tell Which works fine with a normal SMB sh

  • Applescript Editor doesn't allow me to save anything...help!!!

    I just can't understand this after doing a thorough through many forums. But when I open Applescript and try to save a script in the "Save As" window, it rejects any filename I give it. I copied and pasted an Apple script for toggling my sound output

  • Question regarding File Content Conversion

    Dear SAP experts, I need you expert advise regarding this. I have here my sample structure, CSV ---> this is the message type of the message    '-- ROOT --> this is the root node            '-- FieldA --> has a value of "Filename"            '-- Fiel