Link to directly submit to "waiting for me", instead of needing to upload every document.

Can we get a submit button on an Adobe form that allows it to be delivered directly to my EchoSign account. This would be similar to my Archived documents email link. The idea being that paperwork can be channel to any user to send or manage from the manage page, possibly under waiting for me.

In Acrobat 11 and Reader 11 you can open the sign panel and from here sign and send the pdf currently open. (excluding dynamic xfa based pdf files)
Give that a shot.
it is posible to add a button to the form itself as well which submits the form for signing and opens the pdf in the browser ready to echosign, but it requires an Echosign api integration which means the need for a Global account as well.

Similar Messages

  • When will the iPhone 5 be in stores because I heard something about 2012 summer and if that's real, I'll wait for it instead of buying the 4s?

    I want to know if apple's iphone 5 will be out for 2012 summer, because I read something on internet that said that iPhone 5 will be coming for 2012. Is that real?...because it is, I'll wait for it instead of buying the 4s.

    The release of each generation of iPhone will be roughly (or, no shorte than) an year.  iPhone 4S is coming out this week, you're not going to see the next one before Q4 2012, no matter what it is called.
    Wait as long as you want, for the iPhne 5 or 6 or whatever, more than likely the next model will be available in year 2012, but March and November are very different, the chances is you're not likely to see it until late 2012, and IMHHO, it is really nonsense to talk about "the next iPhone" while the latest one is not even available on the market yet.
    iPhone:  June, 2007
    iPhne 3G: July, 2008
    iPhone 3GS: June, 2009
    iPhone 4: June, 2010
    iPhone 4S: October, 2011

  • Waiting for my MBP C2D, need 3rd party software advise.

    New to Macs, what universal binary softwares available for these new intel macs? Does anyone know when apple will have the special promo again for the Microsoft Office? I remember apple had a 50% discount awhile back.

    Daidee,
    This is one question for which you really need to supply more information. What kind of applications will you be using?
    Regardless of what you will be doing, have a look here. This will give you a good idea of what is currently available. Keep in mind that most older, PPC applications will run fine in Rosetta.
    Scott

  • CS5 Links - telling the program to look for .psd instead of .jpg

    Hi,
    I am using InDesign CS5 to create a book with over 900 images.  For the original book setup, .jpg images were used.  For the final, higher quality .psd versions are being used.  Is there a way that I can tell InDesign to look for the same image names, but in the format .psd instead of .jpg?
    - Kristen

    Brilliant, thank you!  Forums win again!
    If it had a choice to include subfolders, that would be even better, but this will work for me.
    Thanks again!
    EDIT:  The "Relink File Extention" option, directly below the "Relink to Folder" option, is exactly what I needed.   Cheers and thank you!

  • Linked List stuff that is hard for me and i need help with

    okay i made this arrayList made up of LinkedLists as printed below. Problem is when i add stuff to them as shown in my STUFF FOR ADDING section, it just simply dosent add anything cause whin I print with System.out.println(listOfLists); it's all just empty. can anyone help me with this?
    ArrayList listOfLists = new ArrayList();
                        for (int ix = 0; ix < numBehaviors; ix++) {
                        listOfLists.add(new LinkedList());
    STUFF FOIR ADDING
                             ((java.util.List) listOfLists.get(0)).add("hi");
                             ((java.util.List) listOfLists.get(1)).add("this");
                             ((java.util.List) listOfLists.get(2)).add("is");
                             ((java.util.List) listOfLists.get(2)).add("a");
                             ((java.util.List) listOfLists.get(2)).add("test");

    prints "[[hi], [this], [is, a, test]]" for me. the problem has to be in the code you haven't posted.

  • Submit and Wait ?

    Hi,
    I am using JOB_OPEN , SUBMIT and JOB_CLOSE for program to create a spool.
    My problem is after the JOB_CLOSE i am calling another report  to send output of first report from the spool.
    My problem is after submitting the program report1 system calls the job_close and tried to send report1 output as mail. But still the submit report1 is still running .
    My question how to use submit statement wait for submit report1 is finished and then only call JOB_CLOSE.
        call function 'JOB_OPEN'
          exporting
            jobname          = v_jobname
          importing
            jobcount         = v_jobcount
          exceptions
            cant_create_job  = 01
            invalid_job_data = 02
            jobname_missing  = 03
            others           = 99.
        submit report1
                        via job v_jobname
                        number v_jobcount
                        to sap-spool without spool dynpro
                        spool parameters wa_params
                        and return.
        call function 'JOB_CLOSE'
          exporting
            jobcount          = v_jobcount
            jobname           = v_jobname
            strtimmed         = 'X'
          importing
            job_was_released  = v_job_released
          exceptions
            invalid_startdate = 01
            jobname_missing   = 02
            job_close_failed  = 03
            job_nosteps       = 04
            job_notex         = 05
            lock_failed       = 06
            others            = 99.
      submit report2 with spool = v_spool. " For mailing
    Sa_R

    Thanks Mike.
    Your solution work well
        call function 'JOB_OPEN'
          exporting
            jobname          = v_jobname
          importing
            jobcount         = v_jobcount
          exceptions
            cant_create_job  = 01
            invalid_job_data = 02
            jobname_missing  = 03
            others           = 99.
        submit ygenr001
                        via job v_jobname
                        number v_jobcount
                        to sap-spool without spool dynpro
                        spool parameters wa_params
                        and return.
    " Simply call the JOB_SUBMIT with extpgm_wait_for_termination = 'X'
    " that will wait for step to complete.
          call function 'JOB_SUBMIT'
            exporting
              authcknam                   = sy-uname
              extpgm_wait_for_termination = 'X'
              jobcount                    = v_jobcount
              jobname                     = v_jobname
            exceptions
              bad_priparams               = 1
              bad_xpgflags                = 2
              invalid_jobdata             = 3
              jobname_missing             = 4
              job_notex                   = 5
              job_submit_failed           = 6
              lock_failed                 = 7
              program_missing             = 8
              prog_abap_and_extpg_set     = 9
              others                      = 10.
        call function 'JOB_CLOSE'
          exporting
            jobcount          = v_jobcount
            jobname           = v_jobname
            strtimmed         = 'X'
          importing
            job_was_released  = v_job_released
          exceptions
            invalid_startdate = 01
            jobname_missing   = 02
            job_close_failed  = 03
            job_nosteps       = 04
            job_notex         = 05
            lock_failed       = 06
            others            = 99.
      perfrom send_mail using v_spool_no.
    Sa_R

  • Is there a way to stop the OS from switching to a newly opened app?  I would like to be able to continue what I'm doing while I wait for an app to launch and not get interrupted by a forced entry into the app.

    Is there a way to stop the OS from switching to a newly opened app?  I would like to be able to continue what I'm doing while I wait for an app to launch and not get interrupted by a forced entry into the app.
    As an example, I'm going to my email in safari, while I wait for it to load, I open an excel document, and the OS decides excel should be the front app, so I go back to safari so I can enter my login info, but halfway through my password the OS decides that excel is where I should finish typing my password.
    VERY ANNOYING.  Can I open apps in the background?

    Thank you everyone for the suggestions. J D, I'm not a terminal fan, but I'm sure it works.  I found a solution that I can use in the dock from another post. 
    Annoyed by Mac OS
    Works great and allows me to maximize those multitasking minutes.

  • "Waiting for activating, this may take some time" appears

    I have a problem, everytime i turn on my Ipad, it appears " waiting for activation, this may need some time" then i choose dismiss, Ipad works normally, but the sentences that appear are disturbing. What should I do? How to activate Ipad since there is no option to activate athough i have plugged it into itunes many times? I live and use my ipad in Indonesia. Any of you know the solution? Is it because i live in Indonesia and i use Indonesian itunes account? Thanks

    If you have the 3G version of the iPad and haven't purchased a 3G data plan, go to Settings > Cellular Data and turn cellular data off to stop the messages.

  • Somebody knows the link to download of Illustrator CC for MAC?

    Somebody knows the link to download of Illustrator CC for MAC?

    You need to download the Cloud Manager and use that to download any of the applications covered under the Cloud.
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    Creative Cloud Help / Install, update, or uninstall apps
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Installing Creative Cloud Apps
    http://tv.adobe.com/watch/cs6-creative-cloud-feature-tour-for-video/installing-desktop-app s-from-creative-cloud/

  • HT201407 iMessage "unable to activate, please try again".    Whenever I go to activate imessage is says waiting for activation and then about 5 mins later says activation unsuccessful, please try again. This is driving me mad! It's been 2 days now!!

    Lease help me to activate imessage. I now have iPhone 5s and can't activate imessage. I've tried all the normal stuff but nothing is working

    i had this problem with my iphone 5c and sorted it contacting apple.
    have you tried resetting the network settings? it doesnt delete anything and should work. if it then changes to "waiting for activation", instead of the error message, then leave it for 24 hours (leaving your phone and wifi on) and it should activate and work.
    for me, this didnt work after 24 hours. i then backed up my phone and reset it and set it up as a new iphone then restored it using my backup from the computer and it now works

  • A Glaring Flaw:  RAW Support waits for the OS

    I know how everyone probably talks about the lack of RAW support for newer cameras (D200, even the S2/S3 aren't supported) and I've got a question. Maybe the answer can really help us out.
    RAW file support is OS-level, not Aperture itself. Anyhow, right now we're waiting for OS upgrades to get our cameras supported.
    Why can't it instead have the Aperture updates automatically update the OS resources for RAW file support? Instead of the OS.
    Then OS updates could either be programmed to overwrite the already existant RAW camera data or just skip it over. I don't know - but that's why I'm not a programmer .
    It just seems, to me at the very least, that the current system is flawed. It takes too **** long!
    If Apple wants Aperture to succeed, lord knows I do, then they have to be on the ball.
    Just my ideas.

    I know how everyone probably talks about the lack of
    RAW support for newer cameras (D200, even the S2/S3
    aren't supported) and I've got a question. Maybe the
    answer can really help us out.
    RAW file support is OS-level, not Aperture itself.
    Anyhow, right now we're waiting for OS upgrades to
    get our cameras supported.
    <..>
    Actually that is not the case. We are simply waiting for RAW updates - which need not come only with OS updates. Apple has publically stated that RAW conversion updates could come in OS Updates, or in Aperture updates, or in standalone updates. So you already have your wish, they are just not taking that option at this time.
    I think at this point Apple is probably tying the latest RAW updates to 10.4.5 - but that is only because it will probably be delivered before too long and so is easy to attach RAW updates to. Also I imagine they would really like to really address the issue at hand and not release a RAW update that people would consider mediocre.

  • Delete Record Behavior doesn't wait for Submit button

    I have master / detail page set.  From the detail set there are links to delete or update a record.  When I click the link to delete the record, it goes to the   confirmation page with the correct record.  Now, when I add the delete record server behavior and a submit button, this is what happens.  As soon as I click the link to go to the delete confirm page, the record deletes and the page redirects to the page I put in the server behavior.  It doesn't show the confirm page and doesn't wait for me to hit the confirm button.  The page runs and successfully deletes the page from the DB.
    How do I get it to wait until I hit the submit button?

    You need to surround your delete query with an "If" statement that checks for a confirmation variable of some sort, then when the user clicks the confirmation link you can pass the necessary variable and the ID of the record the delete query is expecting.
    As an alternative you could use a JS alert fuction to ask the user if they are sure they want to delete the record and then allwo the delet to run after confirmation. To do this you could use code like this...
    <input type="submit" name="DELETE" value="DELETE"
       onclick="return confirm('Are you SURE you want to DELETE this record?')">
    Lawrence   *Adobe Community Expert*
    www.Cartweaver.com
    Complete Shopping Cart Application for
    Dreamweaver, available in ASP, PHP and CF
    www.twitter.com/LawrenceCramer

  • Waiting for the Lion link!

    I've been waiting for Apple to send me the link to download Lion.
    I paid for it two weeks ago and they sent me the verification codes and instructions the same day.
    They aren't shipping a disc, they are emailing a link to download the software.
    I was told by an Apple.com rep that the link would be emailed to me within three to four weeks of my order.
    Now, here is my question...
    WHY DOES IT TAKE FOUR WEEKS TO GET THE LINK? REALLY. WHY DO I HAVE TO WAIT FOUR WEEKS FOR A LINK TO A DOWNLOAD?

    @babowa...
    Do you even read the whole message?
    I'm sorry if I offended you or anyone in the forums with my "all caps". Emails and online posts don't carry the audible inflection that the human voice carries, so take it with a grain of salt.
    (Asking me why I was "screaming" probably would have nipped this  "discussion" in the bud, so taking it personally was a much better  approach. That way we can go back and forth arguing over semantics.)
    Typed messages can be too easily misinterpreted due to the lack of sound. You can't hear the inflection or the desperation in my voice, so it's natural to assume it's anger directed at you. But, I'm telling you, it isn't. I don't know how many times you want me to say it... It wasn't directed at you or anyone on here. After all, I don't know you or anyone else on the forum. (oops... are italics offensive?)
    This was a yell of frustration, not anger. Why are you hung up on that? There is a major difference between angry shouting directed at individuals and shouting in frustration in general. If expressing my discontent in an online post is offensive, then be glad you have the freedom to be offended. I didn't curse, I didn't slander anyone and I didn't threaten anyone. I merely intensified the font to show my state of frustration. But, since you got offended, and this is your world and not mine, I apologize to you and anyone else I might have offended with my capital letters.
    By the way, I already talked to Apple. (Remember, I mentioned that in both posts). Again, this was an attempt to find out if anyone (tempted to use caps here, but didn't want to offend you) knew any way around this. That's it. That's all.
    It was a post to see if anyone had any insight into getting the product within a reasonable amount of time. (ie. asking for a disc, contacting a different department, ordering from another site... anything. It IS possible that someone on here... someone you don't know about... might have an answer for me.)
    And, if nobody had any insight, nobody had to post anything. Right?
    Now, leave me alone.

  • Thanks for the reply to my question regarding sound in iMovie and sending me the online links.  however the online links are impossible to play as they upload too slowly with the result that the playing keeps stopping waiting for the content to catch up

    Thanks for your reply to my question regarding sound in iMovie.  However I cannot follow the links you sent as they upload too slowly and therefore the instructional movie keeps stopping waiting for the content toload.  Surely theremust be a solution for this??
    Thanks in advance
    lolly

    Please continue posting in your original thread.
    With the amount of traffic on these forums it is impossible to chase around finding this.

  • Two Sessions Waiting for One Another Across DB Link

    Hi,
    Version: 9.2.0.8, patchset 8
    OS: Windows Server 2003
    Server: Itanium 2
    During our overnight ETL process last night, one of the stages which normally takes serveral minutes to run became stuck. The calling process in the DW database was showing as ACTIVE and the wait event was for "SQLnet message from DB Link". When looking at the session in the database where the changes are being collected from, the session was shown as INACTIVE and to be waiting for "SQLnet message from client".
    The process was stuck for 6 hours and until we managed to kill the job from the schedule so that the remainder of the ETL process could continue. There were no errors on either of the two servers (the DW and source DBs run on separate boxes). The network engineers reported 0 problems with the network at the fault time. There are no trace files or reported errors in the alert logs of either DBs.
    Has anyone seen this type of problem occuring before? Or can anyone suggest possible causes/ways to determine what the possible cause was?
    We have since re-run the offending stage and it completed within 5 minutes.
    Thanks in advance

    There was no answer from here or from Oracle. We use a different process now.

Maybe you are looking for