Is it a Bug or Feature;  wizards modify stuff with backing files checked in

When Jdev is used with an SCM, the wizards have a few love/hate features for me. :))
Hate: VO wizards show the SQL as inactive (greyed) and you can't browse any of
the VO config unless you check out the backing store.
Love / Hate: edit the JPR, connection, AM config, Entity attributes [refresh after,
change indicator etc] with the the jpr/xml files checked in. Doing a recompile actually
does affect what you local test if you change an Entity attribute property for example.
Don't know if you can deploy these changes too.
I'd prefer that the wizards error on the side of not allowing modification of checkin
src, but allow full browse (VO sql).
What's your thoughts?
curt

There's a bit of contention across the feature teams as to whether or not wizards and dialogs should support "read only mode" when they're based on files that are read only (this isn't really an SCM support issue as such, it generalizes to read only files). The last time I checked, a lot of the BC4J dialogs support read only mode. However, other features don't (e.g. UML modeler dialogs).
Some of the feature teams feel it's too much work to redesign UI so that it can support read only mode. However, for many of these areas, the SCM team are actively logging bugs. My argument for read-only UI is that this helps avoid the case where you make lots of changes in a dialog, only to discover that clicking OK fails because a file is checked in. This is not too bad for read only files (you can go off to the filesystem and change the attribute while the dialog is still on screen in JDeveloper). But for source control, it's a real pain, because you can't access the IDE's SCM features while the dialog is on screen.
We (the SCM feature team) are also actively working towards getting SCM more integrated into the IDE so that (for example), dialogs could prompt you if you want to check out files when you make changes in e.g. UML modeler dialogs and click OK. But this level of integration also requires change and consensus across the IDE feature teams so will take a while to appear (if at all).
Thanks,
Brian
JDev Team

Similar Messages

  • Modifying properties with a file for Web Service Stub used for Oracle Forms

    I have created a stubbed-out web service in JDeveloper (10.1.3.4) and imported into Oracle Forms.
    However, I would like to use a properties file to call the appropriate endpoint based on if the environment is dev, test, UAT or prod. I see that a properties file is referenced in the _Stub class. Here is a snippet of code from that class file:
    public CriticalChangeWS_Soap11_Stub(HandlerChain handlerChain) {
    super(handlerChain);
    setProperty(ENDPOINTADDRESS_PROPERTY, "http://epw-01.gds.graebel.com:8087/CriticalChange.svc/Soap11");
    setSoapVersion(SOAPVersion.SOAP_11);
    setServiceName( new QName("http://tempuri.org/","CriticalChangeService"));
    setPortName( new QName("http://tempuri.org/","CriticalChangeWS_Soap11"));
    setupConfig("wsquery/proxy/runtime/CriticalChangeWS_Soap11_Stub.xml");
    How can I use the XML file to set the ENDPOINT_ADDRESS_PROPERTY?
    Thanks.
    Jim O

    Hi Frank,
    I got the following two lines of code just to check if WebServiceConnection was able to read the connections file alright.
                String urlString = wsc.getWsdlUrlStr();
                System.out.println("WSDL URL: "+urlString);
    I am not using urlString for further processing.
    The output is
    WSDL URL: http://<host>/PSIGW/PeopleSoftServiceListeningConnector/MyService.1.wsdl
    java.lang.NullPointerException
            at java.lang.Class.isAssignableFrom(Native Method)
            at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:97)
            at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:118)
    The WSDL Url pointed to is the one that I configure in the connection while deploying the App.
    Ran a test and WSDL Url is accessible by the app.

  • 4.2.3/.4 Data load wizard - slow when loading large files

    Hi,
    I am using the data load wizard to load csv files into an existing table. It works fine with small files up to a few thousand rows. When loading 20k rows or more the loading process becomes very slow. The table has a single numeric column for primary key.
    The primary key is declared at "shared components" -> logic -> "data load tables" and is recognized as "pk(number)" with "case sensitve" set to "No".
    While loading data, these configuration leads to the execution of the following query for each row:
    select 1 from "KLAUS"."PD_IF_CSV_ROW" where upper("PK") = upper(:uk_1)
    which can be found in the v$sql view while loading.
    It makes the loading process slow, because of the upper function no index can be used.
    It seems that the setting of "case sensitive" is not evaluated.
    Dropping the numeric index for the primary key and using a function based index does not help.
    Explain plan shows an implicit "to_char" conversion:
    UPPER(TO_CHAR(PK)=UPPER(:UK_1)
    This is missing in the query but maybe it is necessary for the function based index to work.
    Please provide a solution or workaround for the data load wizard to work with large files in an acceptable amount of time.
    Best regards
    Klaus

    Nevertheless, a bulk loading process is what I really like to have as part of the wizard.
    If all of the CSV files are identical:
    use the Excel2Collection plugin ( - Process Type Plugin - EXCEL2COLLECTIONS )
    create a VIEW on the collection (makes it easier elsewhere)
    create a procedure (in a Package) to bulk process it.
    The most important thing is to have, somewhere in the Package (ie your code that is not part of APEX), information that clearly states which columns in the Collection map to which columns in the table, view, and the variables (APEX_APPLICATION.g_fxx()) used for Tabular Forms.
    MK

  • Is this BUG or Feature of APEX 4.0.1 - Any expert please help to answer

    Try this to stimulate the BUG or Feature
    - Development -
    1. Create Basic Master Detail with tabular form
    2. Create a basic LOV and display NULL -> RETURN NULL
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex smart enough to know user do not want to add anything very nice....
    now... observe this
    - Development -
    1. Modify the LOV, remove the display NULL, so it will show first value of the LOV
    - Run -
    1. Run the Page click "ADD ROW"
    2. Do not enter any data into the tabular
    3. Click on Apply Changes
    Apex don't bother to test all validations straight to GIGO and end user see those ORA-.
    I have a page that the tabular form has a default value (not LOV but default value) the validation is not working, GIGO....
    Any expert please explain is this suppose how Apex work? or do we need to handle those default value.
    I try to debug the page with good one and bad one, I think I still have a lot to learn I don't understand the debug message. I guess is something about Branching....
    Siere

    Hi,
    Unfortunately there isn't really much that could be done to work around this issue in 4.0.x. The validation logic treats these new rows as not having been touched by the user, hence they are ignored. But the DML (update/insert) logic thinks the data did change due to that default value, and thus attempts an insert for the new row. There might be a way to trick APEX into doing the right thing with some JavaScript, but I would advice against that, considering that this might break after a future upgrade.
    Regards,
    Marc

  • BUGS and FEATURES REQUESTED. Please add to it.

    I've been using the z10 for the past couple weeks and wanted to start a thread of comprehensive Bugs and Features Requested.
    I've labeled Bugs by letters (A,B,C...) and Features Requested by numbers (1, 2, 3...) so that others can add sequentially.
    BUGS
    (Not listed in any particular order)
    (A.) Contact App adds current date as birthday. When I edit my contact, the current date gets listed as the birthday in local contact.
    (B.) Duplicate telephone numbers listed. Telephone numbers show up twice in my Contacts (e.g.., if I have the contact's cell saved in (000) 123-4567 format and the person has the number listed in Facebook, I get a duplicate entry of +10001234567).
    (C.) Telephone numbers and emails are not actionable in Web pages. In webpages, I can't click on telephone number to call (e.g., I look up a phone number for a restaurant). I should be able to easily call or copy into the Phone App or E-mail App.
    (D.) Auto capitulation for words on the word substitution list is wrong. For example, when the word substitution contains more than one word. I have "ru" change to "are you" but if the first letter is capitalized (R) then both words become capitalized words (Are You). I used to have shortcuts like "mysig" to create email signatures with legal disclaimers but I can't do that now.
    (E.) Backspace delete doesn't work consistently. The Shift+Delete function seems only to work after moving the cursor. This feature is the Alt+Del action to delete words after the cursor.
    (F.) All Emoticons do not list. Emoticons do not all fit on the the two screens (lists) of emoticons. I.e., two columns are missing from view and can be seen when sliding (swiping) between the lists. Also, sometimes when I select an emoticon, it doesn't correspond with the picture of the one I intended. I believe this error is related. As a separate note, there should be a way to see the underlying symbols of the emoticon. (Often times, other people don't have BlackBerrys so I'd like to know what symbols would be sent--my prior 9800 would show the characters as i scrolled through them).
    (G.) BlackBerry keyboard doesn't always work in input fields. E.g., certain Web pages. (I found a work around; two finger swipe up from the bottom makes the keyboard appear)
    (H.) Sent messages stay unread. This seems to be an issue when an app sends an email (e.g., share article). The email with the sent indicator (checkmark) stays bold and I have listed 1 unread email. I can't mark as read/unread but if I delete the sent email, my unread message gets cleared.
    (I.) Contact already added but I get the option to add instead of view contact. For some contacts, I get the option to add to contacts in the action menu cascade when that person is already in my address book. This bug is for emails and text messages.
    (J.) Cannot call from text message. When I hold a text message and select call under the action menu cascade, the OS opens up the phone app but doesn't call.
    (K.) Composing messages by name. When composting messages, the input must be by first, middle and last name. It should be, instead, by string and include nickname. E.g., if the person's name is "Andrew B. Cameron" I must type the name in as such. I can't type in "Andrew Cameron" or "Andy Cameron."
    Features Requested and Suggestions for Improved User Experience
    (In no particular order)
    1)      Option to reply in different ways from the Call List. Be able to select a name in a call list and have options to call, text or email the person. The action menu allows calls to other numbers but I can't choose to text or email the contact instead. Sometimes, I missed a call and want to reply via text because I’m not able to talk. (Long hold on the Torch 9800 trackpad button brought up the action menu allowing me to call, text, view history, add to speed dial, e-mail, delete, etc.)
    2)      Option to reply in different ways from the Hub. Related to above, when selecting an item in the hub, have the option to contact the sender or caller with multiple different ways.
    3)      Only show number once in contacts application. Tap on the number to bring up the "action" cascade menu with options to call or text the number. Why is the same number listed twice (once to call and below again to text it)?
    4)      Timestamps for individual text messages. I can't tell exact time on individual text message if it comes in near the time of another text. All messages are in one "bubble."
    5)      Ability to select MMS or text for a message. Sometimes I write a text longer than 160 characters and I prefer it to be sent in one message (i.e., MMS mode) rather than being broken into one or more standard text messages. I had this ability with my 9800.
    6)      Send button should be moved for text messages!!! Why the heck is it right underneath the delete button?!? Or next to the period button? I often times have accidentally hit send when composing text. It's very annoying and embarrassing. (Also, what happened to the ability to hit enter for a return carriage to next line?)
    7)      Bigger magnifying glass. My finger is often over the area I need to place the cursor. I find it difficult and erratic to place the cursor.
    8)      Select all option. Add the option to select all text in action menu cascade.
    9)      E-mail recipients and message headers. Difficult to tell if you are one of many email recipients. Can we have a way to pull the email down to see the list of recipients rather than have to click to expand the header info? I know this request is a little picky, but that's how it was done in the previous BlackBerry OS which I preferred; it is easier and faster to pull the e-mail down and 'peek' to see which e-mail box received the message, message status, from and to fields. This change would be consistent with BB's flow/peek rather than click.
    10)   Browser navigation. Hold down back arrow to get a list of recently visited websites similar to a desktop browser.
    11)   Dark/Night mode. A night mode (maybe in the drop down menu) to change all the white and bright backgrounds to black or dark which would be helpful when reading/viewing things at night in bed/etc.
    12)   Number of contacts. Ability to see how many contacts I have.
    13)   What happened to groups or categories? I'd like to have back the ability to filter or see categories and also a way to contact everyone in a category. E.g., family or friends or coworkers, etc.
    14)   Shutter sound mute. I was at a wedding and wanted to take pictures during the ceremony but the shutter would was too loud.
    15)   East Asian Language Input. I bought my parents two Samsung Galaxy S3 phones over the weekend because they need Korean input (and the Kakao talk app). (BTW, S3 is a great phone but I prefer the Z10 after having the weekend to use the Android phones).
    16)   Ability to freely place icons on the homesreen. Currently, icons are forced top left-right-to-bottom. I prefer to space my icons out.
    17)   Add a contact to the homescreen. I'd like to place a shortcut (similar to a Webpage) to the homescreen for a contact which will open up the contact. Android allows this feature and so did my previous 9800.
    18)   Search Contacts by nickname. The contacts app doesn't allow me to search by, e.g., Andy, even if I have that as my contact's nickname. The previous OS allowed this type of search which was very helpful.
    Finally, as a note, I've been using the BlackBerry Z10 for the past 2 weeks and it's a great platform. I just bought two Samsung Galaxy S3 phones over the weekend for my parents so they could use the Korean language input and related features so I spent a lot of time with the Android platform, setting it up and teaching them how to use it. The S3 is a great phone too.
    I prefer, however, the way BlackBerry has done their OS 10 and the integrated management of messages.
    It's too bad that BB doesn't have Korean input and apps like Kakao Talk or I would have considered it for them.
    The BlackBerry 10 is a great platform and I look forward to the continual improvements that will only make the experience better.

    This is a great post.
    I couldn't have written it myself better.
    I'm also in dying need of Korean input as I can't communicate with my Korean friends.
    But I second every point.
    I hope the tech teams are reading this.

  • Drag File From Safari Download Window to Other Volume - Moves not Copies File - Bug or Feature ?

    Hi,
    Appreciate comment on what I thought was unusual Mac OS behavior.  Running Safari 5.1.5, OS 10.6.8.
    Mac OSs in my experience copy a file when it is dragged and dropped to another volume/drive. (Let's leave classic desktop out of this.)
    It may be the first time I've ever done it in any version of Safari, but just dragged a file directly from the Safari Downloads panel onto another drive's icon - and it appeared to "move" the file from its original download destination to the other drive and not simply copy it onto the other drive.
    Didn't look like a copy and standard Finder delete since I didn't see file in the trash, although it was gone from the finder window for the download folder (Desktop in my prefs), and afterwards Safari Download Window magnifying glass icon "can’t show the file “filename” in the Finder because “filename” has moved since you downloaded it." It's reproducible.
    Assuming it's not unique to my configuration, is this a bug or "feature" ?
    Thanks.

    HI,
    From the Safari Menu Bar click Safari/Preferences then select the General tab.
    You can deselect: Open "safe" files after downloading.
    Carolyn

  • Bug or feature : Using portlets with edit mode on a page in the portal

    Hi,
    i am using Workshop 8.1 (GA release july) and i have discovered a bug (or a
    feature) with respect to the beta version.
    i have created a simple portlet with a view mode and an edit mode. When i
    place the portlet on the very first page of a one book portal, it works
    perfectly. However, i have a book with three pages and placed the portlet on
    the second page. Now when i put the portlet in edit mode, by clicking the
    edit button, i am directed to the first page of the portal and the portlet
    will not show.
    Inspection learned that the URL generated for the edit button, didn't
    contain the _pagelabel parameter. When i added the parameter manually it
    works fine.
    A final remark is that the buttons in the titlebar have no icons the browser
    can load.
    hope someone can help me out,
    Lodewijk

    Can you please post this question to weblogic.developer.interest.portal
    newsgroup.
    Thanks
    "Lodewijk Spijker" <[email protected]> wrote in message
    news:3f165945$[email protected]..
    Hi,
    i am using Workshop 8.1 (GA release july) and i have discovered a bug (ora
    feature) with respect to the beta version.
    i have created a simple portlet with a view mode and an edit mode. When i
    place the portlet on the very first page of a one book portal, it works
    perfectly. However, i have a book with three pages and placed the portleton
    the second page. Now when i put the portlet in edit mode, by clicking the
    edit button, i am directed to the first page of the portal and the portlet
    will not show.
    Inspection learned that the URL generated for the edit button, didn't
    contain the _pagelabel parameter. When i added the parameter manually it
    works fine.
    A final remark is that the buttons in the titlebar have no icons thebrowser
    can load.
    hope someone can help me out,
    Lodewijk

  • Bug list/feature observations for BB10 on Z10

    BUG LIST/FEATURE OBSERVATIONS - Z10/BB10:
    1. CRITICAL granular control of notifcations/alerts e.g. a different sound/volume/vibration per mailbox or alert type has been completely removed in BB10 and needs to be reinstated as an urgency
    2. support for BBM and Calendar in Landscape mode is missing. A workaround for BBM can be found via the Hub, not the BBM icon.
    3. the sound alert for a text message sometimes doesn't play. It seems to vibrate okay, but every 5th or so text message, it doesn't play the alert sound.
    4. CRITICAL if you set the display format for your emails to 'conversation style' (so that messages on the same thread are grouped - very helpful) but a folder which one of the messages is in isn't synced, then fresh inbox replies to that chain won't get shown to you in the Hub. It transpires that /GOOGLEMAIL/SENT ITEMS is a sub folder that's affected by this. It means any chain you reply to using your Blackberry, subsequent replies will not be displayed in the Hub. "Solution" is to disable 'conversation style' for thread display.
    5. WhatsApp, Bloomberg Mobile (not the terminal login App) and BeBuzz should be top App conversion targets.
    6. when you click the Text Messages icon it should take you to your text messages, not the Hub (which is what happens if you have an email open).
    7. the lock screen currently has just one icon for emails - ALL emails, regardless of mailbox. It has a fairly generic number for unread messages in ALL of the boxes combined e.g. "200 emails" - this needs to be split our per mailbox.
    8. opening a tenth App closes a previously opened App. It should ask you before closing the other App as it's a pain if the App it kills is Skype, Voice, Maps etc
    9. the current battery icon is too small to tell the difference between 30% and 15% (for example) - touching it should display the %, or something similar.
    10. the screen rotation can be extremely slow. Often you can count 1.. 2.. 3.. 4 before the screen switches orientation. Given how often you'll switch between orientations during use, it quickly gets annoying. 
    11. when the screen finally rotates (see point 10) the position your cursor was in in the previous orientation is lost
    12. it's not quick to put a question/exclamation mark into text. Fine, have a sub menu for general punctuation - but not these extremely common marks (which is exactly why comma and full-stop (period) are full-time keys)
    13. the super-useful "delete from device OR delete from device & server" has been removed entirely!
    14. using the browser in Landscape mode means "open in new tab" is in a sub-menu. As it's one of the most used features in any browser, and unlike Apple iOS you can't just hold a press to activate 'open in new tab', it really slows you down.
    15. sometimes numbers are included in the on-screen keyboard, sometimes not. Can they be made permanent?
    16. twice now my 'enter password to unlock' screen has appeared without the keyboard, meaning I couldn't enter my password. About 2 times out of 200, or 1%
    17. new messages - have some small icons in the status bar at the top of the screen rather than require a swipe UP&RIGHT to see the Hub
    18. in the Hub, the icons for each message don't show if the message was successfully sent. To check if an email/text was sent okay, you have to go into the message (2 levels)
    19. you STILL can't see when a text message you received was actually sent by the other party. Quite a basic function.
    20. you STILL can't swap email accounts when forwarding a message
    21. Calendar reminders often don't trigger the red LED. In fact, the LED is generally pretty inconsistent, often not flashing, or flashing only for a short while.
    22. the device supplied ring tones/alert tones are pretty terrible and you cannot set variable volume levels (see point 1).
    23. you can select .mid files for your ringtone even though these aren't compatible (when someone calls, your phone will be silent).
    24. there's an awkward 3 second pause between clicking Send and a text message actually sending. Why awkward? Because you then have to wait/waste 3 seconds waiting to see if your click was registered, and if the message was sent.
    25. GMAIL - boring standard message in the Inbox, no labels or anything funky - Universal Search won't find it if it's more than 1 WEEK old?
    26. The power-user controls for Universal Search seem to have vanished? Indexing, Extended Search etc? All you can choose now is "source"?
    27. Weird one this. The phone stopped ringing! Checked and double-checked all Notification settings, even did a reboot but nope, phone will not ring for an incoming call! A fresh reboot finally fixed it - I was using a 206kb mp3 which may or may not be relevant
    28. I'd love to know why G Maps is missing (assume aggressive move from Google?)
    29. it's sometimes tricky to clear Missed Calls. I think you might have to go into the Missed Calls menu and then sub menu? Seems to be more effort than it should be - previously you just clicked the Dial button once to view and presto, missed call indicator cleared. Hardly a huge thing but then as with a lot on this list, it's all about saving a second here, a second there = a big saving over the day or week.
    30. Contentious I know, and certainly not a 'fault', but the charging points are gone so I can't get a desktop stand (ironic given the battery life is now more of an issue)
    31. when composing a text message you'd don't see the conversation history for that contact until you've sent the new message.
    Thanks
    edit: numbering

    CRITICAL:  You cant control the image size for pictures when sending as attachemtns in email. In previous Os 6 & 7 you could select, "smaller, mide size, large or original". These options are gone.

  • Bug or Feature with SharePoint Surveys?

    I was experimenting with different options to see if I could change how survey data got exported to Excel and something surprising happened that gave me exactly what I want.  My concern is that it might be a bug, rather than a feature; although I'm
    hoping it's a feature.  This deals with the limitation that you only see the "Export to Spreadsheet" option when you are on the "Overview" view of the survey.
    WARNING: I've been unable to restore my survey back to the original state after making these changes, so make sure you are using a new or throwaway survey before following these steps.  Of course, if it's a feature, I'll assume there is a way to reverse
    it, but I haven't found it yet.
    1.  Create a new simple survey with a few simple questions.
    2.  Add a few responses to the survey.
    3.  Go to the "Overview" view of the survey.  (make sure "Export to Spreadsheet" appears in the "Actions" dropdown.  If not, see other posts here to resolve that.  If you go to the "All Responses"
    view, the "Export to Spreadsheet" option is not on the "Actions" menu.  That's by design; the limitation I'm trying to circumvent.)
    4.  From the "Site Actions" dropdown in the far upper left, select "Edit Page."
    5.  Over on the right side, in the white bar that's below "Add a Web Part," you should see a checkbox and, to the left of the checkbox, a little dropdown arrow.  Click that dropdown arrow to expose the menu (see graphic).
    6.  Select "Edit Web Part."
    7.  On the right, change the "Selected View" to "All Responses."  See graphic.
    8.  Click Ok
    9.  Click Ok again on the dialog box that appears.
    10.  Go back to your survey.  Notice that the "Overview" view is now showing the "All Responses" view, even though you are actually seeing all the responses, and that you still see "Export to Spreadsheet" in
    the "Actions" dropdown.  You can now add columns to your view and export those to the spreadsheet.  :-).  So, is this a bug or a feature?
    "Six Sigma Black Belts know how to handle rejection"

    all list view pages are just web part pages... which can be used for very powerful combinations (like having filter web parts connected to the list view web part, or replacing the default list view web part with custom forms)... just be careful not to delete
    the default list view web part (minimize if you need), since it has some associations that can't be recreated.
    You can also create basically the same thing by creating a new view, and choosing to base the new view from the "All Responses" view.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Bug or feature: Finder's sidebar and shared drives

    I don't know if this is a bug or an incomplete feature.
    I have a Windows fileserver on the network. In Finder if I go to afp://<ipaddress> and authenticate with name and password I get a window with the list of available Apple shares. So far so good, just like Tiger. When I choose ONE drive I want, however, the Finder sidebar does not show the drive but shows the server itself and clicking the servername shows ALL available shares. I can click anyone I want and view the contents.
    If the Go To process didn't ask for which drive I wanted to connect to, that'd be great since the sidebar display them all anyways.
    It's a bit odd though. In list view there's no triangles to expand the folders, and it seems odd that the Go To process asks which drive to connect to but then give you all of them anyways. But I certainly like not having to choose which drives I want to connect to.
    Bug or feature? I'm rooting for feature.

    supersolenoid wrote:
    I've recently noticed some very strange behavior when I use exposé with windows minimized and applications hidden.
    When applications are hidden, their windows do not appear in exposé, which seems reasonable.
    But windows that were minimized before hiding the application continue to appear in exposé even while they are not shown in the dock.
    Is this normal behavior? It's irking the **** out of me.
    yes, it's normal behavior. minimized windows show up in exposé but are smaller than non minimized windows. Personally, I like it that way. and when you choose the option to minimize to the application this is the easiest way to unminimize them. but if you are not happy with this you can send apple feedback on the issue
    http://www.apple.com/feedback/macosx.html

  • BUG or Feature?   Width & Height in Top Bar only in %, not in Pixel no Chance to change this

    Hello
    --- First: Please, im very sorry for my bad spelling - english is not my native language! Hope u can understand, what i mean. If it sounds bad or yelling someone - its not my intention! ---
    My Question:
    If i do Strg+T with a layer (ie. image or shape) in previous version you have the width & height in top bar and can easily read it or change when typing a new value in. With right mouse (Win) you can change % in px or em etc.
    In my Photoshop CC 14.2 i have only % and cant change this.
    If i try to read the dimension i can only see it on the info-panel.
    Its confusing. Is it a Bug or Feature?
    MJ

    anyone?
    .... alone ....

  • Bug or feature? -- Unconditional branch using "Go To Page &P12_PREV_PAGE."

    I have used unconditional branch "Go To Page &P12_PREV_PAGE." successfully for updating a table record page and then returing to the previous page stored in the P12_PREV_PAGE item.
    But the same approach failed when I deleted a table record page. Although the P12_PREV_ITEM item stored the correct page number, after deletion the returned page was always Page 0.
    Is this a bug or feature?

    I tried to use application item like F36035_PREV_PAGE instead of page item P12_PREV_PAGE.
    The problem was solved.

  • Bug or feature limitation: can't pin header on Phone version of site

    Hi,
    Check out this file. Look at it in phone view. Preview and note that I can't pin the header/nav.
    Bug or feature limitation?
    Dropbox - MicrositeRedesign04.muse.zip
    Dave

    It isn't a bug. It is a limitation of mobile browsers. Pinning isn't supported by mobile devices.
    However you are in luck as Muse has built in another way to do it. Use the scroll effects instead and set the values to 0 which essentially does the same thing as pinning.

  • Bug or Feature in 1.5.0?

    Bug or Feature in 1.5.0?
    My exsisting code behaves different in 1.4.x. and 1.5.0 Runtime environment.
    I have roughtly the following code:
    import java.util.*;
    // any java.sql.* is NOT importet
      Activitylog al = whatever... // init
      Date lastInvDate = al.getDate();
      Date invDate     = invoice.getInvoiceDate();
      if(lastInvDate.compareTo(invDate) < 0) {  // <- Exception hereException in thread "Thread-50" java.lang.ClassCastException: java.sql.Date
         at java.sql.Timestamp.compareTo(Unknown Source)
         at ***********.validateCancelledAccount(ValidateInvoice.java:1195)
    al.getDate() Sourcecode in Activitylog: public java.util.Date getDate() {
    but initial the Date inside Activitylog was created by
    java.sql.Resultset rs = whatever... // init
    Date date = rs.getTimestamp(3);With 1.4.X the Code works as i expected.
    lastInvDate.compareTo(invDate) < 0is calling java.util.Date.compareTo(java.util.Date)
    but with 1.5.0_04
    lastInvDate.compareTo(invDate) < 0 is calling java.sql.Timestamp.compareTo(java.sql.Timestamp) and leads
    to the ClassCastException
    Is it a bug or a feature of 1.5.0?

    Well it looks like your exact problem is listed on that incompatibility list:
    JDBC - As of 5.0, comparing a java.sql.Timestamp to a java.util.Date by invoking compareTo on the Timestamp results in a ClassCastException. For example, the following code successfully compares a Timestamp and Date in 1.4.2, but fails with an exception in 5.0:
    aTimeStamp.compareTo(aDate) //NO LONGER WORKS
    This change affects even pre-compiled code, resulting in a binary compatibility problem where compiled code that used to run under earlier releases fails in 5.0. We expect to fix this problem in a future release.
    For more information, see bug 5103041.
    Michael Bishop

  • Bug or feature?. Can`t input symbol in inputfield in webdynpro screen.

    Hi all.
    Sometimes in EP after open webdynpro sreen inputfield available for input (focused field is yellow), BUT cursor is not visible in field and i can`t write text.
    I try open screen without EP and can`t view this bug.
    Maybe couse in EP?
    SAP Netweaver 701 SP05

    a quick hack around the not-taking-null text might be an adapter property which does nothing but return an empty String if its value is null
    public class NullStringAdapter extends StringProperty {
         * @inherited <p>
        @Override
        public String get() {
            String value = super.get();
            return value != null ? value : "";
    // usage
    StringProperty adapter = new NullStringProperty();
    adapter.bindBidirectional(myRealProperty);
    textBox.rawTextProperty().bindBidirectional(adapter);not completely tested, got side-tracked by a quick test not working at all (see Bug or feature: "weak" bidirectional binding? Nasty: looks like the adapter has to be a field somewhere instead of a local member - otherwise the binding simply vanishes ...
    Cheers
    Jeanette

Maybe you are looking for

  • Error 50 during iTouch iOS 5 backup restore in windows vista

    Hello! I upgraded to iOS 5 recently. There wasn't enough space in c drive for back up. So I cut few program files and pasted in D drive. After the upgrade happened, I pasted the program files back to C drive.Then iTouch back up wasn't happening. It s

  • VPN issue on 10.8.5 - is there a way to do a full reset?

    Regardless of where I am connected from (various different WIFI networks), I am not getting  a login prompt for all of my VPN connections (all Cisco IPSec). This symptom only started manifesting aftrer I got my maboook back from Apple after a repair

  • Clearing charges

    Hi friends, While doing MIRO the clearing charges are being crediting to main vendor account. Have maintained the clearing agent vendor code in PO condition tab for all the items. Still it is crediting main vendor. Can anybody tellme what might be th

  • [jaxrpc] defining web services and WSDL spec

    Greetings, I'm starting in JAXRPC web service's concepts and its WSDL specification. After I tested some samples from the jaxrpc tutorial, I tried to make my custom web service, but, I have problems when I deploy the web service and I tried to see in

  • Moving GIF images

    Hi Earler I had Golive and could make moving GIF images in a timeline. Can ayone tell me how it works in Dreamweaver CS4? ...from the beginning.. Sten, Boras, Sweden