Reorder inspector fields?

I wonder if any of the resident Smart People know how to re-order the fields in a custom Inspector/Info tab? Here's what I have:
Like lots of people, I have to process many photos, so anything that makes it easier is worthwhile. One of those things would be control over the order of the fields.
Using latest aperture and OS as of today.
edit: I never noticed that when you are creating a discussion message you can paste an image into the discussion; it appears to be inline in the normal way, but it's not, of course. Other discussion boards have paste locked out I think (?)

Michael,
you can simply drag the fields in the Inspector around and rearrange them. Grab the label and drag where you want.
You can paste images into your post, if they are already on one of the discussion pages, then coy and paste from a previous post will work. But to insert a new image into a post, use the camera icon in the toolbar of the editor to upload the image.

Similar Messages

  • Dtw  reorder quantity field

    hello,
    i've a problem. i don't find reorder quantity field, which column have i to use in items template. thanks?

    You have the latest PL. Use this column MinOrderQuantity
    to have the reorder qty.
    Based on this definition of Order Multiple:
    Enter the numeric value to define the size of the lots for the MRP. For example, if the value is 12, the item is ordered in multiples of 12. So if you need 20 items and the value is 12, the MRP recommendation is for 24 items.
    it seems it will not reflect as reorder qty.
    Meanwhile the column MinOrderQuantity is a value to define the minimum lot size. I suggest to use this column.
    Based on MD NAv, its definition is as follows:
    Reorder Quantity Field
    The Item Table
    In this field, you can specify a standard lot size quantity to be used for all order proposals. The program will use this quantity at the minimum, although it may increase the final order quantity to meet additional requirements or the specified inventory level.
    I am afraid there is no specific reorder qty field in the item template except using MinOrderQuantity
    Rgds,

  • Missing Property Inspector fields when using CFFORM

    I've created a CFFORM and added some text fields. When I
    opened the property inspector to change the fields properties all I
    see are two buttons to show attributes and contents. All the rest
    is gone. Any idea why this is happening?

    Hi,
    In generally we load text(descriptions and language) data only thru text data source.
    What fields you want load thru 0comp_code_text?
    if you need attributes data then look at data source 0comp_code_attr.
    Thru attr data source we can load attribvutes data.
    First screen shot is from?
    You can check data source fields at RSA6 and table - ROOSFIELDS.
    Thanks

  • How to reorder AF Query fields

    hi all,
    I have to reorder the fields in AF Query like all dates should be in one row and all numbers should be in one row. I tried to reorder the named query but it's not coming can any one help me.
    Thanks,

    1. Well one thing is to order the fields in the viewcriteria in the order you want to appear.
    2. Set rows and maxColumns to the af:query tag.
    I didn't find more customization to be allowed.
    agruev
    Edited by: a.gruev on Nov 20, 2009 10:21 AM

  • Adding a new choice to a checkbox field in a web app - options renumbered

    Hi all,
    I have been working on a web app today. (for a change...lol!)
    I had to add another option to a custom checkbox field in the webapp and I noticed the following:
    New options in a checkbox field need to be added to the end of the checkbox list, otherwise the options are renumbered to reflect the new order of items.
    I imagine this will affect any web app entry that is already using that checkbox field.
    To further illustrate what I mean here is a sample Regions checkbox field with its options:
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_0" value="ACT" />ACT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_1" value="NSW" />NSW<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_2" value="NT" />NT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_3" value="QLD" />QLD<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_4" value="SA" />SA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_5" value="VIC" />VIC<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_6" value="WA" />WA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_7" value="NZ" />NZ<br />
    I needed to add TAS to this list, cos I forgot! (Sorry Tasmania)
    When I put it after SA the list looked like this when inserted on an upload page:
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_0" value="ACT" />ACT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_1" value="NSW" />NSW<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_2" value="NT" />NT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_3" value="QLD" />QLD<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_4" value="SA" />SA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_5" value="TAS" />TAS
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_6" value="VIC" />VIC<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_7" value="WA" />WA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_8" value="NZ" />NZ<br />
    So all values after SA got renumbered, which I am sure would have affected the existing data in the webapp.
    So I had to do add it to the end of the checkbox list so no existing data was disturbed. The field then inserts on the upload page as follows:
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_0" value="ACT" />ACT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_1" value="NSW" />NSW<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_2" value="NT" />NT<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_3" value="QLD" />QLD<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_4" value="SA" />SA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_5" value="VIC" />VIC<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_6" value="WA" />WA<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_7" value="NZ" />NZ<br />
    <input type="checkbox" name="CAT_Custom_197366" id="CAT_Custom_197366_8" value="TAS" />TAS
    and then reorder the fields manually so they were alpha on the upload form.
    An interesting thing to discover today.
    Keep it in mind if you are changing the options in a web app checkbox field. Always add new items at the end. Maybe you will need to do a space for any option that is deleted.
    Regards,
    Mary

    Unless your doing something fancy with the Numbers Mary it does not matter the re-shifting of the numbers.
    Do you see the name and it's data number? That's the one that matters and what the choice data is stored against, that's the actual custom field :p

  • Guidelines, Form Fields and Tab Order

    I've been fighting a form for about two weeks now with Acrobat 9 Pro. I used guidelines to make sure I could get 2 buttons and a field aligned properly. I have 92 instances of this arrangement. When I reopened the file after I had worked on it for a couple of hours (precisely positioning the guidelines so that I could have consistent field sizes), the guides were gone. What happened. It has now happened three times. I ended up keeping the computer on for 5 days just because I didn't want to lose the guides.
    I'm having a similar problem with the selection for tab order. I have right clicked on the page on the left panel, chosen page properties and set tab order to unspecified. I then reorder the fields in the field panel and save the file. When I open the file again, the tab order is unchecked and the fields are not in the order I left them.
    Does anyone have any idea why I'm losing my sanity with this Acrobat form. I did it in Acrobat because I thought it would be easier than LiveCycle Designer.
    I am duplicating a print form. This means there are 92 places where I have a small button (visible but doesn't print) which executes a JavaScript when pressed to show another button (because it has an icon which will circle the date indicated in a field. I'm thinking I should have the small button on top, aligned on the bottom with the field for the date and the circle icon as the bottom button. How do I get all of these fields and buttons (a mere 276) to go in the right order and stay that way?
    Warren Bingham

    Warren wrote: "I'm having a similar problem with the selection for tab order. I have right clicked on the page on the left panel, chosen page properties and set tab order to unspecified. I then reorder the fields in the field panel and save the file. When I open the file again, the tab order is unchecked and the fields are not in the order I left them."
    In the left panel, in the Sort drop-down list, you have Tab Order selected, right? In the Tab Order drop-down list, is Order Tabs Manually selected?
    I am not able to get any menu by right-clicking on the page in the left panel. Can anyone tell me, is there another way to view the page properties while in Form Editing? I'm not finding it in any of the regular menus (menu bar) and I'd like to verify the setting Warren mentioned, for troubleshooting my own problems with tab order.
    EDIT -- Of course, as soon as I type it out, I discover the cause. I thought he meant the page in the Form Editing view, but no, I have to open the Pages view and right-click on each page. (Oddly, no options were selected at all. Usually a radio button set will default to the most popular option.) So -- sorry, never mind me.

  • Export to Excel - Multiple Tables in a single details section

    Hi All,
    I have a set of reports where I am using a single details section to show multiple tables stacked over one another. That is, i have a table with three columns and two rows, followed by some white space and then another table with 4 columns and 1 row, followed by white space and then other tables.
    When I export it to excel, I am getting the data but the ordering is in a reverse pivoted fashion:
    Excel output:
    CR_column1_Heading    CR_Column2_Heading    CR_Column1_Data CR_Column2_Data
    Is there a way to control the sequence of fields displayed in excel while exporting?
    Thanks.
    - Atif.

    @Carl,
    It is printing like this.
    HEADER1   HEADER2    HEADER3     DATA 1     DATA 2     DATA 3
    I am getting all the columns and fields in excel, that is not a problem. However, the problem is whether i can control the order the fields are printed onto Excel.
    Like what Ben is commenting:
    HEADER1   DATA 1     HEADER2    DATA 2     HEADER3     DATA 3
    However, I dont want to reorder the fields on the canvas as the format layout is predefined.
    I tried searching through the Cystal SDK if there is a finer level of control but to no avail.
    A work around under the above constraints would be simply amazing!
    Thanks again and appreciate your response.
    Regards,
    Atif.

  • MRP view in material master creation

    Hi Guys,
    Can anyone tell me how to change the settings for field dependency. My requirement is to use only the filed for "reorder point" in MRP view and do not enter any other data like MRP type or lot sizing etc.
    I have tried changing the setting for field selection group for MRP type etc but whenever i enter the value in Reorder point field it asks me for MRP type and does not allow me proceed...
    Thank you for your help.
    Regards,
    Siddharth

    Hi
    You cannot change that dependency as it is done through program code and not thru config.
    If you want reorder point only as an info field and not for actual Reorder point planning, I suggest you to explore any other unused information field in the masterial master.
    You can also use classification
    Best regards
    Ramki

  • Probelems with the page properties in Dreamweaver cs4

    Hello,
    I have a problem with dreamweaver cs4. My dreamweaver is installed on windows 7. I did not had this problem before in windows xp.
    It is on the lowest screen (page) propperties (dreamweaver is in clasic mode)
    When ik point at HTML then I can not see all the items. This is also the same for CSS.
    -HTML - FORMAT - CLASS by the title I can only see 3mm. The rest is not shown.
    On the next line by CSS - ID - LINK its the same. I can only see 3 mm of Target.
    The wierd thing is that when I click with my mouse at a image the page propperties are shown good. Then their is nothing wrong with it. I can see everything. I hope someone can help me. I have posted a picture of the problem so you see inmeadiatly what I mean.
    Thanks in advanced.

    See the FAQ:
    "CS4 Property inspector fields truncated (Windows)"
    http://forums.adobe.com/thread/446724

  • REP-1213

    Good Morning Everyone,
    We have to put a field and we create a field.
    We assign the value by:
    Property Inspector
    Field
    Source
    Select the Drop down menu
    We have a following Report Builder sign:
    REP-1213: Field'F_1' references column 'Column' at a frequency below its group.
    If you have experiences, please share with us.
    Thanks in advance,
    S!G

    You can see our challenges
    http://apexny.blogspot.com/
    Thank user8674910,
    We did not want to remove the column and set the source of the repeating frame.
    Any option?
    We created Frame and add a Field to assign the column.
    We tried Repeating Frame, too. We have same REP-1213.
    In dataModel:
    We created PlaceHolder Column CP_1
    Drag and Drop the Colum
    We still have the REP-1213 error.
    Fortunately, we founded differnt approch in today. Happy St. Partick's Day!
    If you have a chance, please share with us.
    Thanks,
    Edited by: Sea!Gull on Mar 11, 2011 12:51 PM
    Edited by: Sea!Gull on Mar 17, 2011 8:01 AM

  • Help on (Possibly) false sharing on Multithreaded Java Programs

    I encountered performance degrade going from 1 thread to 2 thread for embarrassing parallel programs.
    Each thread heavily accesses (read/write) some object fields, but one object is not accessed by both threads.
    However, because the hotspot JVM does not necessarily align the object according to cache line, it is possible to
    have two objects share the same cache line. For example, o1 and o2 are two objects of class Foo:
    class Foo {
    Object A;
    Object B;
    Foo o1 = new Foo();
    Foo o2 = new Foo();
    The JVM may layout part of o1 (o1.B) and part of o2 (o2.A) in the same cache line ( --cach line  2 as shown below).
    1111AAAA11111111111111111 -- cache line 1
    1111BBBB11112222AAAA2222 -- cache line 2
    22222222222222222BBBB2222 -- cache line 3
    1: o1 2: o2
    This cause a significant performance degradation due to false sharing between o1.A and o2.B.
    Due to the indeterministic nature of the layout, I am not hit by the impact of false sharing for every run.
    For some runs, I get 2x speedup as where were no false sharing. But occasionally, I get very bad performance.
    The penalty of false sharing can be reduce by binding the two threads to cores that share the same L2 cache.
    But this is not an acceptable solution because I want scalability beyond 2 threads and want to remove the
    false sharing at all.
    Traditional solution to avoid false sharing is either to align each object at the cache line boundary, or to pad the object
    to have extra space at the beginning and the rear of each object.
    I don't know how to do the alignment on the HotSpot JVM, if it is not impossible at all. Does anyone know to do achieve this?
    For padding, I don't know the exact correct way to do this: I want to ensure that the padding fields inserted are
    at the VERY beginning and the VERY rear of the object memory layout, instead of in the middle. I know JVM is free to
    reorder the fields. Does anyone know how to pad a object correctly?
    It would also be very helpful if anyone have any other opinions to avoid this kind of false sharing or whatever reason the bad performance might be.
    Thanks,
    Edited by: Grant@FDU on May 5, 2009 9:14 PM
    Edited by: Grant@FDU on May 5, 2009 9:15 PM
    Edited by: Grant@FDU on May 5, 2009 9:16 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM
    Edited by: Grant@FDU on May 5, 2009 9:17 PM

    You cannot guarantee that two objects will be consecutive in memory or that they will stay consecutive (as the object can be moved around to compact memory usage)
    This sort of optimisation could be very premature. You are likely to find other factors are much more important. I suggest you write a realistic program and use a profiler to see where time is being consumed.

  • Spry widget editting HELP!

    I am a new user of DW CS4, and have a "simple" question.
    I am creating a page with some Spry Validation widgets to
    collect some user information (Name, Phone, Email Address, etc. -
    nothing very complex).
    When I create the widgets, and fill out the Properties
    Inspector fields, everything looks to be OK - meaning that when I
    mouse-over the fields in DW, I see the blue SPRY tab like I expect.
    But, if I close the page (after saving), and re-open the
    page, I do not see the blue tab, nor do I see the SPRY Properties
    Inspector. It looks like a normal text Properties Inspector.
    Is there a configuration setting I am missing in DW?
    Do I need to attach a specific .css?
    Thanks for your help.

    You can start here for your spry menu.
    http://livedocs.adobe.com/en_US/Spry/SDG/index.html
    You can also use a background image in the container that you have your SM in. You can use in in conjuction with, or in place of images for the menu.
    For the gallery, I would look at third party products.
    gary

  • Extracting bridge metadata

    After adding info to the metadata, such as city, sublocation, state, description, I have to enter all the same data to an MSwroks database that i then import into MSAccess. 
    I thought maybe there was some way to just transfer data with the same field names and thought of adding more of  Windows Explorer tags.  The date created already is there so I searched the list and added city, and state, camera model, etc.  But then those fields and others were still blank, though filled in Bridge.
    .  So I am wondering how such information would get into Explorer to be displayed, if Bridge's categories aren't the same. 
    IS there any way to export such desired information from all the images in a folder.  I just finished supplying the data to another 800+ images recently shot and don't relish entering it all again into the MSWorks database.

    Hi Paul,.
    I tried the script and it worked well for me, except the state/rrovince was blank.  I think it must be from the category where the city and country wer before that didn't show.
    Previously it was a very convoluted procedure for me to get the info to my Access database.  I would first enter the info in MSWorks database, because of the time saver of the fill-down and fill series that MSAccess doesn't have.  After entering all the info I would save it as a text file and import into Access after assigned the fields, some of which had to be modified slightly as one for example would such as slide # and the other slide_#,  One I couldn't change and if I changed the other in ACCESS then all the queries and reports based on it would have to redone also..  I would get the fields to coincide and then do an append query to add to the main table.
    I had only one location field when I set up the database, and not separate ones as in Bridge, so city, state and country would all be in the same field. I would only add country when it was not US which was seldom.
    In anticipation of the ability to import the different location fields, I added city, state/province and country to the database, and then I spent about 8 hours creating hundreds of update queries, for each state, city and country to have the data of 166,000 records in the respective fields.
    I did a sma run yesterday with a folder that only had a couple dozen images.  I have to reorder the fields somewhat, but this is promising to be a huge time-saver and I look forward to using it when I have some much bigger downloads to convert.
    Thanks very much for all your help with this.

  • DW properties panel won't display properly ?

    Title pretty much says it. Ever sence i got DW the properties panel dozen't display all the its items. I have uploaded a screenshot of it. I have dual monitors and have tried adjusting the resoulution up and down on both of them I run one at 1400x900 widescreen and the other at 1280 x 1024 both 19 in monitors adjusting resolution on iether dosen't make a difference. Another thing I thought it might be is my system font size its set to medium 125% I haven't tried adjusting that because thats right where I want it.We choulden't have to adjust our computers to the software, it should be the other way around. One more thing dose anyone know how to adjust the font sise in bridge ? the folders panel font is real small.

    See
    CS4 Property inspector fields truncated (Windows)
    http://forums.adobe.com/thread/446724

  • How to rearrange the addressbook template?

    I want to change the order of the fields in the Addressbook entries. When I go to the Template tab in the Addressbook Preferences and try to move them it doesn't work. The Addressbook Help files say to "Click field labels to change which fields appear or to change their order." Clicking only brings up a menu to choose to change the name of the field. I've tried using a variety of key combos as well: command+click, ctrl+click, opt+click etc. How DO you reorder the fields?
    Mac Mini Intel core duo   Mac OS X (10.4.6)   1 gig RAM

    Welcome to Apple Discussions.
    You are on the right track, but the process is more cumbersome—and much more limited—than you expected. You cannot select and drag the fields or their labels. Instead, you must delete or add field within the bounds of any group already on the template, or of any group you add to it. The boundaries are shown by minus signs on red dots, or these symbols in combination with plus signs on green dots. Groups are separated by blank spaces or lines.
    To 'change the order' of the fields you must reorder them by changing the labels of existing records and add or delete additional fields within the groups, choosing appropriate labels for them. You cannot change the order of the groups themselves. Maiden name, for example, will always appear first if enabled. Dates, with the next data label defaulting to anniversary, will always appear beneath the birthday field, if that field is on the template.
    Groups [as defined above] appear in the body of a record in this order:
    • Maiden Name
    • Phone
    • Email
    • URL
    • Birthday
    • Dates
    • Related names
    • Instant Messaging
    • Address
    Those groups themselves cannot be reordered - only the fields within each group can be reordered by modifying the labels and adding or deleting fields.

Maybe you are looking for

  • How to find out which application the code is running in?

    Hi, I am trying to develop a common code which will be part of various different applications. But I need to be able to figure out within the Java application which process is calling me. For example: one of the applications may be invoked as: java /

  • UCCX 9.0.2 AXL account continues to fail on setup

    I am spinning up a new CUCM 10 and UCCX 9.0.2 lab for our engineering department to begin work on testing features of our product against and during the initial setup I tell the system I am doing a "fresh install", the next step is to insert the serv

  • Getting started with ni hardware

    Hi everyone, I am using NI hardware for the first time.Are there any video tutorials and pdfs which will tell me information about them? for example NI RIO, PXI, PCI. Their functions and how to use them? I have used compact DAQ by reading on NI site 

  • Leading zeros deleted while downloading to excel sheet

    Hi , i am downloading data to excel sheet  from internal table, iam using gui_download but its deletin leading zeros can any one tell me as to how i go about this for ex i ahve a mterial no : 00123 i see 123 i want it to be 00123 Thanks kajol

  • Premiere Pro CC v7.0 - MP3s corrupted during import with "Write XMP ID to Files on Import"

    Premiere Pro CC v7.0 - original MP3s corrupted during import with default "Write XMP ID to Files on Import" option I have just started using a Trial version of Premiere. I have a folder full of corrupted MP3 files after attempting to import them into