Process version filter request

I would like to suggest that a filter for process version be added, either in the metadata filter or as an option for creating smart collections

Yes. And now you point that out I see a "Previous Process Version" option under catalog in the left sidebar.

Similar Messages

  • Applying presets causes filter settings to get corrupted if process version updated

    I have an ongoing problem with Lightroom 5.7 including earlier versions.  The problem occurs when editing photos which use previous process versions (ie, 2010).  My presets all have the Current Process version checked (as they should).  Whenever I apply any preset to a photo, the settings for existing filters get corrupted (reset to 0).  This includes my Graduated Filter settings, Adjustment Brush settings and Radial Filter settings.  Those filters and their masks remain on the photo but their parameters have all been set to zero.  I keep falling into this trap since it's natural to use my presets when making updates to photos.  Often I don't realize this occurred until it's too late. 
    As a work-around (inconvenient) I can first manually update to the current process by right-clicking the photo and saying Settings/Update to Current Process (2012).  Or by clicking the Lightening Bolt button in the upper right corner.  But this must be done prior to applying any presets and I typically for get as my database has tens of thousands of pics. Even a preset with just the Process Version set will cause the filter settings to be corrupted.  I'm not interested in applying a batch or Quick Develop process to all at once since I need to inspect each one as the process is updated.  It would be great if this could be fixed in a maintenance release since it keeps biting me.  I think it's important that this be fixed in LR 6.0 also.  No doubt it's messed up many user's photos without them realizing it.  Does anyone know a work-around so Presets can be used?
    System: Win7 pro 64 (current), 4.2 GHz i7, 12GB, Lightroom 5.7.

    In my opinion: not a good idea to convert old photos en-batch.
    Recommend: convert (hand-selected photos) one at a time, or just use PV2012 on new photos.
    There are more than one reason:
    * As you know, process conversion yields very different results (if photo has been substantially edited).
    * It takes some time to polish your PV2012 editing skills.
    * Often when you are comparing PV2012 results to previous PV2010 results (which you've become familiar with, and like...), you may interpret differences in a more negative light, than if you were using PV2012 without comparing to a previous PV2010 version.
    This last one can not be over-stated. Numerous times I have converted and been disappointed, at least initially. Recovered highlights can seem like loss of contrast. Detail in shadows can be distracting after initial conversion, until you step back for a while, then re-look at it...
    Also, the process version itself (results I mean) takes some getting used to (even when not comparing to a previous legacy-pv edit). e.g. if you've become attached to the over-saturated shadows in previous process version, the shadows seem under-saturated in PV2012, etc...
    Rob

  • Problem in a filter request wrapper

    Hi all:
    I want to implement a filter that process the servlet request, then I was implement a filter and a class that extend the HttpServletRequestWrapper class. The problem is that when I class the doFilter method with my new class the server throw java.langClassCastException.
    I don't know if I'm doing something wrong because there's a lot of references and examples to wrap the response but not so many to wrap the request.
    I simplify the code to test what's the problem and this is my wrapper class and the relevant servlet code.
    // Wrapper class public class CompressionServletRequestWrapper extends HttpServletRequestWrapper {
    public CompressionServletRequestWrapper(HttpServletRequest request) throws IOException{ super(request); }
    // Filter servlet CompressionServletRequestWrapper wrappedRequest =null;
    boolean entradaComprimida=false; wrappedRequest=new CompressionServletRequestWrapper( httpRequest);
    chain.doFilter(wrappedRequest, response);
    I'm using Weblogic server 7.0 SP2
    Best Regards
    Miguel Angel

    Thank you for your response.
    This isn't my problem, before create the wrapper class I do a cast from ServletRequest:
    HttpServletRequest httpRequest=(HttpServletRequest) request;
    wrappedRequest=new CompressionServletRequestWrapper( httpRequest);
    chain.doFilter(wrappedRequest, response);
    And the exception is related with the wrapper class, it isn't with the ServletRequest. This is the expception:
    java.lang.ClassCastException: com.logicFactory.ejemplo.filter.CompressionServletRequestWrapper
    at weblogic.webservice.server.servlet.WebServiceServlet.getWebService(WebServiceServlet.java:187)
    at weblogic.webservice.server.servlet.ServletBase.doGet(ServletBase.java:91)
    at weblogic.webservice.server.servlet.WebServiceServlet.doGet(WebServiceServlet.java:224)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:401)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at com.logicFactory.ejemplo.filter.GZIPFilter.doFilter(GZIPFilter.java:37)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:27)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:5451)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServiceManager.java:780)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3105)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2588)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)

  • Filter request wrapper ClassCastException

              Hi all:
              I want to implement a filter that process the servlet request, then I was implement
              a filter and a class that extend the HttpServletRequestWrapper class. The problem
              is that when I class the doFilter method with my new class the server throw java.langClassCastException.
              I don't know if I'm doing something wrong because there's a lot of references
              and examples to wrap the response but not so many to wrap the request.
              I simplify the code to test what's the problem and this is my wrapper class and
              the relevant servlet code.
              // Wrapper class
              public class CompressionServletRequestWrapper extends HttpServletRequestWrapper
              public CompressionServletRequestWrapper(HttpServletRequest request) throws
              IOException{
              super(request);
              // Filter servlet
              CompressionServletRequestWrapper wrappedRequest =null;
              boolean entradaComprimida=false;
              wrappedRequest=new CompressionServletRequestWrapper( httpRequest);
              chain.doFilter(wrappedRequest, response);
              Best Regards
              Miguel Angel
              

    I bet your consumer is a JSP, eh? I hear the wrappers work going to a
              Servlet but not to a JSP (that gets turned into a Servlet when compiled...).
              I tried a sample I found for the Response wrapper from a compression filter
              This looks like it will do what you want to do....
              http://www.orionserver.com/tutorials/filters/GZIPFilter.html
              I want to make a filter that allows me to set/modify a Request Header (not a
              Request Attribute nor a Response Header) and ran into the same issue, lots
              of people saying "Use the HttpServletRequestWrapper" and "look at the
              specs"; but no one with a code sample that actually WORKS!!!
              Doris Chen from Sun just sent me this link to one of her code camps:
              http://developer.java.sun.com/developer/onlineTraining/webcasts/35plus/dchen1/dchen1.html
              and suggests Mary Hall's book "More Servlets and JavaServer Pages" (and the
              filters section in Servlets2.3 spec too - figures...)
              I haven't checked out the code camp nor the book yet. Post back if you
              figure this out.
              Thanks,
              Michael J. Geiser
              "Miguel Ángel" <[email protected]> wrote in message
              news:[email protected]...
              Hi all:
              I want to implement a filter that process the servlet request, then I was
              implement
              a filter and a class that extend the HttpServletRequestWrapper class. The
              problem
              is that when I class the doFilter method with my new class the server throw
              java.langClassCastException.
              I don't know if I'm doing something wrong because there's a lot of
              references
              and examples to wrap the response but not so many to wrap the request.
              I simplify the code to test what's the problem and this is my wrapper class
              and
              the relevant servlet code.
              // Wrapper class
              public class CompressionServletRequestWrapper extends
              HttpServletRequestWrapper
              public CompressionServletRequestWrapper(HttpServletRequest request)
              throws
              IOException{
              super(request);
              // Filter servlet
              CompressionServletRequestWrapper wrappedRequest =null;
              boolean entradaComprimida=false;
              wrappedRequest=new CompressionServletRequestWrapper( httpRequest);
              chain.doFilter(wrappedRequest, response);
              Best Regards
              Miguel Angel
              

  • BPEL Process Manager caches requests

    Hi,
    i recently downloaded Oracle BPEL Process Manager 10.1.2 bundled with JDeveloper.
    I created a BPEL process which invokes an external web service. The result of the web service invocation is transformed with an stylesheet using the transform activity and resend to another web service. After i deployed the process, everything works fine.
    But now i face a cache problem: everytime i change the stylesheet in the transform activity and redeploy the whole bpel process to the running BPEL PM Server, the change in the stylesheet is not reflected in the 2nd version of the BPEL process. The requests send after the transform activity are the same as in the 1st deployment of the process. Restarting the BPEL PM Server helps recognizing the change in the stylesheet and a appropriate request is send now.
    I can see the new stylesheet after redeployment in the .jar file located in the deploy folder. I also see it in the temp directory of my domain.
    It seems that the BPEL PM Server is caching somehow the stylesheet used in the 1st deployment and does not recognize changes in the stylesheet afterwards. Can i disable this caching? Or do i have to restart the server each time i change the stylesheet for the transform activity?
    Thanks in advance
    Pete

    Maybe there is some caching property which can be disabled?
    I didn´t find any hints on the forum and currently i always create a new stylesheet (with a new name), copy the whole content from the old stylesheet and assign the new stylesheet to the transform activity before redeployment, which is a very poor solution but still faster than relaunching the server...

  • Tether & Develop Settings in LR3 always get the 'Update Process Version'

    I am using tether with develop settings in LR3. I keep getting the 'Update Process Version' and it won't apply the filter unless I click the (!). It does this with newly created presets. Please help.

    awimaging wrote:
     bit of a waste of £78!
    Erm, 2 words... free trial? 
    Anyway, let's get you sorted out.  Are you the same hania on the POTN forums, or do you just have the same problem?
    First things first, when you mention repairing permissions, I guess you're a Mac user.
    First, hold down Opt while starting LR and see if you can start a clean catalog ok.  That'll determine whether it's catalog specific.
    Then go to Macintosh HD / Users / [your username] / Library / Preferences /  and move or delete any com.adobe.lightroom*.plist files.
    And while you're there, I'd also go to Macintosh HD / Users / [your  username] / Library / Application Support / Adobe / Lightroom / and move  that Lightroom folder somewhere else for the moment.
    Then see if it works.  Could be a few things - most likely are a problem with the catalog, corrupted preferences file, or a preset that it doesn't like.  We can exclude those quite easily using the above.

  • Update to process version 2010 & smart collection "has adjustments"

    Buying the new Lightroom 3 version ofcourse I wanted to profit of the new process version. So I selected all images I had "not adjusted" before and selected Update to Process version 2010. This works great.
    However I now have one problem.
    I had and have a Smart collection which helps me in my workflow to find all images that have not been touched, so have no adjustments.
    This Smart collection has become worthless because of the update to process version 2010 all images have been adjusted.
    Ok, this is correct and yet I miss my ability to select images which I have not adjusted.
    Once I have set the default process version to 2010 all new images are correctly shown.
    Question: how can I select all those images which have only the process version updated, but have no further adjustments?

    Changing the process to version 2010 is considered as an adjustment; it will appear in the photo's history in the same way as any other development adjustment. The smart filter condition "Has Adjustments" only has a true or false setting so you can't distinguish the process version adjustment from any other. Instead of using this method to spot the photos I need to work on, I find that I have more control over my workflow by using keywords such as "review", "develop", "print"; you can make these keywords not exportable so that they are not part of the keyword list in exported photos.
    Interestingly, when one or more photos are selected in the  film strip and the reset button is clicked in develop mode the photo  will revert back to its original state, the "Has Adjustments" condition  will become false, but the process version will remain at 2010.
    If you have a backup of your catalog that precedes the step where you updated the process version of all photos, open this backup, add a keyword of your choice to all the photos that have not been touched, then apply the process version change. You can then change your smart catalog to use this keyword as opposed to the "Has Adjustment" condition and remove the keyword you have set on photos that have not been touched as soon as you are done editing them. IMPORTANT: Any changes you have made following the date and time of the backup will be lost.
    If you don't have a backup to go to, you will have to manually identify which photos, which from your point of view, have not been touched.
    Some ideas:
    If you did not make other edits following the change of the process version, and have not made other edits on that date, you could built a smart collection based on the 'Edit Date" and then reset the develop settings of all the photos in that collection.
    Another possible condition is a "Capture Date" range where you know photos haven't been touched yet.
    There may be other options, there may be a plugin that can help you, or ultimately there would be means to access the database outside of Lightroom - contact me if you get that desperate to fix this!
    http://www.BDLImagery.com

  • Problem: New photos in LR 3.3 but old process version

    I have a strange problem when importing new pictures to Lightroom 3.3 (Mac, OSX 10.5.8):
    Whenever I have imported some pictures and beging working on them in the Devleop module, I get the exclamation point with LR asking me if I want to upgrade the process version from 2003 to 2010.
    The pictures are "brand new" and have not been imported in LR 2, so I really don't understand why LR thinks the images have been worked on with a previous process version. I have even uninstalled LR 2 from my system, hoping this would eliminate the problem. Not so...
    Any suggestions?

    Yeah, I think we all have somewhat different ways of doing things in our workfklows :-)
    Just to clarify, let me explain what works for me (at least at the moment)
    Copy all images from memory card to new, appropiately named folder on computer's hard drive
    Rename all files in that folder according to year, month, client, project etc.
    Back-up the folder to external RAID 1 hard drive (and later run Time Machine on another external drive to make a second back-up copy)
    Browse through images in Bridge or Nikon View NX 2, select the ones I want to work with and apply rating
    Use filter to only show rated images (i. e. selects)
    Import selects to Lightroom and, most likely, narrow number of selections further down by using LRs flag rating
    Edit final selects in Lightroom and Photoshop
    My aim with this workflow is to things:
    1) Make sure I always have ALL images captured during any shoot, (properly organised in a folder and with filenames that are easily identified) - but not necessarily all managed by Lightroom
    2) Prevent the LR catalog file from growing to gargantuan dimensions and slowing down performance
    I realise that LR is super powerful for renaming, rating, sorting, selecting etc. On the other hand, I see no need for LR to keep track of 100 RAW files from a shoot when I only need, say, 10 of those images for the client
    If, at some point in the future, a client should want to review all the images from the shoot and maybe want some more than originally selected, I can still find all the original files quickly and import additional selects into LR to work on.
    Well, that's just my way of doing things at the moment. I am sure it will change over time.
    Oh, there is by the way one exception:  When I am shooting in the studio, I almost always shoot tethered directly into LR. Which means that in these cases, all images from the shoot are obviously imported to and managed by Lightroom... :-)
    Regards,

  • WLC Failed to process an association request

    Hi
    I am usig a 4402 WLC with s/w version 4.1.171.0.
    I keep seeing the following messages in the syslog very frequently.
    2008-01-07 07:44:56 Local0.Notice 185.1.137.5 Jan 07 07:44:54.339 apf_80211.c:2847 APF-4-ASSOCREQ_PROC_FAILED: Failed to process an association request from00:15:70:46:43:e7. WLAN:1, SSID:. message recived from disabled WLAN.
    Any ideas why ?
    Regards
    Lee

    Make sure the admin status of the WLAN is enabled. On controller CLI use the command "show WLAN summary" .If you get this message even when the SSID is enabled delete and reconfigure the SSID. Check the URL http://cisco.com/en/US/tech/tk722/tk809/technologies_configuration_example09186a0080665d18.shtml#c3 to enable a WLAN.

  • How to find photos which have not been updated to the current Process Version?

    How can I search and/or filter to find photos which have not been updated to the current Process Version?  I would like to get a list of the photos rather than going through them one by one and looking for the lightening bolt.

    Thank you!  As my memory fades, it is good to know that my memory is backed up with you and others on this forum!

  • MAPVIEWER-06009: Error processing an FOI request

    Hi,
    Im facing the following exception when trying to apply color theme over the map. Can someone please answer my question.
    Fri Nov 13 15:32:34:052 CST 2009 | 1258147954052 | 8684 | null | null | null | null | INFO | oracle.sdovis.theme.PredGeomThemeProducer.loadFeaturesInWindow | [ SNI_NM_MM_VANTL_MSI_THEME ] sql exec time: 266ms, total time loading 194 features: 598ms.
    Fri Nov 13 15:32:34:974 CST 2009 | 1258147954974 | 227 | null | null | null | null | SEVERE | oracle.lbs.foi.FOIServlet.doPost | MAPVIEWER-06009: Error processing an FOI request.
    java.lang.NullPointerException
         at oracle.lbs.foi.ThemeRenderingThread.duplicateMultipleComponents(ThemeRenderingThread.java:1510)
         at oracle.lbs.foi.ThemeRenderingThread.render(ThemeRenderingThread.java:370)
         at oracle.lbs.foi.ThemeRenderingThread.run(ThemeRenderingThread.java:159)
    Thanks & Regards,
    Kiran Konjeti

    Hi Rema,
    You will be better off posting this query on the dedicated MapViewer forum:
    MapViewer
    Then you should look at providing more useful information in your question:
    - What version of MapViewer?
    - What version of Oracle?
    - Explain more background as to what you are trying to do
    - Turn the logging level in mapViewerConfig.xml up to FINEST as this will print the full SQL to the log file. Looking at this should help solve your problem - if not, then post the relevant bits of the log.
    You are getting error "ORA-13030:Invalid dimension for the SDO_GEOMETRY object"
    The standard explanation for this is:
    "There is a mismatch between the dimension in the SDO_GTYPE and dimension in the SDO_GEOM_METADATA for the SDO_GEOMETRY object."
    So if your data is 2D, make sure the SDOGEOM_METADATA says that too.
    (you should change your handle from 917206 to Rema)
    Regards,
    John

  • An error occurred when processing the spool request.  (Possibly due to memory problems)

    Hi SAP,
    My backgroud job is failing with log as shown below
    Job started
    Step 001 started (program ZMRS0065, variant SUS
    Step 002 started (program ZDRS0090, variant SUS
    Step 003 started (program ZFRS0305, variant SUS
    Step 004 started (program ZFRS0300, variant SUS
    Access error
    Job cancelled after system exception ERROR_MESSAGE
    An error occurred when processing the spool request.  (Possibly due to memory problems)
    Kindly help out in this issue
    Regards
    Mohammed

    Hello Mohammed,
    Have you seen any error in your SM21 system log and developer trace of spool work process
    during that time?
    The maximum size when create spool is 2GB.Pls also check if you are creating a spool
    larger than it.
    Best Regards
    Jie Bai

  • Question on the upload attachments process in a request form

    hi,
    I have a question on the upload attachments process in a request form. I have 2 pages, one is a request form and the other is an attahment page
    The request form let users fill the mandatory fields (e.g. name, email, address...) And in the form, there is a link (URL without submit) to the attachment page.
    In the attachment page, users can upload the supporting file for their rquest. The file will be uploaded to APEX_APPLICATION_FILES view and then it will be copied it to a customized table (table A) and remove from the view.
    When the users finish uploading files (i.e. the files are stored in table A), users need to press a "Done" button back to the request form to submit the form.
    My question is:
    As the request form is not yet submitted while the attached files are stored in table A, there is no request_id (request from table primary key generated in an Insert trigger after submission) is generated to tag with the files in table A. Is there any standard practice to do this?
    What I am doing now is to generate a hidden value in sequence when user goes to the attachment page. The hidden value is stored in table A togehter with the files when uploading. When user goes back to the request form, the hidden value is passed back as session cache. When the request form is submitted, I make an update statement by using the hidden vaule in the Insert trigger to tag the request_id to the attached files in table A.
    Is my way appropriate?
    Thanks for advice.
    cheers,
    Pong

    Pong,
    Yes, this would work just fine. You may want to consider enabling session state protection so that your process is not succeptable to URL tampering, which would cause a user to change the value of the REQUEST_ID in the URL and potentially associate other attahments with their request.
    Thanks,
    Scott

  • One work process can only process one user request at a time?

    Hi,
       How to configure the how many work processes for 80 concurrent users login daily.One work process can only process one user request at a time? Does this mean a login user has a dedicated work process servicing him. Or many login users interleave a work process's service? ,clarify the same.
    Thanku

    There are different types of work processes and the number needed depends on the number of transactions that will take place in the system. We are running 80 concurrent users with 15 dialog work processes. Please see the link below for an explanation:
    http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2e8a358411d1829f0000e829fbfe/content.htm

  • Spool Error - Errors occurred processing this print request

    Hi,
          I have a problem printing documents through spool.
    1. I run a form from Form Builder, execute and select to print from spool
    2. In SP02, I select the spool request created and Select Direct Printing.
    Spool request Status is changed to error and following is the error log.
    I get this for all print requests from spool. When I print these documents directly, I have no problem. I understand there is some problem with the spool server but do not know what it is.
    I also observed that when the spool access method is G - I have no problems in printing.
    Printer: HP HP laserJet PS (2430)
    Host Spool Access Method: L: Print Locally Using LP/LPR.
    Device Class: Standard Printer.
    SAP NW 2004s SP14
          SAP spool error log
          =====================
    Print request processing log
    The host spool is reporting errors
    Message from host spool:
      D:\usr\sap\BS9\DVEBMGS00\data\000001615100001.BS9 is currently being printed
    End of message
    Command used: print /d:
    bs107.platinumdb.com\HP01 D:\usr\sap\BS9\DVEBMGS00\data\000001615100001.BS9
    Errors occurred processing this print request
    Error during print request output. l_rc = 1
    There may be no printout
    Most important attributes of spool request
    Request number 16151
    Request name PBFORM HP01 SMULLAPUDI
    Client 800
    Owner SMULLAPUDI
    Request attributes
    Time created   2008050118454600
    Remaining life  +00007235918
    Dispo 1 (Go/Hold) H
    Dispo 2 (Keep/Delete)     K
    Dispo 3 (Indirect/Direct) D
    Default output device HP01
    Default no. copies  1
    Format G_RAW
    Main print request characteristics
    Spool request number 16151
    Print request number 1
    Print request attributes
    Time created   2008050118471500
    Output device HP01
    Format G_RAW
    Character converter active when first problem occurred
    No information available
    I am working on this since 4 days with  no solution. Kindly help.
    Thank you,
    Vasu
    Edited by: subbu M on May 2, 2008 11:37 PM

    Hi Sri,
    Try to setup the printer at OS LEVEL.
    then,
    If on Windows---use method C.
    if not,
    use method U and map to your printer queue at OS level.
    Hope this resloves this issue.
    Reward Pts if useful
    Regards,
    Malti

Maybe you are looking for