Capture Signature from PDA or digital Pen with Flex

Hi All,
I am creating an application in which there is a requirement to capture signature that will be done with PDA or digital pen.
There will be a form which will be accessed in PDA and it will be signed by a person. I need to capture that signature and pass to server.
How to capture this signature? Any idea?
Thanks,
-Chandu

Hello  sorongo,
I haven't had such a requirement yet, but I found an example by Rich Heilman: [Upload Graphics Using Function Module|Upload Graphics Using Function Module].
I can only suggest you to download the image via DP_CREATE_URL and use the above mentioned approach to import it again.
Good luck!

Similar Messages

  • Using a Digital Pen with Outlook

    As a company we use digital pens a lot, but have always struggled to leverage the full value of these. Back a while Nokia had a brilliant pen which allowed us to integrate with outlook, so that any 'to do's that we tagged with a pen became tasks in Outlook.
    Nokia got out of the market... Livescribe have been dominant in the market, and we did create the same function using their connectors. Now they have discontinued this in the latest release of their desktop software . Livescribe+integrates to One
    Note (at long last) but this now means we have to transfer notes to one note and then manual assign Outlook tasks.
    Has anyone found a solution to this or do we just have to accept the growing rise of Tablets and finally do away with paper!

    Hi,
    Do you mean the digital pen comes with Surface? Since this forum is for general questions and feedback related to Office 2013 for Windows, if your question is related to Surface, you can post a new question in the Microsoft Surface forum here:
    http://answers.microsoft.com/en-us/surface
    The reason why we recommend posting appropriately is you will get the most
    qualified pool
    of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Print Capture Signature in Smartforms

    Hi experts,
    I would like to know if it is possible to print a captured signature from a mobile device into my smartforms.
    The customer will sign through a device and the output for the invoice will be printed with the signature.
    I believe another SAP module(SAP MAM) is used to capture  the signature but as an ABAPPER how can I retrieve the signature and include it in the printout of the invoice?
    Thanks!
    eric

    Hi,
    Ask sap-mam people to call a workflow or a report porogram in which .
    1) if it is workflow run rrstxldmc and provide the captured sign file name and after that event is successful trigger and anotherr task that runs the script's driver program. Now the captured sign will be appered in your smartforms
    Note: add the logo in the script(logo name is constant in the script)
    2) if it is report submit rxtxldmc with the file name captured by the sapmam and remaining all are same.
    Thanks,
    NN.

  • How to transfer Signatures from one Mac to another

    In Mail, if I go to Preferences > Signatures, I see in the left column *All Signatures*, and signatures for various accounts.
    How would I transfer the signatures in *All Signatures* from one Mac to another?
    The names of files in the folder ~/Library/Mail/Signatures are all cryptic.
    Moreover, since each signature is tied to a certain account, I don't think that I can just copy these files into the Signature folder of the 2nd Mac.

    Simply moving these cryptic files did not work, in the sense that these signatures did not show up in the right-most column of the Signatures pane.
    I made sure that I did not move the SignaturesByAccount.plist file in the ~/Library/Mail/Signatures folder.
    So, would someone please share with me how to transfer signatures from one Mac to another, with both running Mail?

  • Can I sign a Microsoft Word Document with the digital signature from a MIlitary issued CAC card?

    Is it possible to sign a MS Word doc with the digital signature froma  Military issued CAC card? It is easily done in Adobe but, I cannot find any guidance for MS Word docs.

    According to this thread in Microsoft's forums:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/can-i-how-do- i-add-a-digital-signature-to-a/eb2c2787-b13f-4388-b20f-4580515eec95
    this is not possible with Word for Mac.
    Regards.

  • Capture a physical signature from a touch screen?

    Is there a way to capture a physical signature from a touch screen PC, tablet, or phone and imbed that directly into an Acrobat fillable form without utilizing other devices or programs?
    Thank you!

    Hi Chandrika,
    Please provide the details of the BADI you are using. In general you have to go to the methods in BADI and see which are all the fields associated with that method. In your case you have to search the field which captures the value entered by the user.
    You can also check this  by putting break point in GET_INSTANCE method of CL_EXITHANDLER class (Through SE24) and check in which field value entered by the user being captured and also you can find out the BADI involved.
    Then you can go to SE19 and in the BADI you can find the relevant method.
    Then you need to code in the relevant method and use the field which is capturing the value whereever you need.
    Regards,
    Edited by: Nagraj.ashwath on Aug 20, 2010 9:33 AM

  • Measuring digital signals coming from the HSDIO (PXI-6542) with the DMM (PXI-4070)

    Hello,
    in attachment you can find the program I'm using for my measurement: I'm generating and acquiring digital signals with the PXI-6542 and at some trigger point of one of those digital signals I'd like to capture the measured values on a plot with the Digital MultiMeter (PXI-4070).
    It does work if you configure the generation repeat mode as continuous, but if you do have a finite repetition (repeat count is 1) it doesn't react on the trigger, as if it can't find a trigger. On the other hand, if you have a finite repeat count of 30 or more it does react and triggers correctly again.
    First I though it had something to do with autocalibration before the measurement takes place, but If you do a highlight execution (stepping through the program) it looks like it measures before the generation session is initialized.
    Is there a way to measure correctly when the repeat count is only 1?
    Thanks in advance,
    Jürgen

    Hey Jürgen.  I apologize that you haven't gotten an answer yet to your post.  I looked at your code and had some questions.  What is the source of your trigger to your DMM?  I see that you're exporting the data active event to PFI1, and your comments indicate that PFI1 and PFI2 are connected to give you a start trigger for your digital acquisition.  Exporting the data active event with a finite or continuous pulse should only give you a single edge per run, though - you wouldn't get a pulse each time.  Is your trigger coming from a data line?  I didn't see any line in your included data that would indicate a single pulse.
    The other thing that I noticed is that you've got no timing dependency between your HSDIO code and your DMM code - they're in parallel with each other.  Thus you could get different results run-to-run, since it's not deterministic as to which parallel "thread" that LV will start on first.  LV may switch back and forth several times, but let's say that LV reaches the HSDIO Start command before reaching the DMM Start command - in that case, the HSDIO device may finish it's entire operation before the DMM ever starts looking for a trigger, and thus never get the trigger at all.  I'm not sure why this would explain why you're seeing the finite case work and the continuous case not, but I wanted to point it out because it could bite you down the road.
    I hope some of this this helps get you going in the right direction.  I'd also suggest posting HW-centric questions in the appropriate form.  There are Digital forums and DMM forums that might help you reach people that will be more familiar with your particular hardware.
    Chris

  • Apple mail strips my digital signature from pdf attachments

    I communicate with clients through email.  I send reports which contain a picture of my signature and a digital hass.  Apple mail strips the signature from the pdf files as I attach them. 
    An aside.  I use mobile me and the idisk server.  All documents located on the idisk are also stripped of the signature block. 
    This is not a problem if I use outlook, which I guess I have to switch back to again. 
    What does apple have against a digital signature

    I sign the pdf with a digital signature which includes a picture of my written signature.  When I attach it to Apple mail or upload to mobileme, the signiture disappears.  My clients see nothing.  When I go back to the email in the sent box and open the pdf in the email there is no signature.  When I open the original pdf the signature is there
    This problem does not exist in outlook 2011, but would have liked to use mail as outlook does not support caldev
    I don't know if I can explain it any better.

  • SU-27W Digital Pen Software with Vista

    Good Morning,
    Does anybody knows where it would be possible to find the software for the SU-27W Digital Pen compatible with Vista ?
    Thank you.
    Aquirio.

    Many thanks for your reply, PsychoMania, but unless I'm missing something the answer is not in the manual. It says: "The Bluetooth passcode that you need for pairing is printed on the card that comes in the sales package. You can change this preset passcode..."
    I don't have the card that comes in the sales package, and changing the passcode is not what I'm after, because it changes back to the factory preset one if the pen receives a full reset, and this is an operational problem.
    I was hoping Nokia might keep a database of pens' serial numbers and passcodes, or someone might know a way to discover a pen's preset passcode from its serial number or pen ID.

  • Get digital signature from TIFF image

    Hi,
    How can we get digital signature from the scanned TIFF image?
    Thanks,
    Susila S

    Do you mean a X.509 certificate or a digitalized image?
    If its the first one, i don't think you can do it with Livecycle Alone.
    If its the second one, anything from Paint to Corel will do.

  • I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date is created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    I have made a burn folder with photos exported from I-photo.  It now shows in information, that the date  created and modified is different from the original digitized date.  How can I get the original date to show in the info from Finder?

    The Finder reports File information. The date and time of the photo are in the Photo's Exif metadata. The Finder has no awareness of this. All photos apps on any system do.
    Regards
    TD

  • Is it possible to download books from digital editions with one Adobe ID and password?

    I bought another laptop to use in a different state so i don't have to carry one with me.  When I go to download a book from my library (digital editions) it won't let me and when i try to authorize my Nook it tells me that Adobe ID and password can only be used on one device?  Help?

    Please ask this question in the Digital Editions thread - Adobe Digital Editions    
    Regards,
    Deepak

  • Problem with capture image from wc

    hi all, i want to capture image from my webcam and play it, but it's not work
    please help me, here's code
    public class Demo extends JFrame {
          * @param args
         public static void main(String[] args) {
              // TODO Auto-generated method stub
              Demo demo = new Demo();
         public Demo() {
              super();
              int a=30;
              final JPanel panel = new JPanel();
              getContentPane().add(panel, BorderLayout.CENTER);
              setVisible(true);
              DataSource dataSource = null;
              PushBufferStream pbs;
              Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(null));
              CaptureDeviceInfo deviceInfo=null;boolean VideoFormatMatch=false;
              for(int i=0;i<deviceList.size();i++) {
              // search for video device
              deviceInfo = (CaptureDeviceInfo)deviceList.elementAt(i);
              if(deviceInfo.getName().indexOf("vfw:/")<0)continue;
              VideoFormat videoFormat=new VideoFormat("YUV");
              System.out.println("Format: "+ videoFormat.toString());
              Dimension size= videoFormat.getSize();
              panel.setSize(size.width,size.height);
              MediaLocator loc = deviceInfo.getLocator();
              try {
                   dataSource = (DataSource) Manager.createDataSource(loc);
                   // dataSource=Manager.createCloneableDataSource(dataSource);
                   } catch(Exception e){}
                   Thread.yield();
                   try {
                        pbs=(PushBufferStream) dataSource.getStreams()[0];
                        ((com.sun.media.protocol.vfw.VFWSourceStream)pbs).DEBUG=true;
                        } catch(Exception e){}
                        Thread.yield();
                        try{dataSource.start();}catch(Exception e){System.out.println("Exception dataSource.start() "+e);}
                        Thread.yield();
                        try{Thread.sleep(1000);}catch(Exception e){} // to let camera settle ahead of processing
    }

    iTool wrote:
    hi all, i want to capture image from my webcam and play it, but it's not workThat's a very descriptive error message, "it's not work". Everyone on the board will certainly be able to help you out with that.
    The first error I see is that you're using the CaptureDeviceManager in an applet. If T.B.M pops in here, he can tell you why that's going to be a CF 99% of the time.
    The other error I see is that your code looks absolutely nothing like any working JMF webcam capture code I've personally ever seen.
    Lastly, the big one, even if you were somehow capturing video magically, you're not even trying to display it...so I'm not entirely sure why you expect to see anything with the code you just posted.
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/JVidCap.html]
    Your best bet would be starting over and using the example code from the page linked above.

  • How do i remove the exif metadata from my jpg file produced with a digital camera photo?

    How do i remove the exif metadata from my jpg file produced with a digital camera photo?

    The excellent and free utility Irfanview has the option to remove the EXIF data.
    Simply open and the file and do a Save, or Save As with the original name.
    Surprisingly, the default is to not keep the original EXIF data.

  • I would like to know how to transfer ebooks from one laptop to another with adobe digital editions both authorized with the same adobe ID.

    I would like to know how to transfer ebooks from one laptop to another with adobe digital editions both authorized with the same adobe ID.

    Stop using the account.
    You need do nothing more.
    You will need to authorize your computer for both accounts as you have purchased from both accounts.

Maybe you are looking for

  • Can't get twitter notifications

    I can't get the twitter notifications to work (facebook and mail work). And everytime I go to twitter.com with Safari, it's asking me if I accept to share it with OSX software. Anyone has any idea ? Thx Message was edited by: aurelien.aries

  • Running a time machine back-up of a HD in target mode

    Hi guys Wondering if anyone can offer me some advice. My macbook pro won't start up and gets stuck in grey screen with apple logo. I have tried various troubleshooting tips as per apple support documents but cannot get it to start. Before I get to in

  • Clear system drag image

    Hi, When using drag and drop (in a JTree) under Solaris, a drag image appears. I would like to clear this image to display only the image I have created. When I run my app under Windows, there's no problem, only my image is displayed. Could somone pl

  • JAR running error...please help

    I have created a JAR file, which operates on a database platform program. This is located in a different directory to the main java and class files. Directory of the Testing Program to run the DBP program: C:\CRT in which I've stored my test.jar whic

  • Cancel Transfer Order - Delivery is not updated

    Hello, I'm using the FM L_TO_CANCEL to cancel a TO item. The problem i'm facing is that in the delivery, the picked quantity does not increase after canceling the TO. The TO status shows as completed and canceled Hence if I try to create another TO,