Display PDF and get possibly modified data back

Hello
we want to display a PDF in the SAP-GUI, either inline or external via the registered application (Adobe Reader, Adobe Acrobat or whatever).
If the user has an application that is capable of editing a PDF-Document, we need to get the document's new data to store it in a document server under a new version.
So is there any possibility to display a PDF and register some sort of callback that is triggered and gets passed the document's data (in any format)?
The only solution I found so far, is to display a PDF Form with Adobe Reader extensions and send the entered form-data via a service-call, initiated by embedded Java-Script in the PDF, back to the server. We need however the document's full data and we are going to display normal PDF documents that have no form-fields.
Thanks alot

Hi Kai,
To be generic, SAP Adobe Forms are similar to Smartforms when it comes to form designing and printing.
The added advantages include, you can have online as well as offline forms where users can edit pdf's i.e. Enter Data in editable fields and can be uploaded or used as per the requirement.
So your requirement can be surely met using SAP Adobe Forms.

Similar Messages

  • My ipod touch is disabled and it says to connect to itunes but itunes says it can't sync since it is locked.  How can I unlock it and get all my data back?  (apps, profiles, gaming levels.)

    My ipod touch is disabled and it says to connect to itunes but itunes says it can't sync because it is locked.  Any way to unlock and keep data?  (apps, gaming levels, music).

    Hi,
    Take it to you nearest Apple Store and see what they have to say. You should back up you data before you go in but in your case you can not.
    xxmitchxx90

  • How to get last modified date and time of a file which is in apache server.

    Hi ,
    I need to get last modified date and time of a file in remote machine.
    This file is in remote machine which has apache server installed.
    I am trying to get this information by connecting to apache server from client by giving absolute URI of the file to file object.
    URI is got from apache server URL by using toURI method.
    when I use lastModified method , its throwing exception , because scheme of URI is not file.
    I can't give scheme as file because ftp server is not installed on that server
    Is there any other way to get this information .

    No, unless you can use an FTP client.

  • TS1474 I synced my iphone to an older computer, and the iphone data was replaced by the old data from the computer. How do I get my newer data back?

    I synced my iphone with an older computer to update the computer, but the iphone ended up with all the old data (phone numbers, etc).  How do I get the newer data back?

    Connect to iTunes on the computer you usually Sync with and Restore...
    http://support.apple.com/kb/HT1414

  • I restored my phone on iTunes, but when I did, all my info deleted and now it's my sister's old data. I tried to go back on iTunes and restore, but my original data isn't even an option. How do I get my old data back?

    I restored my phone on iTunes, but when I did, all my info deleted and now it's my sister's old data. I tried to go back on iTunes and restore, but my original data isn't even an option. How do I get my old data back?

    Before you did the resotore Via itunes you should of made a Back-up of your Data. But to be honest, i don't think that you would be able to get that stuff back.. Sorry mate

  • I used to have a web page in mobile me and now is closed.  How can I get my webpage data back?

    I used to have a web page in mobile me and now is closed.  How can I get my webpage data back?

    Your web pages on MobileMe have been deleted. If you were using iWeb you wouldn't have been able to open them anyway.
    As long as you have the iWeb 'Domain' file in your user Library, or whatever the program you are using stores the information in, on your Mac you can publish to another hosting service - there are plenty to choose from. More information here:
    http://rfwilmut.net/missing2

  • After upgrading my iPhone, I lost all my contacts..... and they were replaced with my wife's contacts even though she upgraded after I did. I did a time machine backup before I started the upgrade process, how do I get that saved data back to my phone?

    After upgrading my iPhone, I lost all my contacts and they were replaced with my wife's contacts even though she upgraded after I did. I did a time machine backup before I started the upgrade process, how do I get that saved data back to my phone?

    Hi bluegrandpanash,
    Thanks for visiting Apple Support Communities.
    If you backed up your iPhone to iCloud before updating the software, first try the steps under "Restore from an iCloud backup" in this article to recover your data:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Best Regards,
    Jeremy

  • Hi, I have a new cell phone, I wanted to give my iphone to my father, instead of deleting the content on the iphone I have deleted the entire iphone. It starts up no more. iTunes will not recognize the iphone. How do I get my old data back onto the phone?

    Hi, I have a new cell phone, I wanted to give my iphone to my father, instead of deleting the content on the iphone I have deleted the entire iphone. It starts up no more. iTunes will not recognize the iphone. How do I get my old data back onto the phone?

    Place the device in DFU mode (google it) and restore as new.

  • I forgot the backup encryption password in iTunes how can I get my backup data back?

    I forgot the backup encryption password in iTunes how can I get my backup data back?

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (109920)

  • Date fields and compare and get the later date of the fields

    I am trying to compare these date fields and compare and get the later date of the fields
    Tables are
    TABCASER
    TABCASER1
    EVCASERS
    Field
    Are
    TABCASER1.CASER_no
    The dates are to be compared and then get the records with the highest or latest date value.
    TABCASER1.CASERRECIEVEDDATE
    EVCASERS.FINALEVDATES
    EVCASERS.PUBLICATIONDATE
    EVCASERS.PUBLICATIONDATE
    TABCASER.COMPAREACCEPDATE
    I have this code but I am trying to figure out what it all means.
    I have several questions.
    1.
    1.     greatest it is used here to compare right? How do I then output this ? do I store it to a var (coldfusion) ultimately , I wish to send it to a page of records
    2.     is it necessary to use todate? And to_date? What does this do?
    3.     decode, is this necessary too. What does this do? NULL?
    4.     
    5.     
    6.     when I do get the query results how do I send it to coldsuion and out put to a display.
    Someone sent me this code.
    is there abetter way of doing this? To compare the dates and store in a var to display. thanks
    Here is my code below:
    Greatest(
         CASE
              WHEN INSTR(TABCASER1.CASER_no,'-CE') > 0 THEN
         decode(TABCASER1.CASERRECIEVEDDATE,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),TABCASER1.CASERRECIEVEDDATE)
                             WHEN INSTR(TABCASER1.CASER_no,'-ERNIE') > 0 THEN
         decode(EVCASERS.FINALEVDATES,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),EVCASERS.FINALEVDATES)
                             WHEN INSTR(TABCASER1.CASER_no,'-MONIE') > 0 THEN
         decode(EVCASERS.PUBLICATIONDATE,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),EVCASERS.PUBLICATIONDATE)
                             WHEN INSTR(TABCASER1.CASER_no,'-NADINE') > 0 THEN
         decode(EVCASERS.PUBLICATIONDATE,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),EVCASERS.PUBLICATIONDATE)
                             ELSE
         decode(TABCASER.COMPAREACCEPDATE,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),TABCASER.COMPAREACCEPDATE)
                        END
              ,decode(TABCASER.COMPAREACCEPDATE,NULL,TO_DATE('01/01/1900','mm/dd/yyyy'),TABCASER.COMPAREACCEPDATE))
              between TO_DATE('#dateformat(form.startDate,"mm/dd/yyyy")#','MM/DD/YYYY') and TO_DATE('#dateformat(form.endDate,"mm/dd/yyyy")#','MM/DD/YYYY')
    is there abetter way of doing this? To compare the dates and store in a var to display. thanks

    Hi
    If you have date datatypes than:
    select
    greatest(TABCASER1.CASERRECIEVEDDATE, EVCASERS.FINALEVDATES, EVCASERS.PUBLICATIONDATE, EVCASERS.PUBLICATIONDATE, TABCASER.COMPAREACCEPDATE)
    from TABCASER, TABCASER1, EVCASERS
    where ...-- join and other conditions
    1. greatest is good enough
    2. to_date creates date dataype from string with the format of format string ('mm/dd/yyyy')
    3. decode(a, b, c, d) is a function: if a = b than return c else d. NULL means that there is no data in the cell of the table.
    6. to format the date for display use to_char function with format modell as in the to_date function.
    Ott Karesz
    http://www.trendo-kft.hu

  • New to indesign how do i make a magazine to pdf and get code for website

    Hi,
    I am learning indesign, I cannot seem to figure out how to create a magazine than convert it to PDF and get a html code so I can have display on my website. Is this even possiable? I have watch the videos maybe I am missing something. Can someone offer advice please or links.
    Thank you.

    Here are some sites for learning html/css. Some sites are getting a bit old, I have not updated the link for the w3.org site yet. But this should point you in the right direction. And make sure your pop up blocker is on, some of these site will open a new window with an ad. I tried to mark as many as I could, but I may have missed a few.
    http://www.htmlbasix.com/ Has pop up ads
    http://www.htmlgoodies.com/
    http://www.w3.org/MarkUp/html-spec/html-spec_toc.html
    http://www.lissaexplains.com/ - Has pop up ads
    http://www.thesitewizard.com/
    http://www.how-to-build-websites.com/

  • HT1766 If you had already restored your ipod touch without backing up, is there any way to get your old data back?

    Somehow, all my ipod touch's music was deleted so I restored it but forgot to back up. Now around a term past but I still don't how to get my old data back. Now the music thing still doesn't work so I don't know what happened. Maybe my itunes is stuffed??

    i wanna know if my warranty covers it
    No. The warranty covers manufacturing defects and faults that develop after purchase. Your dogs' mauling is neither of those.
    if it doesnt how much it will cost
    A Google search for "ipod touch 2g parts" returned this. There are others you can find yourself.
    $50 for back panel
    http://www.rapidrepair.com/shop/4405-chrome-backing-ipod-touch-2g.html
    $90 for glass panel
    http://www.rapidrepair.com/shop/4421-digitizer-glass-ipod-touch-2g.html
    do not reply to this unless u have an answer
    Yeah, 'cos people often do that...

  • The dates my photos were taken are now incorrect.  Any suggestions on how to get the correct dates back?

    The dates my photos were taken are not incorrect.  Any suggestions on how to get the correct dates back?

    Thank you Winston.  This works and I can adjust several photos at the same time.

  • I was recently sent a very large emoji message amd now when i try to acces messages it will not display mesagges and then will bring me back to the home page

    was recently sent a very large emoji message amd now when i try to acces messages it will not display mesagges and then will bring me back to the home page

    Quit the messages app and reset your phone.
    Go to the Home screen and double click the Home button. That will reveal the row of recently used apps at the bottom of the screen. Tap and hold on the app in question until it jiggles and displays a minus sign. Tap the minus sign to actually quit the app. Then tap anywhere on the screen above that bottom row to return the screen to normal. Then restart the app and see if it works normally. Then reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart.
    After the phone restarts go into Messages and delete the thread containing the problem message.

  • When trying to open iphoto I get the error message "You can't open the application iPhoto because it may be damaged or incomplete." How do I fix this and get my photo's back?

    When trying to open iphoto I get the error message "You can't open the application iPhoto because it may be damaged or incomplete." How do I fix this and get my photo's back?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

Maybe you are looking for

  • My pc sound level is very low on playback from dvd and most websites even though its at 100 percent

    the playback level on dvd and most video streams is very low.(youtube seems ok)This is my second pavillion g7 w/ windows 7 .The first had a defective fan but the sound level was ok and there was a graphic eq section for sound control with other outpu

  • Best way to draw (not plot) on a graph?

    Hi - I need to alter the appearance of a graph somewhat. The user doesn't want any full grid lines, but he does want a small crosshair (like a plus sign) drawn in each of the four quadrants. The CanvasDrawLine() function would be good for this, if it

  • Scale precision - LabVIEW 8.5

    I seem to be having a problem related to keeping a scale precision to 0 digits of precision.  I have even specified advanced formatting using format string of %d and it does not work.  This problem seems to be related to the issue raised here: http:/

  • In Mss task areoved but it still shows in my mss task list why?

    Hi, I have a querry in my Mss i approved the leave request but still it's remain in my task for approval can You plz give me suggection where's the problem . Thanks and Regards Yagyashikha

  • Project Server 2010 failover environment with Database SQL Mirroring

      Hello, We have prod and failover environment. Failover environment created by using farm backup and restore of prod. my question is : Can we do SQL Mirroring (from prod to failover) of 5 databases (4 PS databases and content db) to keep both the en