Group by Cover view has strange behavior

I've got a bunch of MP3s from the SXSW Showcased Artist music downloads that go out every year. When organizing by Album under the group by cover view, all of the album entries decide that they want to be segregated by artist as well.
This completey breaks the functionality of the group by cover feature as now I have about 1000 intermittent entries in my library.
For other albums with several artists listed, there is no issue.
Anyone know what's causing this fruity behavior?

It sounds like you don't have compilation checked in the album options, therefore reading each artist as a separate release? Not sure as I haven't fiddled with the new Itunes yet, but I'd have similar problems with arranging my files in Itunes 6. Hope that might help.

Similar Messages

  • SQL query has strange behavior on sql server 2014

    Hi All,
    I have a very weird situation where a front end entity framework query (cannot be modified easily) made up of SQL views that are used in subquery format. It generally runs within few seconds but there are times in the day when query just keep on going and
    sometimes start spitting results very slowly and at other times no result but keep on executing. Sysprocesses table shows sos_scheduler_yield wait type when query is running and not returning results. This behavior started on the query since the database was
    upgraded (migrated) from sql 2005 clustered enterprise instance to a new 2014 Enterprise clustered instance on a very powerful server.  This query is used by a batch process and what I have found that if we rebuild indexes on the database (takes
    only 2 mins) , the query appears to be returning results as expected. No other solution is working at the moment. The query had no issue on older sql 2005 instance and I have tested it their a few times. I am assuming it is a SQL 2014 related issue and found
    a fix on CU 5 for sos_scheduler_yield but it has not fixed the issue. At this point SQL 2014 is on latest CU 6 as of last week and index rebuilt wis the only viable work around to get the query going without interruption.
    Has anyone faced this issue on SQl 2014 or have some suggestions I can try. I can reproduce this error on at least two instances on SQL 2014. I have even tried setting max dop at server level to 1 and at half the total processors cores but to no avail. There
    is a 750GB memory on the box.
    Thanks
    dba60
    dba60

    First of all, SOS_SCHEDULER_YIELD has nothing to do with the query as such. SQL Server has a co-operative operating system, which means that processes voluntary yields to permit other threads to executes. This sends them to the wait state SOS_SCHEDULER_YIELD.
    If there is no other process executing, they are directly back in the game.
    The problems with your query is most likely to be an issue with the query plan. It is not uncommon to see plan changes when you move from one version of SQL Server to another because of changes in the optimizer.
    As Satish says, SQL 2014 has a new cardinality estimator (CE), which certainly can change the game. Check the compatibility level of the database. If the compat level is 120, you are using the new CE, else you are using the old one.
    If the level is 120, the first check is to change it to 110 to see if this has any effect. 
    But in the end you will have to work more with the query. Analyse it to see if it can be improved by adding indexes. You say said that this query generated by Entity Framework. Unfortunately, this is an indiciation of that the query is not the best and could
    serve from a rewrite.
    The ultimate rescue would be to freeze the plan when it runs well. I have some text about this here:
    http://www.sommarskog.se/query-plan-mysteries.html#planguides
    Erland Sommarskog, SQL Server MVP, [email protected]

  • JPA Entity persistance has strange behavior

    Hello all,
    Well first off I apologize if this is in the wrong place as I am not using J2EE but J2SE with JPA and Spring 2.0. My issue is very simple but also very strange and I am unable to diagnose the problem. What I have is a method that persists an object after it has been created from a web form. The object has been Validated and there are no errors. When I call the method from one place in my code it doesn't work at all, however when I call the method from a different place it works perfect. I have used my debugger to check the objects and from what I can tell everything is identical each time the method is called. The other strange part is there is no Exception thrown at all it just doesn't save to the DB. Please let me know if you need more information or would like me to post some code. Any information anyone can provide or point me to is greatly appreciated.
    Justen.

    Ahh yes, I didn't realize that I was using a different service class for my "cycle" entity and didn't set up any of my transaction stuff in my config file, but I had for my other service class that the "item" and other entities use. Thank you very much this fixed my problem.

  • IPP printer migration has strange behavior

    We have PM from the 6.5 suite. We set up a template to migrate printers, My Documents, and bookmarks. It collects the DNA correctly. when it restores it (Windows 2000 to Windows 2000, or Windows 2000 to Windows XP), everything comes back...EXCEPT we get a shortcut on the desktop that says "Reconnect ipp/..." which points to the ipp printer that was collected. When you click on this shortcut, the Add Printer wiz starts.
    IF you REBOOT after the DNA restore without clicking on this shortcut, it will disappear when the customer logs in, but then the Add Printer starts automatically. If you CANCEL the add printer, everything works fine, and the ipp printer is present and correctly installed.
    Is this correct behavior? How do I eliminate the shortcut/add printer wizard from starting since it appears it is not needed?
    thanks
    Jeff Ferris
    Network Manager
    512.239.1041
    [email protected]

    Jeff,
    It appears that in the past few days you have not received a response to your posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at http://support.novell.com in both the "free product support" and "paid product support" drop down boxes.
    - You could also try posting your message again. Make sure it is posted in the correct newsgroup. (http://support.novell.com/forums)
    If this is a reply to a duplicate posting, please ignore and accept our apologies and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • AutoDynamicStreamSwitch has strange behavior

    I have an F4M file playing through my mediaPlayer and the autoDynamicStreamSwitch property set to true. I also have the DynamicStreamEvent.AUTO_SWITCH_CHANGE listener applied to my mediaPlayer. I have a break point set up for my listener function but it never fires (hence, indicating a stream switch). If I trace out mediaPlayer.currentDynamicStreamIndex it shows that it switches from stream 0 to stream 5 (only stays on 5 briefly) and then it switches back to stream 0.
    So, two questions. 1) Do I have my stream switching listener set up correctly? 2) Why does it only switch between the highest and lowest stream and not the streams in between?
    I can provide more details if needed. Thanks!

    There is a bug with live stream switching in OSMF, for which I implemented a work-around in StrobeMediaPlayback:
    http://sourceforge.net/adobe/smp/svn/LATEST/tree/trunk/player/StrobeMediaPlayback/src/org/ osmf/net/RTMPDynamicStreamingNetLoaderAdapter.as
    The workarround simply removes the InsufficientBufferRule for live streams (see line 80),
    We will contribute all the work-arounds implemented in our player back to the OSMF once we sync with the OSMF trunk.
    Hope this helps,
    Andrian

  • Strange behavior on my network... Has my home system been compromised?  A disgruntled employee (sysAdmin) could have full access...worried...

    I have been experiencing a lot of strange behavior on my home network ever since a disgruntled employee was let go.  He was a server admin and had root access to my home network - where I run my business.  I am getting a ton of span now, my websites were all infected with xss hacks, and many of my accounts are blacklisted.  I did a clean install and DoD erase pass on my hardware, but I still see a lot of errors and my hosts file and VMs look very odd.  not to mention the extremely odd loops in my ifconfig...  Any help? 
    Here is an output of 'ifconfig'
    (FYI, I am a software dev, so feel free to speak the jargon and ask for specific things)
    (I hid any identifying info with either xx or my:ma:ca:dd:re:ss or something like that)
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
        options=3<RXCSUM,TXCSUM>
        inet6 ::1 prefixlen 128
        inet 127.0.0.1 netmask 0xff000000
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
        nd6 options=1<PERFORMNUD>
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0<> mtu 1280
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        options=10b<RXCSUM,TXCSUM,VLAN_HWTAGGING,AV>
        ether th:is:ad:dr:es:s1
        inet6 fxxx::xx2a:xxff:fxxx:fxxx%en0 prefixlen 64 scopeid 0x4
        inet 10.xx.xx.x netmask 0xffffff00 broadcast 10.xx.xx.xxx
        nd6 options=1<PERFORMNUD>
        media: autoselect (1000baseT <full-duplex,flow-control,energy-efficient-ethernet>)
        status: active
    en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether th:is:ad:dr:es:n1
        inet6 fe80::e2f8:47ff:fe29:6ec2%en1 prefixlen 64 scopeid 0x5
        inet 10.xx.xx.x netmask 0xffffff00 broadcast 10.xx.xx.xxx
        nd6 options=1<PERFORMNUD>
        media: autoselect
        status: active
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 4078
        lladdr 70:cd:xx:ff:fe:xx:xx:xx
        nd6 options=1<PERFORMNUD>
        media: autoselect <full-duplex>
        status: inactive
    en2: flags=8922<BROADCAST,SMART,PROMISC,SIMPLEX,MULTICAST> mtu 1500
        options=60<TSO4,TSO6>
        ether my:wi:fi:ma:ca:dd
        media: autoselect <full-duplex>
        status: inactive
    bridge0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        options=63<RXCSUM,TXCSUM,TSO4,TSO6>
        ether th:is:ad:dr:es:mtu
        Configuration:
            id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
            maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
            root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
            ipfilter disabled flags 0x2
        nd6 options=1<PERFORMNUD>
        media: <unknown type>
        status: inactive
    p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304
        ether th:is:ad:dr:es:p2p0
        media: autoselect
        status: inactive
    vmnet1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether 00:50:56:c0:00:01
        inet 192.168.48.1 netmask 0xffffff00 broadcast 192.168.48.255
    vmnet8: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether 00:50:56:c0:00:08
        inet 192.168.219.1 netmask 0xffffff00 broadcast 192.168.219.255
    ppp0: flags=8051<UP,POINTOPOINT,RUNNING,MULTICAST> mtu 1396
        inet my.ded.vpn.xx --> 192.xxx.xxx.xxx netmask 0xffffff00
    nooooooo:~ cearnhart$ ifconfig
    lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
        options=3<RXCSUM,TXCSUM>
        inet6 ::1 prefixlen 128
        inet 127.0.0.1 netmask 0xff000000
        inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
        nd6 options=1<PERFORMNUD>
    gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    stf0: flags=0<> mtu 1280
    en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        options=10b<RXCSUM,TXCSUM,VLAN_HWTAGGING,AV>
        ether th:is:ad:dr:es:s1
        inet6 xxx::xxxx:xxff:xxxx:fxx2%en0 prefixlen 64 scopeid 0x4
        inet 10.xx.xx.x netmask 0xffffff00 broadcast 10.x.x.xxx
        nd6 options=1<PERFORMNUD>
        media: autoselect (1000baseT <full-duplex,flow-control,energy-efficient-ethernet>)
        status: active
    en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether th:is:ad:dr:es:n1
        inet6 fxxx::xxf8:47ff:fxx:6xx%en1 prefixlen 64 scopeid 0x5
        inet 10.x.x.x netmask 0xffffff00 broadcast 10.x.x.xxx
        nd6 options=1<PERFORMNUD>
        media: autoselect
        status: active
    fw0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 4078
        lladdr xx:xx:xx:ff:fe:xx:5f:xx
        nd6 options=1<PERFORMNUD>
        media: autoselect <full-duplex>
        status: inactive
    en2: flags=8922<BROADCAST,SMART,PROMISC,SIMPLEX,MULTICAST> mtu 1500
        options=60<TSO4,TSO6>
        ether xx:00:1e:xx:xx:xx
        media: autoselect <full-duplex>
        status: inactive
    bridge0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        options=63<RXCSUM,TXCSUM,TSO4,TSO6>
        ether th:is:ad:dr:es:mtu
        Configuration:
            id 0:0:0:0:0:0 priority 0 hellotime 0 fwddelay 0
            maxage 0 holdcnt 0 proto stp maxaddr 100 timeout 1200
            root id 0:0:0:0:0:0 priority 0 ifcost 0 port 0
            ipfilter disabled flags 0x2
        nd6 options=1<PERFORMNUD>
        media: <unknown type>
        status: inactive
    p2p0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> mtu 2304
        ether th:is:ad:dr:es:p2p0
        media: autoselect
        status: inactive
    vmnet1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether 00:50:56:c0:00:01
        inet 192.168.48.1 netmask 0xffffff00 broadcast 192.168.48.255
    vmnet8: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
        ether 00:50:56:c0:00:08
        inet 192.168.219.1 netmask 0xffffff00 broadcast 192.168.219.255

    If you know or suspect that a hostile intruder has either had physical access to it, or has been able to log in remotely, then there are some steps you should take to make sure that the computer is safe to use.
    First, depending on the circumstances, computer tampering may be a crime, a civil wrong, or both. If there's any chance that the matter will be the subject of legal action, then you should do nothing at all without consulting a lawyer or the police. The computer would be the principal evidence in such a case, and you don't want to contaminate that evidence.
    Running any kind of "anti-virus" software is pointless. If I broke into a system and wanted to leave a back door, I could do it in a way that would be undetectable by those means—and I don't pretend to any special skill as a hacker. You have to assume that any intruder can do the same. Commercial keylogging software—which has legitimate as well as illegitimate uses—won't be recognized as malware, because it's not malware.
    The only way you can be sure that the computer is not compromised is to erase at least the startup volume and restore it to something like the status quo ante. The easiest approach is to recover the entire system from a backup that predates the attack. Obviously, that's only practical if you know when the attack took place, and it was recent, and you have such a backup. You will lose all changes to data, such as email, that were made after the time of the snapshot. Some of those changes can be restored from a later backup.
    If you don't know when the attack happened, or if it was too long ago for a complete rollback to be feasible, then you should erase and install OS X. If you don't already have at least two complete, independent backups of all data, then you must make them first. One backup is not enough to be safe.
    When you restart after the installation, you'll be prompted to go through the initial setup process for a new computer. That’s when you transfer the data from a backup in Setup Assistant.
    Select only users in the Setup Assistant dialog—not Applications, Other files and folders, or Computer & Network Settings. Don't transfer the Guest account, if it was enabled.
    Reinstall third-party software from original media or fresh downloads—not from a backup, which may be contaminated.
    Unless you were the target of an improbably sophisticated attack, this procedure will leave you with a clean system. If you have reason to think that you were the target of a sophisticated attack, then you need expert help.
    That being done, change all Internet passwords and check all financial accounts for unauthorized transactions. Do this  after the system has been secured, not before.

  • Strange Behavior with gMSA in Server 2012 R2

    Greetings,
    I have been doing some testing with gMSA Accounts in a Server 2012 R2 environment (two separate environments, actually), and I have noticed something very strange that occurred in both environments, which does not appear to be occurring in one of our customer's
    self-managed environments.
    We created a Group Managed Service Account using the following article:
    http://blogs.technet.com/b/askpfeplat/archive/2012/12/17/windows-server-2012-group-managed-service-accounts.aspx
    Everything went smoothly, and the account installs/tests successfully on both of the hosts that we are testing on. I am able to set my services to run under the account, and most of them appear to work fine. I am having some issues with a few of my services,
    and I believe that the strange behavior I am seeing may have something to do with this - described below: 
    As soon as I set the service's Log On Account (via the Log On Tab under the Service's Properties), the entirety of the "Log On" tab changes to "greyed out," and I am unable to change the Log On account back via the GUI (Screenshot
    attached).
    I found that I am able to successfully change the account via Command Line using sc.exe, but the Log On tab remains greyed out! So far, I have found nothing to remedy this, but confirmed that it happens for any service I set to use the gMSA as the Logon
    Account, and that it happens in 2 separate test environments, but not in a Customer's production environment - very strange.
    All servers in this environment are running Server 2012 R2, and domain Functional Level is currently Server 2012.
    I have been unable to find any information online about this behavior, so I am hoping someone has seen this before, and can explain why this is happening.
    Nick

    VIvian,
    Yes, we used the Install-AdServiceAccount gMSA command on each host using the gMSA account, and then ran Test-AdServiceAccount gMSA, which returned "True."
    However, one thing I noticed is that if I run Test-ADServiceAccount gMSA as a Local Administrator, it fails with the following:
    PS C:\Users\Administrator> Test-AdServiceAccount gMSA$
    Test-AdServiceAccount : The server has rejected the client credentials.
    At line:1 char:1
    + Test-AdServiceAccount gMSA$
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : SecurityError: (:) [Test-ADServiceAccount], AuthenticationException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.A
       ctiveDirectory.Management.Commands.TestADServiceAccount
    If I run Test-ADServiceAccount gMSA as Domain Administrator, it returns true:
    PS C:\Users\Administrator.<domainname>> Test-AdServiceAccount gMSA$
    True
    Is this normal?
    Overall, I think the issue I am running into is at the Application Level, and not a problem with the gMSA, as it appears to be working. (Can Start/Stop services without any issues). I will be investigating my issue further with 3rd-party vendors, unless
    you think there is something wrong with my gMSA accounts based on the information I have provided.
    Nick

  • Strange behavior in Contacts 'Note' field

    I am getting strange behavior in the 'Note' fields of my contacts. I am sending out my Christmas cards and, in the process, making a lot of comments in the 'Note' field. Here is what has been happening.
    Notes disapper from one or many contacts.
    Text from one note gets inserted into the note of several other contacts, replacing whatever content was previously in that contact.
    The common thread here seems to be that the changes are being applied across all the notes in a Smart Group (I use a number of keywords to create Smart Groups).
    A few questions.
    Is my contact database corrupted in some way? If so, can how can I clean it up?
    Are other people experience erratic behavior in the 'Note' field?
    Is there any way that I can use the 'Note' field reliably?
    As it is, the 'Note' field is essentially useless to me … and the address book is increasingly frustrating.
    Many thanks,
    Heather

    Others are seeing this problem. I posted a reply to another link and was told to submit feedback to Apple.
    https://discussions.apple.com/message/20537471#20537471

  • Distorted Album Cover Images In Cover View Mode

    I have recently developed a problem where a number of album covers appear distorted (lines, dots etc.)when in the cover view only.
    The same album when viewed in the grouped or list mode displays the correct image in both views.
    Please Help

    i am probably being bad taking this topic to three different threads. strange thing there is no button for me to start my own new thread.
    try this...copy album to artist album and grouping, each album done seperately of course. its a work around for me. i think artist ablum and grouping is redundant. if i sort by artist, thats fine to split them all up, but if i click album, it should group them all together in any view. (i can see the use for grouping, but then playlist or genres can do the same job.

  • Album cover view for Radio does not match current song playing

    I'm currently listening to the Pop Genre radio station. The play list for this station has clearly been updated recently. I listen to this often and there are many new songs currently on. Something strange has happened with this most recent update. The album cover view no longer matches the song currently playing, so you can no longer use the Thumbs Up or Thumbs Down function to improve the station play list.

    Can you try reinstalling Spotify to see if this fixes the problem?
    There have been several reports of this recently and everyone was able to solve this by reinstalling. 

  • Grouped with artwork view separates songs with featured artists

    When I am in the group with artwork view of my library, any song that has a featured artist is separated into a separate section. For instance, if track 7 is a duet, it will have a second section with the album cover art and that track below the section that all the other tracks are in. I want it to just show the full album without pulling any out just because it has a featured artist etc. On the list view, it doesn't appear separately. Can anyone help?

    Maybe this will help
    http://support.apple.com/kb/TS1468

  • WVC54GCA strange behavior

    Hey Guys, I've added my fifth camera. And the rest work great and can access remotely. But my fifth one is a WVC54GCA with audio. And I am getting strange behaviors. For example, when I'm hard wired , I am able to view the video by browsing to the camera. However, when I configure wireless, and not even go wireless, still connected via LAN I can't view the video, it is almost as if the web server in it get hosed, even the graphics change and the Linksys banner is missing and I see this at the top of each menu page:File menu_setup.htm not found. Also another example, is under admin, the buttons for firmware upgarde and factory reset are invisible, I can still tab to them and use them. That's why I think it is a web server issue with itself. I am on rev V1.00R24, my other cam that is behaving correctly is on R22.
    When I go wireless, same problem, I am unable to browse to the camera to view the image, however, I am able to see the picture via the video monitoring utility. I can browse to the camera to 'administer' it but even that doesn't work right either. Especially the basic menu. If I try changing anything, LED, or time or anything, I get a error saying invalid subnet mask. When I didn't change it, plus it is obviously correct since I can browse to it. The cameras address is 192.168.1.122/24 and the gateway is 192.168.1.23, the same mask and DG on all my other cameras.
    I've rebooted the camera and the linksys router and still get the same issue. Has anyone got any ideas? I am barely ok, since I can view the image via the monitor utlity, but it would be nice if the camera work correctly like the other 4. Is their a limit to the number of wireless cam's? I have 5 total now.

    I to have had strange issues with the WVC54GCA.  I have two cameras.  I set them up in my office first for testing.  The final place they will be is at my summer place for monitoring when I'm away.  I had a break-in last year. 
    In the office I had issues primarily with the motion detection email feature.  It simply would not work.  The test messages work just fine every time.  So I know the email config information is correct. I'm not sure if we just did not wait long enough or if it was the scheduled capture we setup, however it seems that until we setup a scheduled capture and deleted it; the motion capture would not work.  So after about 3 hours of testing and cofiguring and resetting we had it capturing pics and video.  BTW we are using a VRV200 at the office.
    Next, took the camera's out to the summer place.  Setup them up from scratch, did a hard reset.  Main issue, same as in the office (using a wrt54g at the summer place) not doing a capture.  Test email works fine,  No capture. Not even after playing the set a scheduled capture trick.  Tried everything I can think of, no luck, no capture.  As you can imagine, if it won't capture, then it is useless for remote monitoring of a summer place.
    I checked for a firmware update for the WVC54GCA, however its brand-d-new, so there is only one version of the firmware and that's the one that came on the camera.
    Any ideas would be welcomed.  I must have a capture solution.  Maybe I just need to buy a more expensive camera.
    Message Edited by EmarioC on 06-07-2008 08:18 AM
    Message Edited by EmarioC on 06-07-2008 08:19 AM

  • Strange behavior at secured pages

    Hi, I encounter a strange behavior at jdev 11
    I have a page A that has a command button that navigates from that page to page B. It's action value is a control flow
    that has from activity:A toActivity:B at the adfc-config.xml.
    That worked fine until I secured page A, after this, pushing command button resulted to nothing (no navigation, no error)
    If i change the control flows fromActivity from A to * then it works OK again.
    so it seems that when the page is secured only global navigation rules are working.
    Is this a bug or am I doing something wrong?
    thanks
    Tilemahos

    url:
    http://127.0.0.1:7101/MarketOffice-ViewController-context-root/faces/welcomePage.jspx
    adfc-config.xml view id:
    <view id="welcomePage">
    <page>/welcomePage.jspx</page>
    </view>
    jazn.com fragment:
    <grant>
    <grantee>
    <principals>
    <principal>
    <class>oracle.security.jps.service.policystore.ApplicationRole</class>
    <name>entryPage_view</name>
    </principal>
    </principals>
    </grantee>
    <permissions>
    <permission>
    <class>oracle.adf.share.security.authorization.RegionPermission</class>
    <name>view.pageDefs.welcomePagePageDef</name>
    <actions>customize,edit,grant,personalize,view</actions>
    </permission>
    </permissions>
    </grant>
    granting customize,edit,grant,personalize,view to welcomePage webpage at entryPage_view role
    adfc-config.xml
    <control-flow-rule>
    <from-activity-id>welcomePage</from-activity-id>
    <control-flow-case>
    <from-outcome>success</from-outcome>
    <to-activity-id>home</to-activity-id>
    </control-flow-case>
    </control-flow-rule>
    control flow success navigates from welcomePage to home
    welcomePage.jspx:
    <af:commandButton text="commandButton 1" action="success"/>
    if I replace "success" with some global control flow like:
    <control-flow-rule>
    <from-activity-id>*</from-activity-id>
    <control-flow-case>
    <from-outcome>gtHome</from-outcome>
    <to-activity-id>home</to-activity-id>
    </control-flow-case>
    </control-flow-rule>
    <af:commandButton text="commandButton 1" action="gtHome"/>
    it works fine
    Tilemahos

  • Strange behavior in audio editing

    Greetings,  I am working on a progect in logic x and am suddenly having difficulty editing audio.  There is behaviour that I do not understatnd-  If I use the trim tool, other regions move (I am editing a large piece, using group to edit all regions at the same time).  Also after an edit, there is audio playing from some previous edit or from a track that is overlapped or something?  I have toggled the overlap/ no overlap function and have been working with shuffle modes, but now it seems strange.  Do I have something set differently or wrong I wonder.
    Thanks for the help!
    cheers---

    I did a quick (and dirty) fix for this, but it has one problem. After this handler has blocked the submit, you can only enter edit mode using the edit-button at ribbon. Edit button at upper right corner stops to work for some reason. After site refresh everything
    works again, so not a major issue.
    <script>
    // SharePoint input element bug handler
    // More bug: http://social.technet.microsoft.com/Forums/sharepoint/en-US/33df42ba-00b3-41a8-8fb9-f8187cfc216d/strange-behavior-in-firefox-input-text-with-enter-opens-page-for-editing?forum=sharepointgeneralprevious
    // This fix stops form submit => blocks transfer to edit mode
    var disableFormSubmitDueToBug = false;
    var bugSubmitHandlerAttached = false;
    $('*selector for inputs here*').keydown(function(e){
    if(e.keyCode == 13 ) { 
      disableFormSubmitDueToBug = true;
      bindBugSubmitHandler();
    } else {
      unbindBugSubmitHandler();
    }).focusout(function(){
    unbindBugSubmitHandler();
    function bindBugSubmitHandler(){
    $( "form" ).bind("submit", function( e ) {
    if(disableFormSubmitDueToBug) {
    e.preventDefault();
    console.log('Blocked submit by SP bug handler');
    bugSubmitHandlerAttached = true;
    function unbindBugSubmitHandler(){
    if(bugSubmitHandlerAttached){
    $( "form" ).unbind("submit");
    bugSubmitHandlerAttached = false;
    console.log('SP bug submit handler unbind occurred');
    </script>
    Thank you SO much for writing this script. It worked for me.
    Where the code says: $('*selector for inputs here*').keydown(function(e){
    You need to replace *selector or inputs here* with the name of your input box, so for me it was:
    $("input[name^='client_name']").keydown(function(e){

  • Strange behavior scrolling LongListSelector - WP8

    I have an app where I save the user's contacts in a local Database, then bind this contacts in a LongListSelector.
    The app has a button that,, when clicked, update the local database (make it
    identical to the devide).
    When there is changes, the LongListSelector has a strange behavior after return from search to the list (view): when I scroll fast or after some time scrolling, a blank space appears in the middle of the list. Then I found out that, apparently, the list
    is cutting some items...
    This behavior happens only when I have a long list, like 50 items or more..
    I bind the items on LongListSelector this way:
    XAML:
    <Grid x:Name="ContentPanelContatos" Grid.Row="1" Margin="0" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" >
    <Grid x:Name="gridContatos" Grid.Row="1" Margin="12,2,12,0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" >
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="*"/>
    </Grid.RowDefinitions>
    <Grid Grid.Row="0" Margin="0,0,0,12" >
    <TextBox x:Name="tbxSearch" VerticalAlignment="Top" HorizontalAlignment="Stretch" Visibility="Collapsed" TextChanged="TbxSearch_TextChanged" LostFocus="TbxSearch_LostFocus" Style="{StaticResource TextBoxStyle}" />
    </Grid>
    <phone:LongListSelector Grid.Row="1" x:Name="llsContacts" ItemsSource="{Binding}" SelectionChanged="llsContacts_SelectionChanged" >
    <phone:LongListSelector.ItemTemplate>
    <DataTemplate>
    <ListBoxItem local:TiltEffect.IsTiltEnabled="true">
    <Grid Margin="0,0,0,10" >
    <TextBlock Text="{Binding NAME, Mode=TwoWay}" FontFamily="Segoe WP" FontSize="28" Margin="77,0,0,0" />
    <TextBlock Text="{Binding Path=NUMBER, Mode=TwoWay}" FontFamily="Segoe WP Light" FontSize="17" Margin="77,33,0,0"/>
    </Grid>
    </ListBoxItem>
    </DataTemplate>
    </phone:LongListSelector.ItemTemplate>
    </phone:LongListSelector>
    </Grid>
    <!-- more 2 grids with contents -->
    </Grid>
    I was binding the items using ObservableCollection and I was having this problem.. Then I tried to erase the list and bind it again (after the search) this way:
    if (llsContacts.ItemsSource != null)
    llsContacts.ItemsSource.Clear();
    llsContacts.DataContext = daoRd.GetData();
    But I'm still with this problem...
    Does anybody can tell me what is happening?
    Am I doing something wrong?
    Reading this article:
    Frame rate counters in Windows Phone, I noticed that when this problem happens, some of the numbers that are on the side of the screen when debugging, stops changing...
    They stops like this:
    User Interface Thread FPS: 000
    Texture Memory Usage: 007181
    Surface Counter: 050
    Intermediate Texture Counter: 002
    Does this numbers means something?

    have you dumped the contents of what is returned from daoRD.GetData()?   Could be one of the items in the collection has blank strings?   Also I noticed you clear the ItemsSource before setting the DataContext.  That is probably
    not necessary if you are setting the DataContext immediately after that.
    Bret Bentzinger (MSFT) @awehellyeah

Maybe you are looking for

  • BPC 10NW: Dynamic Reporting

    Hi Gurus, How can list the Account Members by filtering on the property? Is there any EPM function to list the dimension members on some filter? I have following reporting requirement - There are two set of accounts say "X" & "Y".  This been identifi

  • InDesign CS6 Missing "Overlay Creator" entirely?

    Hi all, I've recently downloaded the trial version of InDesign CS6 as well as the DPS Desktop Tools (http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5377&fileID=5010) and I'm following the "Get Started" tutorial here: http://www.adobe.com/d

  • BEx Broadcaster BI7.0 - No Response

    Hello friends, I clicked in menu bar: QUERY --> Public --> BEx Broadscaster, but No response. System: BI DEV. Version: 7.0 Thanks for your help, Best Regards. PS.

  • Wireless Antenna Selection question

    Hi guys, We recently installed (12) 3702e's with 2524 dipole antenna's in a 100,000 sq ft warehouse.  AP's run off of a 5508 controller and are Lightweight.  Key things to consider: These AP's are mounted about 32 feet in the air on the ceiling.  We

  • Exporting to H264 using AAC input : sound skips

    Hi there, Let me try to get you guys all the information in one big chunk. My computer : Intel Core i7 860 8gb DDR3 RAM Western Digital WD5000AAKS HDD ATI Radeon HD4870 ASUS P7P55D motherboard Windows 7 Home Premium (x64) Premiere Elements 8.0.1 Ever