Snapshots for Common Develop Stages

I have read a bit on snapshots in the develop module and how some are using them for common crops (5x7, 8x10, 11x14, etc.) as well as maybe a black & white version of an image when appropriate.
It would probably be useful to have a way in the library mode (grid view for example) to make a selection of multiple images (maybe an entire folder) then select a snapshot state for those selected (all 5x7s for example) effectively filtering for those with the snapshot embedded in the metadata, then temporarily changing the history state to the common snapshot state selected.  This would allow batch printing, ftp sending, etc. based on common develop states.  This feels less cluttered than having multiple virtual copies and using the snapshots one by one for this type of an export or print job in the develop module would be too painful.
Of course, the complexities of the program might make this impossible.  Also, one would have to be able to easily return to the state just prior to the snapshot state selection (which is probably the last step in the history panel, but not necessarily).
In any case, just food for thought.
Jeff

Hi,
Any body to help with this question..
I want to know if this is possible in ADF 11g

Similar Messages

  • How to create common file systems for both development & quality systems

    Hello Team
    Need some calrification & advise
    we are planning to install ECC6 with EHP5 on AIX7.1 with DB2 9.7 version on single physical server ( NO Virutal IP'S) for both development(SID : D10 & System number 20) & quality(SID : Q10 & System number 20) systems.And it will be running in single LPAR for development & quality systems.
    please advise me how can we create the below common file systems for both development & quality to avoid file permission & installation issues.
    /sapmnt/<SID>
    /usr/sap/
    /usr/sap/trans/
    /db2/IBM
    Thanks in advance & Regards
    BM

    Thanks you Juan for your response
    We are planning for seperate DB instance only.
    what could be the owner(UID) & group(GID) for the below file systems
    /sapmnt/
    usr/sap/
    usr/sap/trans
    Thanks in advance
    BM

  • At the develop stage, I seem to have lost the section for exposure, contrast, whites, blacks, clarity etc. Can you please help?

    At the develop stage, I seem to have lost the section for exposure, contrast, whites, blacks, clarity etc., can you help please?

    Right Click (CTRL Click on Mac) on any Panel header in the Develop module (ie. Tone Curve, HSL, etc) and put a check mark next to Basic to unhide it.

  • Using common exam to achieve certification for OCA ( Developer + DBA )

    Hi,
    i have given a Oracle 9i : Introduction to Oracle 9i ( 1Z0-007) exam which is one of the two mandatory exams for OCA ( Developer ) . So my questions is .. once i complete my OCA ( Developer ) can i directly give (1Z0-031) to get an OCA (Dba) Certification or i would have to give the exam again ?
    Thanx,
    Abhishek

    The exam (1z0-007) is a prerequisite exam for OCA (Developer or DBA Track). In your case, you have already passed the 1z0-007 exam, so you are very much eligible for writing the exam (1z0-031) without taking the exam (1z0-007) again to fulfill the prerequisite for the OCA – DBA track exams. Moreover, candidates may not retake a passed exam at any time. But, while registering for 1z0-031 exam, you have to show your passing details of the exam 1z0-007 to the parametric center.
    Best of luck.
    Regards,
    Sabdar Syed

  • Create snapshots for many images?

    After I have completed editing on a batch of photos, I would like to create a snapshot for each selected photo. If I just create a snapshot, one is created only for the current photo, not for all others. Is there a way to create a snapshot for every selected photo?

    I edit a few hundred photos from a shoot. I will now release them to one person in that form. Then I will further work on some for artistic development, probably with some further work in LR and then on to PS CS3. I want in some way to "mark" the ones I have released so I can get back to the released form of an individual image if needed. I'd prefer to do that at the first release stage rather than having to remember to take a snapshot before doing any further work--as I might forget to do that. I thought a snapshot was the way to do that.

  • Looking for some development advice...

    Platform
    Oracle Database Enterprise Edition, 10.2.0.4
    Windows Server 2003 R2
    Development Framework
    Front-End is written in PHP which interfaces with Oracle packages.
    Application Category
    Data Mart / Ad-Hoc Reporting
    Problem at Hand
    I'm responsible for the development of the PL/SQL interface to a data mart. The application is used to present charts of various complexities to the end users. The database been designed using the snowflake / star schema design methodology. The design effectively has one fact table with approximately 5 dimensions.
    Ideally I wanted to pre-compute all the necessary measures and store them in a materialized view (a.k.a. "summary tables") for very quick response time to the user, using the GROUPING SETS, and ROLLUP extensions to the GROUP BY clause. However, there is a requirement which allows a user to exclude fact records (based on particular dimension values). This means I cannot pre-compute the measures, unless I'm missing something.
    I am open to options, but I feel my only way out is to generate the SQL dynamically and return a REF CURSOR to the client. Almost everything is subject to change as far as an SQL statement is concerned. The SELECT list depends on the report and the columns chosen. Same goes for joining dimensions to the fact table, as well as an expected dynamic WHERE clause.
    If that is the case do any of you have lessons learned with taking this approach? My concerns are (in no particular order):
    1. Modularity
    2. Maintainability
    3. Performance
    With a dynamic SQL approach and no ability to pre-compute values performance may or may not become an issue as I can only index base objects.
    Maintainability and modularity are my biggest concerns. I want to code in such a way that it at least has a fighting chance of being maintainable for me or any successor. Normally I would try and consolidate common functionality into re-usable modules, but this seems like a difficult approach in this scenario. The reason being that at some point later in time a change to one report may not happen on another and this 're-usable' module would have to be split up. On the other side of the coin I could develop each report without consideration for others. The problem with this approach is that if I have to make a change, it may affect more than one report and it leaves an opportunity for bugs to creep up.
    Basically, just throwing this out to you all to see if there was something glaring I missed, any passed lessons learned, or if I have to trudge along with what I have now.
    Thanks!

    user503699 wrote:
    Centinul,
    First, let me confess that I am not trying to come as an expert here, so apologies if some of this is irrelevent or wrong.
    After reading your OP, I remembered my early days in IT. Basically, I started my career in IT as a front-end programmer,
    developing customized applications. During those days, I have, more than often, seen demands, either from customer or
    from so-called "project managers", about a DYNAMIC reporting systems which can be used in any way desired.
    Now, the idea initially sounds very attractive and I used to be very much disappointed at that time that I did not have
    skills to build such a reporting tool. Basically, some people demand it because they are used to doing all sorts of "magical"
    things with tools like MS EXCEL or because they had heard of some commerical reporting product that does "amazing" things.When I use dynamic, it's kind of loose in definition. However, I am DEFINITELY trying to weed out the "need" versus "want" in terms of requirements :)
    Long story short. Have you decided TO BUILD this reporting application AFTER carefully reviewing following things?
    a) Expectations of customer/management from the reporting systemI'm trying my best to do that. Unfortunately the customers (unknowingly) like to participate in a rapid prototyping process which I dislike.
    b) Based on expectations, the budget available (I know this might sound off the track but not so much in my experience)They are aware.
    c) more importantly, are there no commercial products in market which you can just buy ? There can be 2 answers to this
    question. Either there are no commercial products on market that can satisfy the requirement OR there are products
    available but they are too "expensive". In either case, it would help a lot to keep all stakeholders aware of WHY & HOW
    have you arrived at the decision of building a reporting system.I'm trying to explore all options that I can. However, it is not as easy as a client/server architecture. The customers are located in geographically different locations and hence they need this information via the Web. In addition I have unique constraints when it comes to purchasing other products, especially when it means getting a new vendor involved. In most cases it's easier to work with what we have.
    I have taken a brief look at Oracle's OLAP / Analytic Workspace functionality, but I haven't been able to find a way to easily remove "branches" from the hierarchy and retrieve aggregate results from the next level up. I could be missing something though.
    Now, some technical (finally :) ) questions.
    1) You said you wanted to use materialized views in order to speed up the process of generating results. Does it mean you
    expect to have millions (or billions) of records in your fact table and hence on-demand grouping or aggregating will not
    meet reporting SLAs?Millions of records are expected to be there. However, the frequency of load is very low (as in once a year, twice a year) so I wanted to create materialized views to pre-compute all the aggregates I need to make access fast. However, if I can't even get a static SQL statement then this option is out the window.
    2) Looking at the example that you have given, it seems (to me) there is no alternative but using dynamic SQL.That's what I was afraid of. If that is the case does anyone recommend any best practices?
    3) Will the application not have any pre-defined reports ? Will the users be given free-hand to select any of the combination
    of 5 dimensions? That sounds a bit too flexible but what do I know. :)All the reports are predefined dealing with usually no more than four dimensions at a time. One dimension will be displayed on the final report with the measures, and the others are typically used to filter out the final results. From a simplicity perspective I could assume there would be a selection for ALL filtering dimensions EVERY time which means I could have a STATIC JOIN clause. However, there is an equal possibility that the user WILL NOT filter upon any particular dimension and therefore I don't want to include a JOIN to another table that is not even being used as this may hamper performance.
    However one of these filtering dimensions is very similar to the hierarchy example I gave in a previous post. This is where a user wants to be able to exclude "branches" of a dimension but obtain aggregates at a higher level.
    Another requirement is that some of the aggregates are sums, averages, regressions of individual measures. Therefore another layer of complexity is introduced which needs to manage a dynamic SELECT list.
    4) Most importantly, how much maintenance window will be available to load data in this DWH? Does the reporting system
    SLAs exclude this maintenance window or is reporting system expected to be available 24x7?See #1
    That's probably all I can think of at this stage but this thread is interesting. I will keep an eye on this to see what you decide
    finally and what was your thought processThanks for taking an interest and I hope it makes sense.

  • [SOLVED] Recommendations needed - Arch + Apache for local development

    Hello,
    I'm a new Arch user, and relatively new with Linux. I'm getting to like Arch very much.
    I do web development, and I do most of my programming in PERL.
    I have already installed perl and some tools, and I'm about to install apache. The Idea is to have the apache server just for local development and testing.
    So the question is: Do you recommend me to install some firewall?
    What security measurements should I take?
    Is there any easy way to enable and disable Internet access to the apache server?
    Thank you!
    Last edited by iopo (2009-10-28 19:24:14)

    Thank you friends.
    Yes, my Internet is via router. I like the Idea to set the server to listen at local address, I will try that.
    Now, as I'm new to Linux and Arch, I will like to know if I should take any extra security measurements. In windows I used anti-virus + firewall all the time, and I blocked apache to access the Internet with the firewall.
    I have set a strong root password, but the "normal user" has sudo. Is that secure enough?
    Is there any "must have" security tools or measurements to set is a box like mine (Desktop usage + local network (3 machines) + apache for local usage and testing only)?
    Is it common to get some malware, worm, trojan, spyware or some kind of phishing just by surfing the web without user "action" to install it?
    I know Linux is much safer because users and permissions. I like that very much, It feels a lot safer.
    Now, I have used Arch for a week or so with no firewall (router firewall is disabled also) and no anti-virus. Absolutely no special security measurements and there seems to be no log-in attempts in logfiles .. and no problems at all. Windows without firewall and anti-virus will die in a few hours just by leaving it connected to Internet....
    I just wanted to ask you all (Arch users) if you normally use Firewall, and if you take some special measurement to stay free of  trojans, spyware, etc...
    I will appreciate your comments.
    Thank you!

  • Writing extension for SQL Developer

    Hello all,
    I'm new to writing extensions for SQL Developer using JDeveloper. Can you help me with some example with common functionality, like how to get the current connection? Is there some documentation for the oracle.sqldeveloper package? The example may include some techniques like how to get the schema name for a chosen table, get some other info for the table and so on.
    Thank you in advance!

    Hello all,
    I'm new to writing extensions for SQL Developer using JDeveloper. Can you help me with some example with common functionality, like how to get the current connection? Is there some documentation for the oracle.sqldeveloper package? The example may include some techniques like how to get the schema name for a chosen table, get some other info for the table and so on.
    Thank you in advance!

  • Bug CSCti41352 for Common Services 3.0.5

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Tabla normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    Hi,
    We don't have found the patch to fix CSCti41352 bug for Common Services 3.0.5 in cisco download page. I attach screenshot that show this. Where is this patch available?
    Thanks

    The End of SW Maintenance for LMS 2.6 (Common Services 3.0.6) was June 11, 2009, so I think you're SOL trying to get the patch for CS 3.0.5 now.
    http://www.cisco.com/en/US/prod/collateral/netmgtsw/ps6504/ps6528/ps2425/prod_end-of-life_notice0900aecd80532c07.html
    Table 1. End-of-Life Milestones and Dates for the CiscoWorks LAN Management Solution 2.6
    Milestone
    Definition
    Date
    End-of-Life Announcement Date
    The date the document that announces the end of sale and end of life of a product is distributed to the general public.
    June 12, 2007
    End-of-Sale Date
    The last date to order the product through Cisco point-of-sale mechanisms. The product is no longer for sale after this date.
    June 11, 2008
    Last Ship Date:
    App. SW
    The  last-possible ship date that can be requested of Cisco and/or its  contract manufacturers. Actual ship date is dependent on lead time.
    September 10, 2008
    End of SW Maintenance Releases Date:
    App. SW
    The  last date that Cisco Engineering may release any final software  maintenance releases or bug fixes. After this date, Cisco Engineering  will no longer develop, repair, maintain, or test the product software.
    June 11, 2009
    End of New Service Attachment Date:
    App. SW
    For  equipment and software that is not covered by a service-and-support  contract, this is the last date to order a new service-and-support  contract or add the equipment and/or software to an existing  service-and-support contract.
    June 11, 2009
    End of Service Contract Renewal Date:
    App. SW
    The last date to extend or renew a service contract for the product.
    September 10, 2010
    Last Date of Support:
    App. SW
    The  last date to receive service and support for the product. After this  date, all support services for the product are unavailable, and the  product becomes obsolete.
    June 30, 2011

  • Best practice for team development

    Hi,
    We have a team of Java developers working on different parts of a J2EE application deployed on a NetWeaver server. Everyone needs to debug the application from time to time. How to configure the server for each developer to have ability to connect via remote debug? Run several instances with different ports? Run local environments with shared database? Any there any other options?
    Thanks,
    Victor.

    Use NWDS for this please.
    ALl can activate and use it simultanneously and can share in the common repository and reuse if needed
    George

  • Neptune for UI development Pros and Cons

    Hi ,
    we are evaluating neptune for UI development for what are the pros and cons of using neptune.
    i see only that webdynpro abap developer can be easily moved to neptune , some javascript knowledge is still required.
    some question
    1) can neptune make calls to odata services ? do that requires code in javascript or ABAP
    2) any accelerators provided by neptune  like for workflow scenarios , list and details .
    3) can sap standard fiori apps extensibility  or modification is possible through neptune
    4) security if its accessing business functionality directly
    regards
    Yashpal

    Hi Yashpal,
    I will give you my view, but as Robbe says I work for the company and other SAP developers like DJ Adams has other development tool preferences than me ( I call his Sublime Text development spaghetti coding and he sees Neptune as a crutch that restricts a developer's freedom but this is just a friendly point-of-view discussion and I have promised him a beer in Walldorf next time our paths cross there)
    So the important message is that SAP has opened up their platform for different development tools and it is now a choice for the individual developer or SAP customer. This is a fantastic move by SAP and I think a bit overlooked by the community, Look at the new Xamarin partnership as an example (and yes they are a competitor, but I did mention them )
    Now the pros of Neptune are in my opinion:
    ABAP developer friendly development (removed 90% of JavaScripting needed)
    Connected to the SAP transport System (Software Logistics as is)
    Drag Drop designer that gives structured code (easy for a new developer to take over code, compared to the spaghetti provided by DJ <-  I'll need to buy a few extra beers for that remark)
    Native json communication provided by the Neptune Server (you can argue all you want about Odata, our solution is more flexible gives incredible performance and superb and easy to use offline capabilities)
    Integration with Adobe build, use an SAP program to generate hybrid apps  (The average ABAP developer does not install cordova and build hybrid apps - with Neptune he/she does)
    Integration with SMP. Automatic connection with the REST API's of SMP both on-premise and in the Cloud
    Reduced time to market. One of the largest SAP implementation partners in the Nordics stated that Neptune reduced development time by 80%
    Free templates (Advanced templates such as fully functional PM, HCM, SD templates are available Experience | Neptune Software  <- sorry for the marketing but you did ask)
    UI5, all of the other third-party tools (Not SAP tools like App Builder, Eclipse etc) uses non UI5 frameworks. I personally believe that SAPUI5 (UI5) is the future of SAP UX and thus it only makes sense to keep a common and future-proof framework.
    Network crunching. We optimize all networking. Which makes sense for mobility.
    no extra infrastructure needed - it is a certified add-on and takes 15 mins to install.
    Works with most versions of SAP. We even have alot of customers using 4.7 (we need the ICF so nothing lower). This is something the community often forgets. Yes it is cool to play with the latest Netweaver release, but do our customers have that installed?
    Cons (woot!)
    Cost, even if Neptune is very affordable it still requires license for productive usage (free for developers though - and hey we need to live as well ) So custom coding  is cheaper in respect to license (but not in TCO in my opinion)
    Generated code, even if we have added as much freedom to code custom JavaScript as possible there will always be restrictions in generated code compared to notepad. (But I haven't met an issue that couldn't be solved by custom coding in the Neptune Application Designer yet)
    Other backend systems. Neptune is based on ABAP and as such it obviosly works best with an ABAP backend.
    .... (Add stuff from other non Neptune ppl )
    Regarding your questions:
    1. Yes you can use Odata, best way is to consume it on the ABAP level, but you can of course consume it through JavaScript as well (Not recomended by me)
    2. Yes see above (free templates and also premium templates by our partners)
    3. No you can't modify a fiori app with Neptune, but the two solutions work perfectly together (You can add Neptune apps in the Fiori launchpad) One of our partners have created an RDS solution based on both Fiori and Neptune.
    4. Neptune is an add-on to Netweaver and as such has no extra security in itself beyond that (And we seek not to do that). But we support any security you wish to add on top. I strongly advice having a look at the SAP Secure offering (App protection and MDM)  as well as SMP (also the new Cloud edition which gives easy affordable protection for your backend)
    So that was my very biased answer
    Njål

  • Panels in CS5 for app development?

    Are there any panels in CS5 created for mobile devices/Android app development? What are the commonly used tools/panels for app development?

    Nope, there no other panels needed when developing for android, the only difference is when outputting the file, you should just keep an eye on the library regarding filesize, although it's not very important you never know.
    Many other things in regards to performance can be taken care of, but none of them are in a specific panel ( code, caching bitmaps, filter usage.... etc)

  • How to compare two recordsets for common or difference or join (ASP)

    Good day,
    I have Adobe Dreamweaver CS3 and here is my question. I have created two recordsets, one called Active_Stu and the other is called Active_Emps. One deals with active employees and the other deals with active Students. Both hava ids of students and employees. The student id field is called stuid and the employee id field in the active employee record set is called empid. They are both integers and come from one table. Each recordset is a SQL query that work fine on its own. How can I join the two recordsets into a third recordset? How can I find the ids in one that is not in the other one? or the ones that both have in common? I can do all that in Access by bringing the two queries into the third one and do a left join or others but not sure how to do such action in the Dreamweaver.
    I am using VB ASP for my development.
    Any ideas?

    Don't try to join two recordsets to find rows different or in common between tables. You do the same as you would in Access. Just write a single SQL query that joins the tables. Depending on what exactly you are looking for, you would use inner joins, outer joins or sub-selects.

  • HOW DO I PUT FINANCIAL CALCULATIONS IN COLUMNS AT DEVELOPMENT STAGE?

    Hi Colleagues,
    I am trying to programme a financial database with Oracle Apex 11g 2.0. My focus is to put in formulas that would automatically calculate the returns of number of columns added, subtracted, divided or multiplied together in specified columns (e.g. Column A + Column B = Column C) apart from using SQL UPDATE statements. I used the UPDATE command:-
    UPDATE EMPLOYEES calc
    SET
    GROSS_SALARY =(BASIC_SALARY + ALLOWANCES),
    NET_SALARY =(GROSS_SALARY - DEDUCTIONS);
    What appears is that each time I make new entries leaving the Gross Salary and Net Salary columns blank, I had to copy and paste the syntax into the SQL COMMAND window and run before the columns are updated
    Now, assume a bank Teller at the counter is paying cheques and receiving deposits how can he always be copying, pasting and running sql updates on every customer's transaction? Is there any script that can be used at the development stage so that when the end-user makes initial entries the calculated columns display the results?
    My second problem is that; how can I print from the Report or the Form page in the database?
    Counting on your assistance
    Godis-Tei

    Godis-Tei wrote:
    <snip>
    As I said earlier on, I am very new in learning database development.
    </snip>I stopped reading here. No offense meant, but if you are new in database development, you should ask rather than tell. It is very bad design to store anything that can be calculated - that is what a database view is for. Financial calculations are rarely if ever anything ad-hoc that need to be done on the fly - they are based on known columns and known formulas.
    My second piece of advice is that you need to stop basing things on what MS Access does. MS Access is a toy aimed at non-developers to make it easy. Oracle has had the #1 relational database pretty much forever, so they don't really need to support anything like you're describing. I don't know what competitive market or world you're talking about, but Oracle is generally not compared to MS Access very often. That would be like comparing a Ferrari to a VW Jetta - they are both cars and have 4 wheels, but the comparisons stop right there.
    Thirdly my last piece of advice would be to use OTN as a learning resource. Keep in mind that just because you did something one way in one software suite, it doesn't mean it is a best practice in another. Take locking for example - if you are coming from certain databases, an update to a row will block others from selecting that same data. Oracle works completely differently, so you need to learn how Oracle works, and stop expecting it to work the same as others.
    Hope you take my advice!

  • HT6154 What are DHCP timers in failure scenario for common iOS versions?

    If the DHCP server is down, how many DHCP DISCOVERS will be sent and what are each DHCP DISCOVER timeout to wait for DHCP OFFER?
    I'd like the answer for all common and recent iOS versions.

    That sounds more like a question for the developer forums than the user to user support forums.

Maybe you are looking for