First time user--help for first task

How do I take 2 pages from a PDF file sent to me, isolate them so I can copy/edit those two pages, and return those 2 pages to sender?

Hi there,
My recommendation is for you to follow these steps:
1) Log into createpdf.acrobat.com and select "Export from PDF" on the right pane.
2) Select your PDF file, select docx and click Export to export your file to *.docx.
3) Once the export operation is complete, Download your converted file locally.
4) Open the downloaded file using MS Word and make your necessary Edits.
5) Save your edited file.
6) In createpdf.acrobat.com, click Convert to PDF on the right pane.
7) Select your edited docx file and convert the file to PDF.
8) Download the file locally and send it to the appropriate sender using email or using Adobe's SendNow service (https://www.acrobat.com/sendnow/en/home.html).
I hope this helps.
Laura.

Similar Messages

  • Search help for general task list

    Hi,
    I have problem when searching for general task list via classification (in service order, extras>task list selection>direct entry). When I doubleclick a task list, group counter is not copied back in first selection screen; only group has copied. How can I solve this problem?
    Regards,
    Robert

    hi Ashok,
    I've checked classification data for general task list, it's ok. but, I still don't have group counter copied. In other tabs of search help is everything ok.
    - Robert

  • GP API - remove user dynamically for a task..

    I am having dynamic looping for an action, users assigned in every level.
    I am able to add user dynamically for an action using:
    rtm1.addRuntimeDefinedUserToRole(prInstance1, Next_Action, userJames, userContext1);
    Change user does not work as it will work only for running actions or tasks, for pending one it will not
    rtm.changeTaskProcessor(processInstanceID, activityInstanceID, currentProcessor, newProcessor);
    remove user is not working for me? suggest me how to use this code?
    IGPProcessRoleInstance processRoleInstance=executionContext.getProcessRoleInstance();
    processRoleInstance.removeUser(UMFactory.getUserFactory().getUserByLogonID(UserId));

    Hi
    I tried using the following for my process where the action is yet to happen
    I am calling the BG CO before my action. I need to remove the previous user.
    rtm1.removeTaskProcessor(prInstance1.getID(),activityInstanceID, userContext1);
    rtm.changeTaskProcessor(processInstanceID, activityInstanceID, currentProcessor, newProcessor);
    processRoleInstance.removeUser(UMFactory.getUserFactory().getUserByLogonID(UserId));
    but nothing is working.
    any idea when we can use them? I think changeTaskProcessor will not work for pending tasks.
    I am able to get the activityInstanceID from NWA -> GP Processes, but my GP Process is having dynamic loop where the task will generate depending on levels. How can we get the activityInstanceID of the next task/action?

  • Essbase Gurus this is the time to help for this scenario in securityfilters

    Hi Gurus,
    I have one scenario in ASO(11v) ,I have to create security filters for two users
    for eg:
    GEO Account  30000
    wen we drill down
    india turnover 10000
    paris turnover 100000
    UK turnover noacess
    I created "GEO","india","paris"
    this security filter is working fine for one user
    but i need second filter like below
    in total sumof aggregation it doesnt show that is diffrent for both users (UK turnoover dont show in upper level)
    Actually UK have the measure but we have to restrict that measure for some users
    like below
    for another user
    GEO Account 20000
    wen we drill down
    india turnover 10000
    paris turnover 100000
    UK turnover noacess
    i m struggling here I tried with different options but no use ,my client wnt this requirement ,plz ur help gr8forly Appriciated
    Thanks
    Edited by: user98631 on Dec 18, 2009 4:31 AM

    Its amazing how the same off the wall question pops up around the same time. There is another thread about this. A security filter alone will not get you want you want.
    The best solution I can offer is to create multiple rollups that give you what you want, and use metadata security to restrict the users from seeing the geo member. Have the filter only allow them to see their rollup.
    I guess in an out of the box solutions would be to have one cube with all the data then multiple cubes partitioned to the soruce cube with the data for specific rollups. Allow the users to only see the cube that has the rollup they need.

  • Help for javac task in ant?

    Here I have 5+ folders, ervery has many java source files. And all the java source files in these folders is the same package name, also there may have same file name in different folder. And now I want the javac to compile these files and save the classes file to each own folder.
    folder--fd1
    | |--a1.java (package org.apache.jsp)
    | |--b1.java (package org.apache.jsp)
    | |--c1.java (package org.apache.jsp)
    |---fd2
    | |--a1.java (same file name as in fd1) (package org.apache.jsp)
    | |--b2.java (package org.apache.jsp)
    | |--c2.java (package org.apache.jsp)
    |--
    foler--fd1
    | |--a1.java
    | |--a1.class (also the package is org.apache.jsp, but it store in here.)
    | |--b1.java
    | |--b1.class
    | |--c1.java
    | |--c1.class
    |---fd2
    | |--a1.java (same file name as in fd1)
    | |--a1.class
    | |--b2.java
    | |--b2.class
    | |--c2.java
    | |--c2.class
    |--
    And now I can complete the compile work through 2 steps in up condition, first to compile fd1 folder, and then to compile fd2 folder. For if I just compile with folder(root folder), it will return duplicate class error. How could I do with this?
    below is my javac config in build.xml:
    <target name="compile" >
    <path id="javac.classpath">
    <fileset dir="${tomcat.home}\common\lib">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${tomcat.home}\server\lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${basedir}\classes" />
    <fileset dir="${basedir}\web\WEB-INF\lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <javac failonerror="true" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">               
    <src path="${basedir}/folder/fd1"/>                         
    </javac>          
    <javac failonerror="false" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">               
    <src path="${basedir}/folder/fd1"/>                         
    </javac>
    </target>

    But the problem is that this project may have same
    e files in 5 folders, and another may more than 5,
    like 20+, then also step to compile it, I think it can
    not imagine.As I said, the basic problem is that the class path has to be different for each folder.
    So what I want is just compile once, and is there
    e any solution to escape the duplicate class error.
    And the jikes compile you refered, I don't know how
    w to call this task, for jikes is just a binary
    file.(how to set parameter in <javac/> in build.xml
    used by ant)
    Jikes is a compiler from IBM. If you look in the ant docs it tells you how to set it up.

  • Time Capsule help for a complete noob to MacBook

    Hi everyone
    This is been killing me for about 2 months.  Currently living in an annex down the end of my girlfriends fathers garden.  The wifi doesn't reach so I got a Time Capsule so I could use it as a router.
    We've got a cable and it's run from the Time Capsule, down the garden, into the house and plugged into router in the house.
    That's where I'm now stuck.  I've messed about with it and now my Macbook AirPort won't even recognise my Time Capsule.
    This really needs to be in moron terms as I'm clueless.  I've spent all this money and can't get it to do what I wanted it to do.
    Any help is appreciated, so thanks in advance.

    Hi LD.
    Thanks for the reply.  My MacBook won't even recognise the Time Capsule, I've messed about with the netowrk settings too much I think. 
    I'm really really stuck.

  • Help for javac task in ant? (urgent!!!!)

    Here I have 5+ folders, ervery has many java source files. And all the java source files in these folders is the same package name, also there may have same file name in different folder. And now I want the javac to compile these files and save the classes file to each own folder.
    folder--fd1
    | |--a1.java (package org.apache.jsp)
    | |--b1.java (package org.apache.jsp)
    | |--c1.java (package org.apache.jsp)
    |---fd2
    | |--a1.java (same file name as in fd1) (package org.apache.jsp)
    | |--b2.java (package org.apache.jsp)
    | |--c2.java (package org.apache.jsp)
    |--
    foler--fd1
    | |--a1.java
    | |--a1.class (also the package is org.apache.jsp, but it store in here.)
    | |--b1.java
    | |--b1.class
    | |--c1.java
    | |--c1.class
    |---fd2
    | |--a1.java (same file name as in fd1)
    | |--a1.class
    | |--b2.java
    | |--b2.class
    | |--c2.java
    | |--c2.class
    |--
    And now I can complete the compile work through 2 steps in up condition, first to compile fd1 folder, and then to compile fd2 folder. For if I just compile with folder(root folder), it will return duplicate class error. How could I do with this?
    below is my javac config in build.xml:
    <target name="compile" >
    <path id="javac.classpath">
    <fileset dir="${tomcat.home}\common\lib">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${tomcat.home}\server\lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${basedir}\classes" />
    <fileset dir="${basedir}\web\WEB-INF\lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <javac failonerror="true" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">
    <src path="${basedir}/folder/fd1"/>
    </javac>
    <javac failonerror="false" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">
    <src path="${basedir}/folder/fd1"/>
    </javac>
    </target>

    To compile recursively you'll need of these for each directory:
    <target name="compilef1" depends="init">
    <javac srcdir="f1/" destdir="f1/" debug="true" deprecation="true"/>
    </target>
    But, you'll need to set up the build tree correctly before it'll work:
    f1/org/apache/jsp defines the org.apache.jsp package in directory f1, so compiling in f1/ will correctly find other related files.
    Regards,
    Bhaveet

  • Planned Task - Problems with user Rights for recurring tasks

    Hi there,
    I'm currently trying to configure a database replication tool from a 3rd party supplier to work as planned task on Windows Server 2012 R2 (Datacenter).
    There's a very strange problem, however: It does work perfect, if I configure the task to occur only once. It does not work, if I check the "Run that task each XXX hours/days"-Checkbox when configuring the Trigger.
    i.E.: works, when I have a trigger for each hour, doen't work if I configure one trigger to reoccur each hour.
    I tried to pinpoint that problem down, and I found that the task cannot access it's logfile when it's started "reoccurring" (It probably would not make sense to post a screenshot here, since I'm working with the german version of the server). It
    also does not work if I configure a specific trigger to end the task after XXX hours/days/etc. of operation.
    To form a more specific question: are there differences in the rights used to start a process, if it is scheduled to be started each our, by configuring a reoccurring trigger?
    Thank's in Advance,
    Alex

    Hi ALex,
    Would you please post more detailed information about Planned and recurring tasks?
    If you means creating task in task scheduler, in general, the triggers shouldn't frustrate the execution of the task, and we usually need to check the security option in the task.
    To troubleshoot the issue in task scheduler, please enable the task history: Open an elevated Task Scheduler (ie. right-click on the Task Scheduler icon and choose Run as administrator)->In the Actions pane, click Enable All Tasks History.
    If you means creating recurring tasks on project server, I recommend you can post in the dedicated Forum for a better response:
    https://social.technet.microsoft.com/Forums/en-US/home?category=project
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • Palm O/S PDA long time user Looking for Replacemen​t PDA

    Like many others, I still like my Palm PDA M515 (third model I've owned), but it has lost wired sync capability.  I want to stay with a PDA.  So far I have not found anything out there with the combined functionality and ease of use.  Palm has abandoned us (maybe the HP purchase will help since they once had PDAs but not with the nicer Palm O/S).  What is recommended that keeps the nice Palm Desktop or better and the data can be transferred?  If I have to find a "new"/refurbished Palm PDA, what is the most reliable and best option (email / web not necessary but OK).  Thanks for any recommendations.

    I think unless you are buying used the PDA is no longer around new except for the HP that uses MS OS.   Once in awhile there is an advert for a NOS TX but that seems to be also getting scarce.

  • F4 help for fields in maintenance view resp. generated maintenance screen

    Hello,
    I’m new to ABAP and I have to deal with the following requirement:
    I have a maintenance view V1 what from a maintenance screen was generated automatically by the maintenance screen generator.
    Now I have to add a search help for one field F1 of the maintenance screen. The values for the search help of F1 depend on a specific value of a second field F2 of the maintenance screen. So I need value of F2 as import parameter for f4-help. F1 and F2 come from different tables.
    As I’m new to ABAP I have several questions or thoughts:
    - I’m not able to easily add a search help to F1 because I’m using the maintenance view V1 and that’s why it is not possible to assign the import parameter F2 to the search help – right?
    - In general, its not that easy to add search help to views than tables or structures - why?
    - I’m not able to just modify the generated objects because further automatic generation of the maintenance screen will delete it – right?
    - The generated function module provides user includes to add user specific coding. Is there any chance to add a f4-help to field F1 and assign value of F2 to that search help as import parameter with coding in user include?
    - any other ideas? I did not expect this topic to be so complicated as the requirement to change f4-help in a maintenance view resp. screen isn't very special.
    can anyone help me?
    Thank You!
    Regards
    Fabian

    Hi Fabian,
    Phew! Thats quite a few questions in one... I'll try to answer them to best of my knowledge..
    You can definitely have an external Search Help for a field of a Maintenance View, by calling it directly in the Screen Action Flow, using a PROCESS ON VALUE-REQUEST (like PAI or PBO). While defining such custom code on a generated screen, always make sure you do not write the coding inside the generated includes (SVIM* or <FUGR>TOP, <FUGR>DAT, etc..). Define new includes, or use those which are not generated by View Maintenance. This way, even if the dialogue is regenerated, your custom code will not vanish.
    This will answer your questions 1 and 2 generally, and your question 3 also.
    A Maintenance View, is something where values are read and populated purely at run-time. It does not have an Entry Help or such options, as it depends on the underlying tables. I hope this further helps with questions 1 and 2.
    Coming to your question 4 and 5, which form the main question - pre-filling value of F2 while calling search-help for F1 - yes, it is possible. On the view maintenance screen, there are standard structure variables (like EXTRACT TOTAL etc), which will give you the field values of the current record. But, it can no way assure that when you call the help for F1, the field F2 is already filled!
    For this, I can suggest that you programmatically implement a check to see if F2 value is filled, and read if it is. Or, if it is not filled, maybe you can shoot a Pop-up for F2, take the value at run-time, find help for F1 and get value, and also fill the F2 value (from your implementation) into the currect screen F2 value! (Phew...it is complex...)
    But am sorry, there is no other way, wherein you can gaurentee that F2 value is pre-filled always, when you can help for F1. (You could try making F2 as obligatory on screen, but it still doesnt necessarily solve this purpose..!).
    Hope it helps. Get back to me by e-mail if you need more help, or simple post a reply.
    Regards,
    Rekha

  • How to programmatically add user comment using human task data control

    Hi,
    We create the task form by using “create Task flow based on Human task”. I need to programmatically create and insert the user comment for the task. I know I need to create and insert a new element to the userCommentIterator that linked to the human task data control. But I could not get it work or find any related detail sample coding. Please help.
    Thanks a lot,
    Helen

    post it in soa suite forum
    SOA Suite
    or bpel forum
    BPEL
    to get.. quick reply.

  • User exit for item level  plant checking for va01

    Hi ,
      I have got many user exits for va01 .I have to check the plant at item level in va01 . Kindly give name of user exit for this task as im not able to find the right one.
    Thanks .

    Hi,
    Please check through path
    S&D>>>System modification>>>Userexits.
    here you will find various user exits available for SD module.
    Regards
    kapil

  • Online help for numbers.

    Is it possible to download the online user help for numbers on to my Ipad so I have help when not connected to the internet

    Hi, Feroxjock,
    The good news is that the function help is always avalable within the app.
    But no, there is no offline help at the moment.
    Let them know what you think.
    http://www.apple.com/feedback/numbers_ios.html
    Quinn

  • Filter -Different texts in left and right section in user help ( F4 )

    Hi Friends,
    When I try to filter values in Analyzer, different texts are shown in user help for selectable (left window section) and selected (right window section).
    In leftsection texts are shown as defined eg, text  short  , but sfter selecting the value, on the right section text long is displayed.
    Example:
    If a characteristic Z_IO1 with key 1234,
    text short T1
    mid.text     T123
    text long    T123456
    Now I try to filter:
    selectable value is shown as
    1234 T1 (setting key and text short)
    and after moving it to the right side with blue arrow it changes to
    1234 T123456 (same settings) if text long doesn't exist text mid. is shown.
    Did smomeone face this Issue or has any idea? Then let me know, please.
    And something different is strange : When I try to restrict in BEx Query Designer, system works as expected,
    display in left and right section of filter window don't differ.
    Thanks in advance for your input.
    Best Regards
    Joe

    Hi Venkat
    Thanks for reply. My problem isn't filter value selection controlled by rea mode, it's just the display of the filter value texts (descriptions) in the F$ window for selected items. For me it seems, that it is not to change, default is set. I.e. the longest text available is displayed (according to property in RSD1) without any dependence on required texts (short, medium, ling), as mentioned in my example.
    Regards
    Joe

  • Opening premier elements for first time. Been "gathering user info" for 15 minutes...what to do?

    Opening premier elements for first time. Been "gathering user info" for 15 minutes...what to do? Previously hit "organize", ran for 25 min till hit 100%, then "had to close"?

    Unfortunately, there's not enough info listed to give you an effective answer.
    Can you give more detailed system spec's.  There are a lot of differences in RAM, & Hard Drive Technologies.  Is your 2TB a single hard drive, or multiple drives in RAID?  While a single 2TB drive is nice for the storage capacity, they also sacrifice some performance to reach that capacity... What speed is the RAM, & I'm assuming it's properly opperating in Dual Channel mode (watch your POST screen to be sure).  Which Core i7 CPU are you running, & what Operating System are you running.   Finally, bring up your task manager, & see what processes are using CPU cycles.   Also, are you starting up PrE8 through the default shortcut which uses the Welcome screen?
    A quick guess is that Auto Analyzer & the Welcome screen are behind your troubles, but can't be sure till more info is available.
    There is a current thread about Auto Analyzer, & I've posted a way to bypass the Welcome screen in several threads. 
    See my post in this thread to bypass the Welcome screen http://forums.adobe.com/thread/516524 (2nd post in thread)
    Message was edited by: chaosdsmFL -  added link

Maybe you are looking for

  • SD document line items Vs FICA accounting document line items

    Hello All, What is the interface we use in SAP,  between the SD and FICA which will determine line items in FICA document with regard to SD line items. SD : How we do configuration or mapping between sd sales order and billing document to determine b

  • Change Purchase Order

    Hi, Is it possible to change a purchase order in SRM with ABAP? Is there any function to do it? Regards, JPN

  • How to pass the check  'calculate Tax Automatically' in IDOC

    Hi, I need mark the check box in the 'calculate Tax Automatically' in the IDOC. The IDOC will then go to BDC session 'FB01' to post. Which program I should to make the modification and what IDOC structure has this XMWST field? Any help is appreciated

  • Error while creating split delivery

    Hi I am getting following error while creating delivery split " Item 000002: delivery split due to conflicting header data (Function Y2: Partner Number: 5100001701 <-> 5100001154) " Please suggest. Regards Kalpesh

  • Is there a tutorial for layers for dummies

    I have been messing with ps for a long time but avoiding anything to do with layers...I guess it is time to learn...Is there an easy way to learn layers  ie making a layer, saving a layer, editing layers ...in my advancing years we have to go slow..S