Keeping .xdp docs to DB and convert them run-time to .pdfs? Is it possible?

We need to keep the LiveCycle documents in .xdp format and to visualize them run time at client work space with Acrobat Reader.
Is it enough to use only LiveCycle Designer Enterprise Suite for this goal or we have to use a combination of Adobe LiveCycle Designerand "Adobe InDesign CS3 SDK", "PDF Library SDK or any other component model? Or may be you can offer any other solution?

Converting xdp to pdf at run time requires the Adobe LiveCycle ES Forms service.

Similar Messages

  • Creating pdfs from different file types (.doc,.xls etc) and merging them into a single pdf with book

    Hi,
    I need to create a pdf from 2 different file formats, for example .doc and .xls file and merge the contents of the two files into a single pdf.Also the final pdf created must contain bookmarks and links. Thanks in advance.
    Priyanka

    You can do this on the desktop using the Acrobat SDK as a custom plugin.
    You can do this on a server with Adobe LiveCycle PDF Generator.

  • Have an older Macbook Pro 10.6.8 tried to update it to XMavericks. Discovered that my microsoft apps are not compatible. Can I keep my files and convert them?

    Have an older Macbook Pro 10.6.8 tried to update it to XMavericks. Discovered that my microsoft apps are not compatible. Can I keep my files and convert them?

    Use a product such as LibreOffice, the iWork applications, or Microsoft Office 2008 or newer to open them.
    (107914)

  • I am using OS 10.6.8 on my iMac and using Appleworks V 6. I can drag a document or spread sheet to pages V4.1 or numbers v 2.1 and convert them. If i upgrade to Mavericks can i continue to do this?

    I am using OS 10.6.8 on my iMac. I am also using Apple Works V 6, Pages V 4.1 and Numbers V 2.1.  I can drag a document or spreadsheet from Apple Works to Pages or Numbers icons on my doc and convert them to Pages or Numbets documents and spreadsheets.  If I upgrade my OS to Mavericks will I be able to continue these conversions?

    Thanks for your help.  Even though you can drag all documents or spreadsheets in an Appleworks folder at once to a Pages or Numbers icon on the Doc, you end up with all items as seperate Pages or Numbers documents or spreadsheets. Then you the have to move each one into new folder.  Is there a way to transform an entire Appleworks folder into a Pages or Numbers folder?  It would make for much less work.  Again, I appreciate your assistance.

  • My current os x is 10.9.5, using final cut express vers. 4.0.1.  I have imported .mov clips created with a older mac os x (lion) and converted them to import into fce. after doing this as well as putting clips on the fce timeline when playing back t.h

    My current os x is 10.9.5, using final cut express vers. 4.0.1.  I have imported .mov clips created on a older mac os x (lion) and when I wanted to import them into fce, a quicktime conversion window opened up and converted them (I haven't experienced this in the past). I then imported the converted quicktime clips into my fce project.  After doing this I took selected clips and put those edited clips on the fce timeline.  When playing the video back in the fce timeline,I noticed
    1) the video wasn't playing back smoothly like the original content
    2) when looking at the timecode reading of the timeline, the timecode was sputtering as well as the video and audio.  I exported to quicktime just to see if that was consistent, it was.
    When I play the converted quicktime content independently of fce,  it plays normally (no sputtering of timecode, video and audio.  Need help to resolve the sputtering playback of converted video content in the fce timeline.  I've never experienced this before.  Any suggestions?

    When you say you converted the clips before importing them into FCE, did you convert to AIC or DV and do the converted clips match your FCE Sequence settings exactly?  If not, go back and convert the original files again, using the intended Sequence settings as a guide.
    -DH

  • I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4

    I am trying to import movie files into to iMovie. They are home videos so I use handbrake and VLC to put them onto the computer and convert them to MPEG-4 files. I successfully imported two of the videos but the others are not working, they are all MPEG-4 files. Now, they are not compatible. How to I get them into imovie?

    Hi
    I use
    • DV-PAL or DV-NTSC - or -
    • AIC
    Yours Bengt W

  • SonicStage/Atrac3 files--How do I import these files and convert them??

    This is my problem.
    I used to have SonicStage, I no longer do, but I found some of my old CDs that I made using that program, but the atrac3 files(I believe that's what they're called) aren't compatible with Mac, so now what do I do? I've never converted anything in my life, are there any apps I could download that will rip the unreadable files from my old CDs and convert them into usable mp3 (or whatever) files?
    This is all very foreign to me and any advice would be greatly appreciated.

    Re: SonicStage for Mac

  • Trying to find epoch dates and convert them to dates

    I'm trying to find every epoch time in a string and convert them to a date. I have tried the below with no luck.
    SELECT REGEXP_REPLACE('1315617396271 Impacting: CISCO SAN SWITCH1315617396271 Impacting: CISCO SAN SWITCH'
    ,'([[:digit:]]{10,10})',unixts_to_date('\1'))
    FROM dual
    Result
    Error - ORA-01722: invalid number
    I know the dates are good and the function works fine from the below test.
    select unixts_to_date('1315617396') from dual
    result
    10 September 2011 01:16:36 AM
    Any help with this would be much appreciated!

    Hi,
    I was not able to copy-and-paste your example due to unknown characters (which are displayed as squares on my Ubuntu laptop).
    I modified them replacing those characters by spaces.
    Maybe that won't totally fit your needs, or might behave differently on your system.
    Anyway, I propose the following :Scott@my11g SQL>l
      1  with t as (
      2  select '1315617396  271 Impacting:  CISCO SAN SWITCH  1315617396  271 Impacting:  CISCO SAN SWITCH ' str from dual
      3  union all select '1315417396  123 Impacting:  CISCO SAN SWITCH  1315317396  123 Impacting:  CISCO SAN SWITCH ' from dual
      4  union all select 'I went to France from 1123456789 to 1234567890 and it was great !' from dual
      5  )
      6  ------ end of sample data ------
      7  select
      8       str
      9       ,listagg(strdt) within group (order by n) newstr
    10  from (
    11       select
    12            str
    13            ,n
    14            ,regexp_replace(sstr,'(.*?)\d*$','\1') || (to_date('1970101','yyyymmdd') + regexp_substr(sstr,'\d{10}',1)/3600/24) strdt
    15       from (
    16            select
    17                 str
    18                 ,n
    19                 ,regexp_substr(v.str,'.*?(\d{10}|$)',1,v.n) sstr
    20            from (
    21                 select t.str,
    22                 m.column_value n
    23                 from t
    24                 ,table(cast(multiset(select level
    25                                from dual
    26                                connect by level <= regexp_count(t.str,'.*?\d{10}')+1) as sys.OdciNumberList)) m
    27            ) v
    28       )
    29  )
    30* group by str
    Scott@my11g SQL>/
    STR                                                NEWSTR
    1315417396  123 Impacting:  CISCO SAN SWITCH  1315 06 June      2012 05:43:16 PM  123 Impacting:  CIS
    317396  123 Impacting:  CISCO SAN SWITCH           CO SAN SWITCH  05 June      2012 01:56:36 PM  123
                                                       Impacting:  CISCO SAN SWITCH
    1315617396  271 Impacting:  CISCO SAN SWITCH  1315 09 June      2012 01:16:36 AM  271 Impacting:  CIS
    617396  271 Impacting:  CISCO SAN SWITCH           CO SAN SWITCH  09 June      2012 01:16:36 AM  271
                                                       Impacting:  CISCO SAN SWITCH
    I went to France from 1123456789 to 1234567890 and I went to France from 07 May       2006 11:19:49 P
    it was great !                                    M to 13 November  2009 11:31:30 PM and it was grea
                                                       t !

  • With Adobe Illustrator I may open doc documents(word) and convert to pdf

    With Adobe Illustrator I may open doc documents(word) and convert to pdf ?

    Ise,
    You can, although (maybe) only the first page of the .doc; this may depend on the Illy version.

  • HT1550 I'm having trouble with importing them into iTunes and converting them at the same time. when i hold down option over the files i can't find where its supposed to say create new version. is this if you're in iTunes?

    I'm having trouble with importing them into iTunes and converting them at the same time. when i hold down option over the files i can't find where its supposed to say create new version. is this if you're in iTunes?

    You can't do it in one step. Add to iTunes first, Once the tracks are in iTunes you may convert to a different format.
    tt2

  • I have created two related books in Lightroom 5 (Volumes 1 and 2) but my balance of page numbers is off. So I'd like to take some pages out of one book (complete with images) and paste them into the other. Is this possible?

    I have created two related Blurb books in Lightroom 5 (Volumes 1 and 2) but my balance of page numbers is off. So I'd like to take some pages out of one book (complete with images) and paste them into the other. Is this possible?

    Can you zip up a few of your GoPro images, upload them to dropbox.com and post a share link, here, so others can experiment with them, or do you mean this issue is global to all camera models?

  • Excel not even open - "cannot complete this task with available resources" and then VBA run-time error randomly appear!

    Has anyone else seen the "Excel cannot complete this task with available resources" error message appear when Excel isn't even open? It keeps happening to me, and it's the strangest thing.
    It seems like interacting with Excel files sometimes prompts it - for example, I just turned on my computer this morning, checked my email, and then opened Google Chrome to upload some Excel files. Excel hasn't been opened at any point since the machine
    booted up, but this Excel error popped up while I was uploading the files.
    Checked the Task Manager because I was baffled (not that this is the first time it's happened), and there's no Excel application running, just that silly error message. Choose OK on that error and a VBA run-time error message appears (not even sure if it's
    Excel VBA or Word/Outlook but I assume it's Excel - it's the good old 1004, application-defined or object-defined error).
    Debug is greyed out, so it won't let me debug to see what the problem is. Choosing End brings the "Excel cannot complete this task with available resources" message back for one final performance.
    This happens on a not-infrequent basis: Excel isn't open, and I randomly get this set of Excel errors: 1) "cannot complete task", 2) VBA run-time, 3) "cannot complete task" again. Then it's done, until the next time it happens. Weird.
    I have 32-bit Windows 7 and Excel 2013/2010/2007/2003/2002 (I know!) but the issue only started after installing 2013. I also get the "cannot complete this task" message regularly when working in Excel (generally with Power Pivot or something legitimately
    memory-hungry though), and restarting the application does the trick. I don't mind a heads-up when I'm gobbling up too many resources, but when Excel's not even open, it's a bit ridiculous. It's like I have a zombie Excel! Does interacting with Excel files
    via upload/moving around Windows Explorer actually trigger some sort of Excel action in the background?
    Any ideas would be most appreciated!! Thank you :)

    Hi,
    As the memory error messages , it can be very generic and don't always identify the real cause of the issue. We may try to use the KB that Mr. KR mentioned above to troubleshoot it.
    On the other hand, if the file is xls format, we may convert to the new file format .XLSM and test.
    http://www.experts-exchange.com/Software/Office_Productivity/Office_Suites/MS_Office/Excel/Q_28339883.html
    Next, try to disable hardware graphics acceleration from File > Options > Advanced > Display section and disable Aero Themes (if you enabled) to check the results.
    For the hangs and crashes issues, we may use ADPlus.vbs to troubleshoot:
    http://support.microsoft.com/kb/286350/en-us
    http://www.networksteve.com/exchange/topic.php/Excel_cannot_complete_this_task_with_available_resources_error,/?TopicId=39411&Posts=1
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Hope it's helpful.
    George Zhao
    TechNet Community Support

  • I'm no lab geek but I thought I had a 1st gen IPad. Was having difficulty downloading. Went out bought a new ipad3. Took my gen 1 to Apple store and it's running IOS7. Is this even possible.

    I'm no lab geek but I thought I had a 1st gen IPad. Was having difficulty downloading. Went out bought a new ipad3. Took my gen 1 to Apple store and it's running IOS7. Is this even possible???

    http://en.wikipedia.org/wiki/IPad
    Dope, I deleted link as I pressed  add reply.

  • ITunes no longer recognizes midi files how can I play and convert them?

    iTunes 10.3 recognised midi files, I could "move" them to the iTunes library and select them. then click on "Advanced" and "Convert to AAC" (or to MP3 etc).
    iTunes 10.5 will not recognise midi files.
    I think an older version of GarageBand could also read and convert midi files, but this no longer appears to be the case either in the latest version.
    How can I now convet midi files? Has Apple decided to simply ignore them?

    Thanks to Limnos, I now have some further things to try, but in the meantime I found I had been maligning GarageBand 11. Indeed its built-in Help system doesn't seem to mention Midi files at all, but I found out how to insert them from Apple's on-line support system at http://support.apple.com/kb/PH2009 and it works superbly well - one can even change the instruments on individual channels etc and then save the lot as an AAC (m4a) or mp3 etc file.
    I also loaded up an old version of iTunes, version 10.3, which still recognises Midi files and can convert them to AAC or mp3 but in so doing some volume seems to be lost.
    But the winner so far for me has been Audacity, free software. One needs to add a LAME encoder for mp3 output, I installed Soundflower and routed the playback of the midi file available in the Finder (in fact for the whole machine, while playing the midi file) and declared Soundflower as the input for Audacity. I could then use Audacity's effects menu to increase the volume throughout the track and save it. I then, using the Sound preferences of the machine, switched back to the inbuilt speakers and was able to listen to a higher volume version, playable in iTunes 10.5. More faithful to the original midi file than the GarageBand version.
    See instructions at http://ask.brothersoft.com/tags/convert-midi-to-mp3/ and in particular one of the links http://ask.brothersoft.com/how-to-convert-a-midi-to-a-mp3-using-audacity-26125.h tml
    This is for Windows but for Mac it's very similar/ - still Audacity. BUT the instructions in the last link don't seem to quite work, which is why I had to use Soundflower. I can import the midi file, I can select it, but then the export item on the file menu remains greyed out and unuseable, so I must presumably be missing some plug-in. Also Audacity keeps telling me it can't find various ffmpeg files even though I thought I had installed them correctly. I'm obviously missing something here, but at least I can now get my midi files into aac or mp3 format again at last.
    For Soundflower see http://cycling74.com/soundflower-landing-page/ and http://kineme.net/forum/General/soundflowerforlion
    and there is a useful tutorial by Nowjobless on YouTube at
    http://www.youtube.com/watch?v=r3FGOIW08gA&feature=related
    Good luck to anyone else facing the same problems, it remains to be seen how to "convert" midi files to mp3 in Audacity without recourse to Soundflower.

  • Iterate shapes and convert them to Compound Shapes

    In order to keep shapes as shape layers in Photoshop when exporting from .ai to .psd, one has to convert all shapes to Compound Shapes.
    At the moment, i'm using an action that converts the shape, then selects the shape above. Starting with the bottom shape, i have to click
    the action for every shape.
    Is there a way to make a script cycle through all shapes and groups, converting them to Compound Shapes?
    At the end of the script, it would be nice to have it make an export of the file to .psd aswell.
    I'm somewhat familiar to javascript, but i would really appreciate some guidelines in creating this.

    It okay is, because this will be great learning for our minds!  There is a way, to have your Extendscript execute the AHK script which tells it to "send" the F-keys as if it came from your keyboard.  The action will go, but I am not very clear on how out of synch the action will be with the script.  At first thought , putting $.sleep() may do the trick, especially if your action does not take long & there's not a big chance of it having to take long.  Well, anywho, after the time break, it will go do its script thing, which is select the next shape or group (pageItem).  And at the end, hey, you can try tacking on the PSD saving using the export with ExportOptionsPhotoshop- but that's later!  Qwertyfly... has some examples here of executing an AHK script from the jsx script, check 'em out!

Maybe you are looking for

  • Leaving date is not available in the Query report

    Hi, I had a problem that the leaving date is not generated while running a report from the sap standard report. Note: I has assigned the leaving action config as Coustomer Specific : 3 Employment: 0 Specific Payment: 0 Should we look into ADMIN LDATE

  • COLOR/ BLACK AND WHITE PRESETS

    I am trying to set up a new computer to print both black and white and color. (I am working on two macs fyi) On my computer, I have the presets already made. On the new mac laptop, there are only Default and Last used. I figured out how to make prese

  • IDOC Question

    IDOC support EOIO only? Or IDOC support EO and EOIO?. Which is correct?.

  • Images in NetBeans 5.0 Mobility

    Hi all, I am an experienced programmer but new to Java. I want to learn how to program MIDlet's for mobile phones. I have installed NetBeans 5.0 and the NetBeans Mobility Pack for supporting mobile applications. I have learned the basics like creatin

  • Deployment Error in JSP

    Hello, I a developed a JSP application and then deployed on j2eesdk1.4.2_08. It was properly deployed but when i am trying to execute the below error was showing. please help me to rectify the error. The Error IS : type Exception report message descr