Issues with Action Wizart to remove security

Hi,
I am using action wizard in Adobe11 to remove security from group of files, but it asks for password for every file and also prompts to save the file for each file. In earlier versions I used to do this with batch processing and it used to ask the password only for the first file and assumed same password for remaining, this is not happening in Adobe 11. Any help of this is highly appriciated.
Thanks
Vineet Neema

Hello Maureen,
Thanks for posting, but I'm not sure I see if your question
relates to Acrobat.com
Are you using any of the Acrobat.com Services as any part of
your workflow?
Thanks!
Pete

Similar Messages

  • Issue with action 'Place' in CS3

    I have been having an issue with an action I made. The action is:
    {Set Background
    Set Layer Styles of current layer
    Image Size
    Canvas Size
    Place
    Move Current layer
    Save}
    My issue is when it come to 'place' if the image is larger than the window it will center to the window not the canvas.
    The details of 'Place' are:
    filename.jgp
    Center: center
    Translate: 0 inches, 0 inches
    I was wondering if there was anything in the action I should have added.
    Also, could someone explain why it does this?

    Thanks for the help. It worked, kinda...
    It was already checked so I unchecked>applied. Tested it. It didn't properly scale the placed image
    Went in checked it. Tested it. It worked like a charm.
    Restarted PS with it still checked, tested the action and I had the orginal issue.
    Checked my preferences and it was still checked.
    Unchecked>applied.
    Checked>applied -worked fine.
    I'm assuming this is an error in the program that it is not properly reading the preferences. Any ideas?
    Thanks!
    Ann

  • Issue with usb flash and removable hard drives in Lion. (also an install tip)

    Having an issue with my usb flash and removable hard drives.  I plug them in and Lion does not display all my files/folders, I take it out and plug it into my snow leopard machine and all the files/folders are there, does anyone have this issue?
    It does it on my macbook pro which was a snow leopard upgrade to Lion and it does it on my macbook which was a clean install of Lion via a bootable flash drive.
    The computers both work great in all other aspects, so there were no errors on installation. It's plain and simple, some files/folders are not showing up that are present on the drives and viewable on all other non-lion OS's mac and PC.
    Also a word on installs, I highly suggest doing a clean install (delete and reformat drive them install Lion vs a snow leopard ugrade) my machine that was a clean install (macbook) runs 50% faster and smoother than the upgraded one (macbook pro).

    Yes, you can use your backup disk drives in the manner you describe, but Apple provides conflicting information on the subject.
    From Mac Basics: Time Machine
    Time Machine can’t backup to an external drive that's connected to an AirPort Extreme, Time Capsule, or a drive formatted for Microsoft Windows ...
    From Time Machine doesn't back up to AirPort Extreme AirPort Disks
    Time Machine in Mac OS X v10.5 or later can be used to back up to many kinds of Mac OS Extended-formatted drives, but you cannot choose an AirPort Extreme 802.11n's AirPort Disk as a Time Machine backup volume.
    However, you can choose Time Capsule AirPort Disks or internal disks as a Time Machine backup volume.
    They have yet to resolve this discrepancy.
    All other available technical details regarding Time Machine's use seem to indicate that a USB HD connected to Time Capsule should meet Time Machine's requirements. For what it's worth I have been using an external HDD connected to the Time Capsule's USB port and it seems to function just fine.

  • Security issues with action commands....

    Hi
    I have a webapplication that under its context has two diffenent
    maps, one is admin and the other one is user.
    I use an ActionRouter and has actions like list-clients.do.
    The admin map is restricted area described in web.xml.
    You have to be in AdminRole to get access.
    My problem is that if I log in as user, I can "shoot" actions commands
    like list-clients.do from the user area and Servlet maps to the proper
    jsp that is in the admin map. When I then try isUserInRole and so on
    there is only a quetstionmark. If I run from admin area the isUserInRole
    knows who is logged in.
    I put in the list-clients.do in the url like: http://myplace.com/users/list-clients.do and servlet reply with jsp from
    admin area.
    Anybody know why not the restricted area declared in the web.xml file
    works during that condition, and how to solve this?
    Im working with Tomcat 4.1 and use SingleSignOn.
    Heres my web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <filter>
    <filter-name>loginfilter</filter-name>
    <filter-class>argus.web.util.LoginFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>loginfilter</filter-name>
    <url-pattern>/admin/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>loginfilter</filter-name>
    <url-pattern>/user/*</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>argus.web.servlet.ActionServlet</servlet-class>
    </servlet>
    <servlet>
    <servlet-name>setup</servlet-name>
    <servlet-class>argus.web.servlet.SetupServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>0</session-timeout>
    </session-config>
    <security-constraint>
    <display-name>ArgusAdmin</display-name>
    <web-resource-collection>
    <web-resource-name>AdminAdaptor</web-resource-name>
    <url-pattern>/admin/*</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>ArgusAdmin</role-name>
    </auth-constraint>
    </security-constraint>
    <security-constraint>
    <display-name>ArgusUser</display-name>
    <web-resource-collection>
    <web-resource-name>UserAdaptor</web-resource-name>
    <url-pattern>/user/*</url-pattern>
    <url-pattern>/index.htm</url-pattern>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>ArgusAdmin</role-name>
    <role-name>ArgusUser</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>/login.htm</form-login-page>
    <form-error-page>/loginError.htm</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>ArgusAdmin</role-name>
    </security-role>
    <security-role>
    <role-name>ArgusUser</role-name>
    </security-role>
    </web-app>
    Many Thanks
    Ben

    I found them in my firewall list on my Windows 8.1 Pro installation and posted a question on a forum as well, though I don't think it was here.  I don't believe anyone ever answered.
    It looks as though these are parts of the bundled virtual private networking clients.
    Note, for example, the "distributed by Microsoft as part of Windows 8.1" wording on this page:
    http://www.sonicwall.com/app/projects/file_downloader/document_lib.php?t=PG&id=605
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Issue with font extensions being removed/stripped

    We recently upgraded to 10.8.2. Our font files are housed on a server and since the upgrade, most of our fonts are viewing as executable files and we are unable to activate/use them.
    I've tried changing the extensions, copying them from an older machine running 10.5.8 from the server and then loading them to a machine running 10.8.2 with no luck. Has anyone else had this or a similar issue? Any thoughts?

    Hi Nitin,
    Thanks for the approach. However, this is an OOTB issue in CommerceReferenceStore module (was able to reproduce the same behavior in a OOTB CRS application as well) . The issue can occur not only when accessing a removed commeceitem but also during the checkout stages if user modifies the cart in a different session during checkout, the application would throw similar errors.
    Is there a way using which i can reload the order object (something like refreshOrder pipeline) whenever i see a similar error? I did not find any OOTB droplet that can reload the order object from the DB.
    Please suggest.
    Thanks,
    Tejas

  • Issue with logging out in adf security

    I have three pages. Login, error and welcome.
    The first page visible during runtime is login.
    I have username, password fields and login button in it.
    the action of login button is mapped to this :
    public String doLogin() {
            byte[] pw = getSPassword().getBytes();
            FacesContext ctx = FacesContext.getCurrentInstance();
            HttpServletRequest request =
                (HttpServletRequest)ctx.getExternalContext().getRequest();
            CallbackHandler handler =
                new SimpleCallbackHandler(getSUserName(), pw);
            try {
                Subject mySubject = Authentication.login(handler);
                ServletAuthentication.runAs(mySubject, request);
                ServletAuthentication.generateNewSessionID(request);
                String loginUrl =
                    "/adfAuthentication?success_url=/faces" + "/Welcome.jspx";
                HttpServletResponse response =
                    (HttpServletResponse)ctx.getExternalContext().getResponse();
                sendForward(request, response, loginUrl);
            } catch (FailedLoginException fle) {
                FacesMessage msg =
                    new FacesMessage(FacesMessage.SEVERITY_ERROR, "Incorrect Username or Password",
                                     "An incorrect Username or Password" +
                                     " was specified");
                ctx.addMessage(null, msg);
            } catch (LoginException le) {
                reportUnexpectedLoginError("LoginException", le);
            return null;
        }This takes me to welcome page.
    I have a golink control in this page.
    The destination of golink is:
    "#{securityContext.authenticated ? "/adfAuthentication?logout=true&end_url=/faces/Error.jspx"
    : "/adfAuthentication?success_url=/faces/Login.jspx"} "
    (I dont know what this el means. i believe it sets logout to false)
    It takes me to error page.
    I believe I should be logged out now. But when I press back in browser it takes me back to welcome page.
    I put an af:output text with value security.authenticated and it shows true.
    So created a servlet
    public class LogoutServlet extends HttpServlet {
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
        public void doGet(HttpServletRequest request,
                          HttpServletResponse response) throws ServletException,
                                                               IOException {
            request.getSession(true).invalidate();       
            response.sendRedirect("faces/Error.jspx");
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response) throws ServletException,
                                                                IOException {
            doGet(request, response);
    }registerd it in web.xml as url pattern logout.
    Set the destination of golink as logout.
    But still the same results.
    Where did i go wrong?
    the role of welcome.jspx is authenticated-role
    Edited by: josetuttu on Jul 7, 2011 2:17 AM

    Hi , your problem is arising when user presses the back button of the browser , web browser shows the page from its cache. If you want that
    on pressing the back button users should not view the previous pages you must stop web browser from caching the page to its local memory.
    It can be done by adding the following code in the jsp:root tag of jsf (.jspx) page.
      <jsp:scriptlet>
      // Set to expire far in the past.
          response.setDateHeader("Expires", 0);
      // Set standard HTTP/1.1 no-cache headers.
         response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
      // Set IE extended HTTP/1.1 no-cache headers (use addHeader).
         response.addHeader("Cache-Control", "post-check=0, pre-check=0");
      // Set standard HTTP/1.0 no-cache header.
         response.setHeader("Pragma", "no-cache");
    </jsp:scriptlet>Now when ever page is loaded the web browser will never cache the local copy of web pages and hence users will not be allowed to view previous pages when clicking back button
    on browser .
    Hope this helps.

  • Issue with Action Links

    Hi All,
    We have implemented the Action Links.
    Issue: A particular order number is present in 14 different organizations.
    when the order number and the Org Name is selected we are able to all the records.
    We have included the Action Link column to the above request, then we are only able to see 3 records, the other organization records are not able to view.
    SQL generated after including the Action Link column is
    select distinct T259660.SALES_ORDER_NUM as c1,
    T334186.BASE_ORG_NAME as c2,
    sum(case  when T265919.W_XACT_TYPE_CODE = 'Regular' and T262056.W_STATUS_CODE <> 'Cancelled' then T259660.NET_AMT * T259660.GLOBAL1_EXCHANGE_RATE else 0 end ) as c3
    from
    W_INT_ORG_DH T334186 /* Dim_W_INT_ORG_DH_Sales_Org */ ,
    W_SALES_ORDER_LINE_F T259660 /* Fact_W_SALES_ORDER_LINE_F */ ,
    W_STATUS_D T262056 /* Dim_W_STATUS_D_Order_Status */ ,
    W_XACT_TYPE_D T265919 /* Dim_W_XACT_TYPE_D_Sales_Ordlns */
    where  ( T259660.XACT_TYPE_WID = T265919.ROW_WID and T259660.ORDER_STATUS_WID = T262056.ROW_WID
    and T259660.SALES_ORDER_NUM = '1000004' and T259660.SALES_ORG_WID = T334186.ORG_WID
    and T259660.DELETE_FLG = 'N' and (T334186.ROW_WID in (0) or T334186.PRIMARY_FLG in ('Y'))
    and (T334186.ROW_WID in (0) or T334186.W_HIERARCHY_CLASS in ('NON-HRORG'))
    and (T334186.ROW_WID in (0) or T334186.SALES_ORG_FLG in ('Y')) )
    group by T259660.SALES_ORDER_NUM, T334186.ORG_WID, T334186.BASE_ORG_NAME
    order by c1, c2
    select concat(concat('<a href="', T623258.ORDER_HEADER_ACTION_LINK_URL), '"> Link to EBS Source Order</a>') as c1,
    T623258.HEADER_ID as c2
    from
    +(SELECT header_id+
    +,fnd_run_function.get_run_function_url+
    +(+
    CAST
    +(fnd_function.get_function_id ('ISC_ORDINF_DETAILS_PMV') AS NUMBER)+
    +,CAST (272 AS NUMBER)+
    +,CAST (53059 AS NUMBER)+
    +,CAST (0 AS NUMBER)+
    +, 'HeaderId='+
    +|| header_id+
    +|| '&pFunctionName=ISC_ORDINF_DETAILS_PMV&pMode=NO&pageFunctionName=ISC_ORDINF_DETAILS_PMV'+
    +,NULL) AS order_header_action_link_url+
    FROM oe_order_headers_all) T623258
    order by c2
    By executing these 2 generated queries we are able to see all the headers ids for a particular order same in both the queries.
    But even then the results are not shown in the Answers.
    Can any one have an idea how to fix it.
    Thanks in advance
    Regards
    Vishwanath

    For the action Links i have created a opaque view with the Query
    SELECT CAST(header_id as Varchar2(80)) as HEADER_ID
    +,fnd_run_function.get_run_function_url+
    +(+
    CAST
    +(fnd_function.get_function_id ('ISC_ORDINF_DETAILS_PMV') AS NUMBER)+
    +,CAST (valueof(NQ_SESSION.OLTP_EBS_RESP_APPL_ID) AS NUMBER)+
    +,CAST (valueof(NQ_SESSION.OLTP_EBS_RESP_ID) AS NUMBER)+
    +,CAST (valueof(NQ_SESSION.OLTP_EBS_SEC_GROUP_ID) AS NUMBER)+
    +, 'HeaderId='+
    +|| header_id+
    +|| '&pFunctionName=ISC_ORDINF_DETAILS_PMV&pMode=NO&pageFunctionName=ISC_ORDINF_DETAILS_PMV'+
    +,NULL) AS ORDER_HEADER_ACTION_LINK_URL+
    FROM oe_order_headers_all
    When we created a request in the answers using the above opaque view, it is taking lot of time around 12 min.
    when i executed the query returned from session log in the database it took less than a second.
    not sure what causing the performance issue.
    Can any one help me out.
    Regards
    Vishwanath.

  • Issue with Action pane sap bpc 7.5 MS

    Hello All,
    Got a issue ,  when clicking the dimension to select members in action pane it shows blank box .
    Is there any XLS setting that needs to be in place OR any other thing needs to be fixed??
    It happens only with one id.
    Kindly help on this.
    Thanks
    Venkkat

    Hi Venkat,
    if your sp is 3 or lower then this is an old issue and you have to upgrade to sp4 or higher, if it occurs on web see please this note 1746878 - BPC MS: Action Pane Disappears from BPC Web Interface otherwise plese add you sp version.
    Regards
         Roberto

  • Issue with variable, need to remove characters

    Hi Team,
    i have one problem regarding the variable.
    i have some variable for example 'MALT011000012345MTLCAST001SMT84'.
    in the above variable i need to replace the value of M with say 5, value of A with 9 and so on .
    like i want to repalce each character with number field.
    can you please share your ideas that how can i resolve this issue in PL/SQL?

    Hi,
    Here's one way:
    str := TRANSLATE ( str
                     , 'MA'
                     , '59'
                     );where str is any string, such as 'MALT011000012345MTLCAST001SMT84'.
    The 2nd and 3rd arguments to TRANSLATE can be any length (1 or more); I just included the 2 character pairs that you mentioned. The n-th character of the 2nd argument will be replaced with the n-th character of the 3rd argument.
    I hope this answers your question.
    If not, please post a little sample data (that is, strings that contain 'M''s, 'A's, and/or the other characters you need to replace) and what you want all those strings turned into. Post the sample data as CREATE TABLE and INSERT statements so we can test them all in one query.

  • Issue with add/re-add/remove from a group

    Hi. So i was in a group of friend when they removed me from the call and the group because my music was bleeding into the mic (as i didn't pay attention to them calling me to mute my mic). The problem arise when another tried to add me back in (remove and re-add me repeatedly while i either mess with the option or restart Skype completely), apparently the group recognized that i'm back in but on my end Skype doesn't budge at all. It never gives me any notification or anything on that. The screen of the group still state that i'm removed from it. Tried everything from changing the option to reboot laptop/skype. Anything to help with this? I had the latest Skype in Windows 7 Home Edititon 

     Bump

  • Anybody else have an issue with actions disappearing and having to reinstall ALL of them?

    Every few weeks, my actions disappear from Photoshop and I have to reinstall ALL of them? Anybody else have this issue?

    I have occasionally lost data connectivity when I leave my house and have to flip airplane mode on then off to restore it.  Otherwise I'm not near large crowds to see if I have any connectivity issues.
    Do you know if you have the Portico update?  Go to Settings > About and tap on more info.  See what the OS version is.  Portico is 8.0.10211.204.
    Just want to see if its a build issue and may be non-Portico devices are having reception problems when it come to crowd density....
    Also give Nokia a call, they would be interested in this issue and would tell you if its definitely a phone issue or OS.  You can also post to their community and see if anyone else has some answers, http://discussions.nokia.com/t5/Nokia-Lumia/bd-p/Nokia_with_Windows_Phone

  • Speed issue with Action Listener

    I have a JCombobox that has an action listener that waits for an action to be performed.
    When I update the Combobox list by using removeAllItems() and then loop additem on an array to rebuild it, It take 14 seconds to rebuild the list.
    When I remove my action listener, it does it instantly. I tried setEnable(false) on my combobox to disable the action listener temporarily while I update the combobox, but it doesn't appear to work.
    Looking for a way to disable my listener temporarily to increase performance when I update it.
    Thanks in advance.

    Nevermind. got it.

  • Facing issue with Action Menu

    Hi all,
    I've created an Action Menu to open a link on a new page, however it is not working. I changed the URL to call some external website (Ex. www.google.com) but even so it doesn't do anything. Is there any setup that can prevent links from Action Menu (Table component) to be executed? Is there any bug related to this? I've tried the same on a different page, enabling exactly the same URL and on the other page, it works.
    I'd appreciate any help or comment.
    Thanks,
    Eduardo

    Hi Dan,
    I solved the issue by including a "GROUP BY" statement in my EQL Query. This really seems to be a bug since my query doesn't need a Group By. I set the Group By for the record ID and I'm testing whether it caused any side effect.
    Thanks and Regards,
    Eduardo

  • Issue with Action in Transaction

    Hi Experts
    I have Created new action and assigned it to lead., this action is to create work flow ( WS10001011 ) for opportunities from lead if the user status is equal to "Accepted by sales". But when ever lead status is changing to "Accepted by sales". We have observed that no action is being performed and when i clicked on action push button in pop-up i am getting this message "There are no actions in the worklist"
    Can you please assist what need to be modified.
    Thanks in advance
    Vinay

    SAP supplies standard workflow from Lead to Opportunity which does not use actions.
    It uses events which are triggered based on user status.
    You might like to do it that way and see if it works.
    Best regards,
    Koshal

  • Issue with Action

    For an action "edit non employee", after entering new row for IT1, if hit Enter before clicking save button, IT1 screen jumps to the last row of already created data and the new values are lost. For now work around is not to hit enter but save new values by directly clicking the Save Button. It is hard to always remember. 
    Thanks!

    Hi,
    check the operation what you stated for IT 0001 whether it is INS / COP / MOD for your action type.
    regards.

Maybe you are looking for