Feature Request: Functions for Renaming and Deleting LrDevelopPresets

As it stands, there is no way to delete an LrDevelopPreset programmatically - short of deleting the develop preset lrtemplate file, but even then the effect doesn't take place until after restarting Lightroom.
Likewise, there is no good way to rename an LrDevelopPreset.
Rename and delete functions would be very helpful to plugins that work with lrdevelopresets.
Thanks,
Rob

Hi 
Can you please post the archived project so that I can test in the latest internal builds and take the necessary actions?

Similar Messages

  • Feature Request: Support for .idea and .psdx extensions

    I've noticed that Adobe Bridge does not have any support for .idea and .psdx files.  The .idea files will show a idea file icon but the .psdx will be a blank, unknown file icon.  Both do not show any preview in Bridge.  I do not know why this is as previews for these files can be seen when they are uploaded to creative cloud or the new creative cloud mobile app.

    Hi,
    I've logged an enhancement request on this.
    Thanks,
    David

  • FBE2: BAPI or FM for Changing and Deleting Payment Advice

    Hi,
    I am looking for BAPI or FM for changing & deleting payment advice as we can accomplish from FBE2.
    This is EC 6.0 upgrade issue for not be able to post using CALL TRANSACTION in background mode.
    I tried the below FM's in the Function group  FARMATCH, but all have them have the follwing code to select payment advice Header Table [AVIK].  
    SELECT * FROM AVIK INTO TABLE LT_AVIK WHERE (LT_WHERE) AND
                                                  AVSID LIKE '09%'.    "This is not the case for my requirement
    FARMATCH_CHANGE_PAYMENT_ADVICE               
    FARMATCH_DELETE_PAYMENT_ADVICE               
    I found another set of FM's  REMADV_CHANGE  &  REMADV_DELETE but I am not sure if i can
    achieve the same functionality of change and delete that we can do using FBE2.
    If anyone had similar scenario, Appreicate your feedback.

    Below is a sample code.
    I am able to delete the details....
    Take a look...:)...imp to add wait for few seconds
    REPORT z.
    PARAMETER: vbeln TYPE vbak-vbeln.
    PARAMETERS: fplnr TYPE fplnr.
    DATA: t_zfpla TYPE STANDARD TABLE OF fplavb WITH HEADER LINE.
    DATA: t_zfplt TYPE STANDARD TABLE OF fpltvb WITH HEADER LINE.
    DATA: t_fpla_new TYPE STANDARD TABLE OF fplavb WITH HEADER LINE.
    DATA: t_fpla_old TYPE STANDARD TABLE OF fplavb WITH HEADER LINE.
    DATA: t_fplt_new TYPE STANDARD TABLE OF fpltvb WITH HEADER LINE.
    DATA: t_fplt_old TYPE STANDARD TABLE OF fpltvb WITH HEADER LINE.
    *DATA fplnr TYPE fplnr.
    IF NOT vbeln IS INITIAL.
      SELECT SINGLE rplnr INTO fplnr FROM vbak WHERE vbeln = vbeln.
    ENDIF.
    CALL FUNCTION 'BILLING_SCHEDULE_READ'
      EXPORTING
        fplnr = fplnr
      TABLES
        zfpla = t_zfpla
        zfplt = t_zfplt.
    LOOP AT t_zfpla.
      MOVE-CORRESPONDING t_zfpla TO t_fpla_old.
      t_fpla_old-updkz = 'D'.
      APPEND t_fpla_old.
    ENDLOOP.
    LOOP AT t_zfplt.
      MOVE-CORRESPONDING t_zfplt TO t_fplt_old.
      t_fplt_old-updkz = 'D'.
      APPEND t_fplt_old.
    ENDLOOP.
    BREAK-POINT.
    *CALL FUNCTION 'BILLING_SCHEDULE_SAVE'
    TABLES
       fpla_new = t_fpla_new
       fpla_old = t_fpla_old
       fplt_new = t_fplt_new
       fplt_old = t_fplt_old.
    DATA fpltr TYPE fpltr.
    CALL FUNCTION 'BILLING_SCHEDULE_MAINTAIN'
      EXPORTING
      I_FPLA           =
      I_FPLT           =
       i_upd_fpla       = 'X'
       i_upd_fplt       = 'X'
        i_fplnr          = fplnr
    IMPORTING
      E_DATALOSS       =
      E_UPD_FPLA       =
      E_UPD_FPLT       =
       e_fplnr          = fplnr
       e_fpltr          = fpltr
    TABLES
        fpla_new = t_fpla_new
        fpla_old = t_fpla_old
        fplt_new = t_fplt_new
        fplt_old = t_fplt_old.
    WAIT UP TO 2 SECONDS.

  • ABAP Function for renaming of a planning level?

    Hi all,
    i wanna know if does exist an ABAP Function for renaming of a planning level or parameter group.
    Someone can help me please?
    Thanx a lot,
    Paolo.

    <Font Face="Tahoma" Color="Blue">
    Hi,
    I don't think any such Function Module exists. Nonetheless I can give you a good hint.
    All the details of all planning objects (Planning Areas, Planning Levels, Planning Functions. Parameter Groups etc) are stored in UP* Tables. Just go to T-code SE11 and search for tables with name UP*.
    Once you know the tables, you can write your own customized ABAP code.
    PS: I can recommend above method to just read the details of Planning Objects. I don't think you should be ambitious to change planning object names by attempting to change system table contents. Hope you are getting me.
    Regards,
    Abhijit
    </Font>

  • How to Use the language function for assignment and validation

    Hi All,
    If anyone can explain me in details with example ,how to use the language function for assignments and validations?
    Thanks
    Arnab

    Hi Arnab,
    The expression is checked only for the current MDM session.
    If u login with the ABC language it will always show the ABC language no matter how many times u execute it.
    Try connecting to the DM with the XYZ language.
    It should go to the if part rather than else.
    Hope it helps.
    Thanks,
    Minaz

  • Search file for text and delete the found text.  How?

    I need to know how to search a file for text and delete the found text. I think grep will let you do this but not sure of the syntax.

    Hi Dmcrory,
       In addition to what Camelot and nobody loopback point out, one must also consider the fact that UNIX text tools are largely line based. You also fail to tell us for what kind of text you are searching. If you are looking for multiple words, there's a very good chance of finding the expression wrapped onto different lines. With hyphenation, even single words can wrap to multiple lines. Tools that search line-by-line will miss these unless you use multiline techniques.
       Multiline substitutions require that you write "read-ahead" code for the command line tool that you're using and that you take that into account in the substitution. Given how you want the results to be printed out, you may also want to preserve any newlines found in the match, which is even more difficult. That could bring up the subject of line endings but that's a completely different topic.
       I apologize if this sounds discouraging. Multiline searches aren't needed that often and in most of those cases, exceptions can be dealt with by hand. I just didn't want you to get surprised by it. To give you an idea of how easy basic substitution is, have a look at Tom Christiansen's Cultured Perl: One-liners 102 and One-liners 101. Both have some "in-place" substitution examples.
    Gary
    ~~~~
       MIT:
          The Georgia Tech of the North

  • BAPI functions for FB60 and F-02

    Hi,
        Can any one please tell me the BAPI functions for FB60 and F-02 tcodes.
        I had searched in forum,but din't solved my purpose.
    Thanks.
    Sri
    Moderator message - Search harder. Maybe Google will help - post locked
    Edited by: Rob Burbank on May 8, 2010 6:25 PM

    This has been solved for FB50. The original variant for FB50 had never beer created in our QAS system! So I was able to get the screen variant menu selections to reappear by running SHD0, editing, and then saving the transaction variant 'STANDARD 1' (not sure if that is SAP's name for the default variant).
    Hope others find this information useful.
    J. Haynes
    Denver, CO

  • IOS 7 feature request: Option for home button to home not folder.

    IOS 7 feature request: Option for home button to home not folder. Maybe for some this workflow is good but not for me. To many clicks. At least give the option to have my home button take me to my home page. 9 times out of 10 that's where I want to go. Not back to my folder.

    send your feedback here http://www.apple.com/feedback/

  • How can I regain answers feature alt + click for spelling and definition. using windows 7 and 6.0.2

    How can I regain answers feature alt + click for spelling and definition. using windows 7 and 6.0.2
    I may have lost that feature when I upgraded to 6.0.2
    This feature allowed me to rest the mouse over any word, anywhere, press Alt then left clk mouse and it gave spelling and definition of the word.

    This did not help.
    I already had Answers installed, however, I followed your procedure anyway but it did not give me back the capability:
    How can I regain answers feature alt + click for spelling and definition. using windows 7 and 6.0.2
    By the way, when I left click, there is a low level, short gong that sounds.

  • How can I transfer all my photos on iPhone to iCloud for archive and delete them off my phone?

    I do not want to simply backup my phone with iCloud.  My iPhone's memory is full and I would like to transfer all my 10,000+ photos to iCloud for safe keeping, and delete them off my phone.  Could I do that?  I know that iCloud is typically used for backing up the phone and works like a 'mirror' to the phone, but I want to use it more as an archive drive.  Please advise!

    The only iCloud feature that meets this requirement is the iCloud Photo Library (Beta). I don't think that I would trust all my photos to a Beta-level product.
    You could create a Dropbox Account and move the photos to it or move the photos to your computer.

  • Irritating UI "bugs" when renaming and deleting images

    I have been using iPhoto for a couple of years now, and there are some minor glitches in the UI that simply frustrates the **** out of me in the new '08 version. Perhaps it's due to "wrong" usage, so please tell me if I can avoid them:
    Firstly, I'm often viewing and comparing my images in fullscreen when cleaning up a large batch of vacation photos, but when I apple+backspc. to delete an image, it jumps to the start of the Event instead of showing me the image before/after the one I deleted - WHY!? This is only in fullscreen view - if I space-view it goes to the next picture as expected?
    Secondly, there is apparently no shortcut for renaming an image, when viewing the thumbnails in an event or album. Numeric enter doesn't work (as ie. in iTunes), neither does (Windows) F2 or anything I could think of at least. Is there a shortcut that I just missed - please tell me!
    This could seem rather minor, but my library counts 5800+ images, and I spend literally days in this program when I'm sorting new Events, so if these issues could be addressed either by an update or if I just need to know some little trick, I would be a much happier customer.
    Thanks in advance.

    Welcome to the Apple Discussions.
    when I apple+backspc. to delete an image, it jumps to the start of the Event
    Yes, that's a bug that's been reported before. Report it at http://www.apple.com/feedback/iphoto.html as the more reports the more likely it will come to the attention of the developers.
    As far as renaming or titling in the thumbnail mode, you have to first click on the title so the title field is activated. Then you can enter any title you'd like.
    You can also batch title files by using the Photos->Batch Change->Title menu option. This will rename them all the same or add a sequential number to the end of the title.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Custom functionality for home and end keys?

    I don't know anything about automate, but I was wondering if it's possible to do this:
    I'm a former PC user and on PCs you could use the 'home' and 'end' keys to go to the beginning and end of one line (subsequently, you could hold shift + home/end to highlight from your current cursor position to the beginning or end of a line). This functionality is extremely helpful for text editing and programming. Luckily the versions of Word and Dreamweaver I have on mac do use this, but TextEdit, Flash, and others do not. Is there anyway to program this kind of functionality? And if so how? And why is basic functionality like this different program to program on macs? PC's were at least consistent. Thanks!

    The Command and Option shortcuts will take some getting used to, but that will work. Thanks! an external text editor would be okay for some things, but not Flash ActionScripting within a flash file.
    I just wish some of the more basic functions between mac and pc were the same. I think both platforms would have an easier time getting users to switch if they were a little more consistent and took some of the good features of each into consideration.

  • Premiere Pro CC Feature Request: Shortcut for 'Close Other Timeline Panels'

    I'm about to post a feature request, but wanted to see if anyone else is interested in this request too. Adobe told me that getting support on the forum first is a good way to push the request through.
    Here's the very simple FR:
    *******Enhancement / FMR*********
    Brief title for your desired feature:
    Keyboard Shortcut for 'Close Other Timeline Panels'
    How would you like the feature to work?
    It was a great touch to add this contextual menu item to Premiere Pro CC, but it's a little clunky without being able to assign a keyboard shortcut to it.
    It's usage would simply close every other Timeline Panel except the active one upon pressing the shortcut.
    The default could be something not currently in use like Ctrl+Cmd+W (since CMD+W closes the active panel), but customisable in the Keyboard Shortcuts panel.
    Why is this feature important to you?
    This is something I have to do very frequently while editing, and since I (and many others) edit largely with the keyboard, a shortcut would be very useful and speed up workflow just a tiny bit.
    Anyone else interested in this (admittedly fairly boring) feature request, let me know!
    Thanks!

    Thanks for the support and video Kevin!
    cscooper2013: I totally agree with you, I can't see any reason why any action should be exluded from having a shortcut. I've submitted this simple request because I feel like it's more likely to get done on it's own.
    Maybe make a separate FR for that?

  • Feature Request: Ability to copy and paste development settings in LR Mobile

    Please add the copy and paste feature for develop settings in LR Desktop to the Mobile version.

    Feature Requests go here:  Recently active topics in Photoshop Family about Photoshop Lightroom

  • Feature request: Support for more than 2 monitors

    I currently use an external monitor for my critical editing/evaluation as my iMac display doesn't reproduce reds very well. I understand newer iMacs can support 2 external displays, obviously desktop machines can support as many displays as there are open slots for video cards.
    While editing a photo shot in portrait on a monitor set for landscape is not a problem, it would <really> be cool to have two external color-accurate monitors for developing/loupe views, one oriented in portrait, one in landscape, with the third (iMac in this case) showing the develop controls. Even if the two external monitors showed the same image, one would always be fullscreen in the correct orientation.
    MacOS and Windows both give the user control over all the displays connected to a given system, so driving a portrait and a landscape monitor simultaneously shouldn't be a problem from an OS/hardware standpoint.
    Is this something that can be rolled into LR4?
    Respectfully,
    Andre

    I use 3 or 4 monitors too, so that's one I'd like to see too.  We wouldn't want the request to get lost in beta land, so might I suggest adding the request to the Feature Request forum http://feedback.photoshop.com/photoshop_family where it can easily be tracked?  If you post the link to your request here, others can also vote on your request. 

Maybe you are looking for

  • Error reading 'ods' passwd from wallet!!!!!

    I did: c:\>oidmon connect=hahldap start (No errors). C:\>oidctl connect=hahldap server=oidldapd host=192.168.1.100 instance=1 start gsluwpwaGetWalletPasswd: Opening 2 file failed with error 11005 [gslusw]:Error reading 'ods' passwd from wallet [gsdsi

  • Books about MVVM, architecture, design patterns for Windows Phone 8.1

    Hi, I'm looking for a book or books (or other resources) that explain how to develop an app with a proper architecture. I mean what each layer (bussines layer, data layer, network access) should do and how should it look like. I'm also looking for a

  • Need to send a 403 (forbidden) message from proxy to client

    I have create a List that contains URL's that I want to block from the user. Once I search that list and see that the requested URL is in the list, I need to send a 403(forbidden) message. Does anyone know if I can just send a "HTTP/1.0 403 Forbidden

  • Message tracking and disk usage

    hello, I cannot find answer in documentation... what happens if disk quota for message tracking is full? a) message tracking is stopped b) oldest messages will be overwritten which possibility is correct? how much is slowdown performance if message t

  • Best Practice for Time Dimension

    I am designing a new outline. I need to set up a time dimension for every day, perpetually. In the past I would set up one member for years i.e. 2010, 2011, 2012... and a second dimension with the days i.e. Jan 01, Jan 02. Is there a better way than