Event issue in HeaderRenderer in AdvancedDataGrid

I have a requirement of reading all my ADG headerRenderer text input data (All columns are having textInput as a headerRenderer).
For achieving this I have registered an event listener in the headerRenderer which reads the text of textInput and keeps it in an Array.On click of a button labled Filter,dispatching that event.But I observed each instance of the headerRenderer getting called twice.
Any inputs on this issue will be appreciable!

Sorry ,this is my exception when I am using papi
fuego.papi.exception.ProcessesNotAvailableException: Some processes are not available.
Internal Exceptions:
/PRO/ENG/VAL/ProcessHandler#Default-1.0:Process '/PRO/ENG/VAL/ProcessHandler#Default-1.0' not available.
     at fuego.papi.impl.ProcessManager.get(ProcessManager.java:1088)
     at fuego.papi.impl.ProcessServiceImpl.getProcesses(ProcessServiceImpl.java:1528)
     at fuego.papi.impl.SessionProcessManager.getProcesses(SessionProcessManager.java:384)
     at fuego.papi.impl.ProcessServiceSessionImpl.processesGet(ProcessServiceSessionImpl.java:2559)
     at fuego.papi.impl.ProcessServiceSessionImpl.processesGet(ProcessServiceSessionImpl.java:2547)
Thanks
Sailendra

Similar Messages

  • Standard Business Event issue in SOA.

    Hi,
    I created a subscription in SOA for the standard business event (*oracle.apps.jtf.cac.task.updateTask*) using Oracle Apps Adapter. When the event is fired in the Oracle EBusiness Suite, I am expecting SOA to capture the payload and create an instance. The instances are not created.
    This is the workaround I did to check if the events are firing or not.
    1. Whenever a standard business event is fired, we can see a record in WF_DEFERRED queue. In this case too, I am able to see the record.
    2. From WF_DEFERRED, the data should flow into WF_BPEL_Q. I am unable to see a record in this table in my case.
    Which mean the events are firing but SOA is unable to capture the events. I tried to raise a JAVA event in the Oracle EBusiness Suite's workflow manager and SOA was able to capture the payload and an instance was created in weblogic EM. But when I update the task in the Oracle EBS, SOA is not able to capture the payload.
    Any inputs to fix this issue is greatly appreciated. Please help.
    Thanks,
    Venkat Sai.

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Oracle Discussion Forums » SOA & Process Management » SOA Suite which you can get more quick response
    Regard
    Helios

  • IPhone calendar event issue- not synching across iCloud

    Events created on my iPhone will not sync across iCloud to display on my Calendar App on my iPad or on my laptop.
    iPhone 5 iOS 8.1.3 - this started yesterday with no changes having been made to any of my iCloud settings.  On my laptop I get a new icon displays in my doc - see attached image, but when I click on it it just goes away and the new event is not synched.  If I don't click on this icon, it eventually disappears and the event is also not added to my calendar.
    I Can create events on my iPad and laptop and have them show on my phone.  I can create Notes on my iPhone and they sync across devices. 
    I have tried changed the iPhone calendarsync settings from 'Events 1 Month Back' to 'All Events' and vice versa.  On the iPhone I have turned Off synching of calendars, waited and re-enabled synching.  I have cycled power to my iPhone.

    Thanks Sterling - I've read through both those articles and performed all the troubleshooting steps in the iCloud: Troubleshooting iCloud Calendar - Apple Support article.  I have verified bluetooth is on, I'm on the same wireless network, same iCloud account signed into on all devices, etc.
    Still new events entered on my iPhone do not get added to my laptop or iPad calendar.  The handoff icon shows in my doc, but it does not put the new event onto the calendar.
    Through some more testing, I have also found the same issue with reminders; if I create one on my iPhone it will not be displayed on my laptop or iPad.
    Again I have no problems creating these on my laptop or iPad and having them show on All my devices, including my iPhone.  And another family member can create them on their iPhone 6, iOS 8.1.3 and they come across to all my devices; laptop, iPad and my iPhone5.
    Please advise what else I can do, as not being able to create events or reminders on my iPhone and have them sync across devices is a problem.

  • How do i solve this event issue ?

    You can’t change events in the "Contacts' birthdays and events" calendar.
    Only the calendar administrator and any delegates with permission can make changes to read-only calendars. To make changes to the calendar, contact the calendar administrator.
    I am the Administrator of this laptop . However i think most of the birthday events was create when i sync with Facebook. So anyone who faced the same issue before?

    Hi,
    In the Onlead selection of table make it visible and invisble of your buttons as per your selection.
    The table have single selection and multi seletion options are availble when you defing the table you can find this options in the properties of the table.
    In onlead selection your button to be mapped with attribute WDVisble.
    And based on your selection you can visible and invisible.
    wdContext.currentContextElement.set<attribute>(WDVisble.Visble);
    and
    wdContext.currentContextElement.set<attribute>(WDVisble.NONE);
    This might helps you.
    Do you need more post your issues.
    Thanks,
    Lohi

  • [JS CS4/CS5] ScriptUI Click Event Issue in JSXBIN

    Still working on a huge ScriptUI project, I discovered a weird issue which appears to *only* affect 'binary compiled' scripts (JSXBIN export), not the original script!
    When you repeatedly use addEventListener() with the same event type, you theorically have the possibility to attach several handlers to the same component and event, which can be really useful in a complex framework:
    // Declare a 'click' manager on myWidget (at this point of the code)
    myWidget.addEventListener('click', eventHandler1);
    // Add another 'click' manager (for the same widget)
    myWidget.addEventListener('click', eventHandler2);
    When you do this, both eventHandler1 and eventHandler2 are registered, and when the user clicks on myWidget, each handler is called back.
    The following script shows that this perfectly works in ID CS4 and CS5:
    // Create a dialog UI
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    // Set some widget properties
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    // g->click Listener #1
    g.addEventListener('click', function(ev)
         e1.text = 'click handler 1';
    // g->click Listener #2
    g.addEventListener('click', function(ev)
         e2.text = 'click handler 2';
    w.show();
    The result is that when you click on the group box, e1.text AND e2.text are updated.
    But now, if I export the above code as a JSXBIN from the ESTK, the 2nd event handler sounds to be ignored! When I test the 'compiled' script and click on the group box, only e1.text is updated. (Tested in ID CS4 and CS5, Win32.)
    By studying the JSXBIN code as precisely as possible, I didn't find anything wrong in the encryption. Each addEventListener() statement is properly encoded, with its own function handler, nothing is ignored. Hence I don't believe that the JSXBIN code is defective by itself, so I suppose that the ExtendScript/ScriptUI engine behaves differently when interpreting a JSXBIN... Does anyone have an explanation?
    @+
    Marc

    John Hawkinson wrote:
    Not an explanation, but of course we know that in JSXBIN you can't use the .toSource() method on functions.
    So the implication here is that perhaps the .toSource() is somehow implicated in event handlers and there's some kind of static workaround for it?
    Perhaps you can get around this by eval() or doScript()-ing strings?
    Thanks a lot, John, I'm convinced you're on the good track. Dirk Becker suggested me that this is an "engine scope" issue and Martinho da Gloria emailed me another solution —which also works— and joins Dirk's assumption.
    Following is the result of the various tests I did from your various suggestions:
    // #1 - THE INITIAL PROBLEM// =====================================
    // EVALUATED BINARY CODE
    var handler1 = function(ev)
         ev.target.parent.children[1].text = 'handler 1';
    var handler2 = function(ev)
         ev.target.parent.children[2].text = 'handler 2';
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBn0AKJAnASzIjIjBjOjEjMjFjShRByBNyBnA . . . . .");
    // RESULT
    // handler 1 only, that's the issue!
    Now to John's approach:
    // #2 - JOHN'S TRICK
    // =====================================
    var handler1 = function(ev)
         ev.target.parent.children[1].text = 'handler 1';
    var handler2 = function(ev)
         ev.target.parent.children[2].text = 'handler 2';
    // EVALUATED BINARY CODE
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBn0AIbCn0AFJDnA . . . . .");
    // RESULT
    // handler1 + handler2 OK!
    This test shows that if handler1 and handler2's bodies are removed from the binary, the script works. Note that the handlers are declared vars that refer to (anonymous) function expressions. (BTW, no need to use a non-main #targetengine.) This is not a definitive workaround, of course, because I also want to hide handlers code...
    Meanwhile, Martinho suggested me an interesting approach in using 'regular' function declarations:
    // #3 - MARTINHO'S TRICK
    // =====================================
    // EVALUATED BINARY CODE
    function handler1(ev)
         ev.target.parent.children[1].text = 'handler 1';
    function handler2(ev)
         ev.target.parent.children[2].text = 'handler 2';
    var     u,
         w = new Window('dialog'),
         p = w.add('panel'),
         g = p.add('group'),
         e1 = p.add('statictext'),
         e2 = p.add('statictext');
    e1.characters = e2.characters = 30;
    g.minimumSize = [50,50];
    var gx = g.graphics;
    gx.backgroundColor = gx.newBrush(gx.BrushType.SOLID_COLOR, [.3, .6, .9, 1]);
    g.addEventListener('click', handler1);
    g.addEventListener('click', handler2);
    w.show();
    eval("@JSXBIN@[email protected]@MyBbyBnACMAbyBn0ABJCnA . . . . .");
    // RESULT
    // handler1 + handler2 OK!
    In the above test the entire code is binary-encoded, and the script works. What's the difference? It relies on function declarations rather than function expressions. As we know, function declarations and function expressions are not treated the same way by the interpreter. I suppose that function declarations are stored at a very persistent level... But I don't really understand what happens under the hood.
    (Note that I also tried to use function expressions in global variables, but this gave the original result...)
    Thanks to John, Dirk, and Martinho for the tracks you've cleared. As my library components cannot use neither the global scope nor direct function declarations my problem is not solved, but you have revealed the root of my troubles.
    @+
    Marc

  • How to get label of Parent level nodes, when itemOpen() event of any node in AdvancedDataGrid in Flex?

    Hi all,
              This is the code, to get the label of every one parent level nodes, when we open the parent node item in AdvancedDataGrid in Flex.
    <?xml version="1.0"?><!-- dpcontrols/adg/SimpleGroupADGMXML.mxml --><mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    import mx.events.AdvancedDataGridEvent; 
    import mx.collections.ArrayCollection; [
    Bindable] 
    private var groupData:ArrayCollection = new ArrayCollection([{Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Logitech", PriceInRupees:"500"}, {Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Microsoft", PriceInRupees:"500"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Logitech", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Microsoft", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "LG", PriceInRupees:"5000"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "Microsoft", PriceInRupees:"5000"}]);
    //This method is used to get label of every parent lavel nodes, when we open any item 
    private function getLabel(e:AdvancedDataGridEvent):void{
    Alert.show(e.item[
    "GroupLabel"]);}
    ]]>
    </mx:Script>
    <mx:Label text="NOTE : Open the every parent level nodes here. We can get the label of every one parent level nodes."color="
    blue" fontWeight="bold"/>
    <mx:AdvancedDataGrid id="groupADG" width="
    100%" height="437" initialize="gc.refresh();" itemOpen="getLabel(event)"
    >  
    <mx:dataProvider>
    <mx:GroupingCollection id="gc" source="{groupData}">
    <mx:grouping>
    <mx:Grouping>
    <mx:GroupingField name="Computer"/>
    <mx:GroupingField name="Device"/>
    </mx:Grouping>
    </mx:grouping>
    </mx:GroupingCollection>
    </mx:dataProvider>  
    <mx:columns>  
    <mx:AdvancedDataGridColumn headerText="
    Computer"/>
    <mx:AdvancedDataGridColumn dataField="Company"headerText="
    Company"/>
    <mx:AdvancedDataGridColumn dataField="PriceInRupees" headerText="PriceInRupees"/>
    </mx:columns>
    </mx:AdvancedDataGrid>

    Dialog\ResponseTime 6585
    "The dialog response time consists of the period of time from the request of the dialog to the dispatcher through the processing, to the ending of the dialog in the dispatcher and the transfer of the data to the presentation layer"
    This is not buffered as far as I know is measured on demand
    Read,
    http://help.sap.com/saphelp_nw70/helpdata/en/31/d7843b43c8e937e10000000a11402f/content.htm
    Regards
    Juan

  • ICal + Exchange 2007 - recurring events issues

    Hi all
    Not sure if this has been brought up before, couldn't find anything on the boards.
    Anyway, our client has 20 macbook pros all running OS 10.6.2. They also have an Exchange 2007 server (previously they had a 2003 exchange server and were using entourage).
    The problem they appear to be having is when creating a recurring event they invite selected users but the invites either don't get through or upon accepting the invite it doesn't show up in the other user's calendar. I've heard there are some issues with iCal and recurring events - is this true or does anyone know a way to fix this?
    Thanks in advance.

    https://developer.apple.com/bugreporter/
    You can also try http://www.apple.com/feedback/macosx.html but I don't think that's as useful.

  • Calendar events issue Outlook for Mac: Failure to update or send notification for meetigns

    We are seeing an issues with Outlook for Mac 2011 and calendar events. These events are in the past and Outlook will randomly post errors about the event stating that it has failed to make changes, please contact the original creator.
    Additionally, some users are reporting that Outlook will not successfully send meeting cancellation notices to Windows users. All of the server and directory settings are setup correctly. Is there an issue with Outlook for Mac successfully sending
    back to the Exchange server here? We're running Exchange server 2007 SP1 and in the midst of upgrading to 2013. Hopefully this and a host of other issues are resolved with 2013. 
    Thanks.

    Hi,
    This forum focuses on questions and feedback for Windows-based Microsoft Office client. Since your query is directly related to Office for mac, I would suggest you to post in the forum of
    Office for Mac, where you can get more experienced responses:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?tab=Threads
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Iphoto emailing and "events" issue

    I am not sure if these issues are related.  2 weeks ago I began having and issue where 3 of my events had no key image.  It also said there were 0 photos in the event.  If you clicked on the event, you could still see there were photos in there.  I did a little research and discovered that I may have caused this when I emptied iPhotos trash recently.  I didn't know this had to be done and there were several thousand photos in there.  Since then I have also updated to Yosemite.  I have now noticed that I cannot email photos from iPhoto anymore.  I can go through all the steps but after I hit send, the wait bar goes to the end and nothing happens.  I let it sit overnight once and it was still waiting.  I assume these issues are related to either me emptying the trash or updating to Yosemite.  Anyone have any ideas how fix this?  I am using OSX 10.10.2 and iPhoto 9.6.

    Go into iPhoto's Accounts preference pane and delete the email account that's there.  Then add it back and try to email again.
    A better solution, IMO, is to set Mail as iPhoto's email client in iPhoto's General preference pane.  That allows you better access to Contacts, a sent copy created automatically and also has templates in the stationary section similar to iPhoto's.  Mail is also more reliable.

  • Business event issue

    Hi,
    I am invoking an oracle seeded business event oracle.apps.po.rcv.rcvtxn through Receiving Transaction.
    This event should call a PL/SQL function. But I receive a notification in saying:
    Event Error Name: WFE_DISPATCH_RULE_ERR
    Event Error Message: 3825: Error '-4061 - ORA-04061: existing state of has been invalidated
    ORA-04061: existing state of package "APPS.XX_PO_RCV_TXN_LABEL" has been invalidated
    ORA-04065: not executed, altered or dropped package "APPS.XX_PO_RCV_TXN_LABEL"
    ORA-06508: PL/SQL: could not find program unit being called: "APPS.XX_PO_RCV_TXN_LABEL"' encountered during execution of Rule function 'xx_po_rcv_txn_label.receive_business_event' for event 'oracle.apps.po.rcv.rcvtxn' with key '196017-13587'.
    Event Error Stack:
    Wf_Event.dispatch_internal()
    I am sure that this message is incorrect as I changed the package name to XXRCVTXN and business event is still calling old package XX_PO_RCV_TXN_LABEL.
    Secondly, when I resubmit this event through notification worklist in sysadmin responsibility, it completes successfully and does the intended processing.
    Can someone please point out why this discrepency is there?
    Thanks in advance

    The message is correct: the original package XX_PO_RCV_TXN_LABEL has indeed been invalidated when you have recompiled it. The business event turns to an old version pf the package, ... but it has been flagged as invalid in the share pool. Even if you recompile, or even drop the package, the workflow system will still turn to the old package version.
    What to do: restarting the application services will definitely solve the issue (providing, of course, that the new package version is in valid state). For a production system this will cause downtime, so you could try to restart the Workflow Deferred Notification Agent Listener and perhaps the Workflow Notification Mailer.

  • BEX Event Issue + Vista

    I'm running Vista Home Basic SP1 on my laptop and installed iTunes v8 + QuickTime, when I execute, i get an error for iTunes & one for QuickTime
    Problem signature:
    Problem Event Name: BEX
    Application Name: iTunes.exe
    Application Version: 8.0.2.20
    Application Timestamp: 4925c4fe
    Fault Module Name: StackHash_fd00
    Fault Module Version: 0.0.0.0
    Fault Module Timestamp: 00000000
    Exception Offset: 000be4e0
    Exception Code: c0000005
    Exception Data: 00000008
    OS Version: 6.0.6001.2.1.0.768.2
    Locale ID: 16393
    Additional Information 1: fd00
    Additional Information 2: ea6f5fe8924aaa756324d57f87834160
    Additional Information 3: fd00
    Additional Information 4: ea6f5fe8924aaa756324d57f87834160
    Problem signature:
    Problem Event Name: BEX
    Application Name: QuickTimePlayer.exe
    Application Version: 7.55.90.70
    Application Timestamp: 49010a8b
    Fault Module Name: QuickTimePlayer.exe
    Fault Module Version: 7.55.90.70
    Fault Module Timestamp: 49010a8b
    Exception Offset: 0000130d
    Exception Code: c0000409
    Exception Data: 00000000
    OS Version: 6.0.6001.2.1.0.768.2
    Locale ID: 16393
    Additional Information 1: 4419
    Additional Information 2: ebf79ba0046ae6662468948de5348393
    Additional Information 3: 6956
    Additional Information 4: 7abd868591af5ec835ec4f6b692849a6
    Upon googling i found that the issue was something to do with DEP, i tried to disable for iTunes only, but it does not allow me to, so i disable for the entire system and tried to execute, still the same problem.
    Next i tried to run iTunes in WinXP SP2 compatibility mode, still the same issue. I've tried most the tricks in the book, is there anyone who has come across this issue and has been able to resolve them.
    Due to this i'm unable to transfer data to my iPhone/iPod . Can someone help

    I don't know that particular error, but iTunes requires Quicktime and will not work if QUicktime does not.
    Could you go to your control panel (classic view) and try to open Quicktime preferences.
    Post the full text of any error message.
    Have you installed any of the following:
    ACE & K-Lite mega codecs package, QT alternative, Storm codec, WinAVI video converter, Mpcstar
    These are bad news for Quicktime and should be uninstalled.
    Once you have removed incompatible software, try removing QUicktime and installing the stand alone version.
    Download the version of Quicktime that does not include iTunes:
    http://www.apple.com/quicktime/download/win.html
    Remove QUicktime using the method in this article, just the QUicktime part.
    http://support.apple.com/kb/HT1923
    Restart your PC and install the stand alone Quicktime.
    Check to see if it work and if it does try iTunes.
    If you can't uninstall Quicktime, another step is needed.

  • Custom Event Issue

    Hope you flex geniuses can help me on this one....
    the issue: an action script custom event is being dispatched
    by one object but is not being "heard" by it's parent despite the
    fact that a) the child object uses the [event] declaration in it's
    class definition, b) the event is being correctly dispatched, and
    c) the parent object uses an addEventListener method to listen for
    the event.
    the layout:
    includes an application component (mxml) that has as it's
    only direct child an action script custom component called
    FloorPlan. On creationComplete the floor plan object instantiates
    an action script class called Booth as many times as is required
    (based on the number of booths that needs to be displayed on the
    floor plan) and then adds the instances to itself via addChild()
    method. The booth objects are based on Sprite class and so they
    have click events, etc. When one of the booth instances is clicked,
    the click event of the booth instance fires and the handler creates
    an instance of the ShowCompanyProfileEvent (action script class
    based on the Event class) and then dispatches it. The
    ShowCompanyProfileEvent event handler for now should just open an
    Alert box.
    I know the code works within the Booth class because when I
    register an event listener in the booth class itself and then click
    on a booth, the listener "hears" the dispatched event and opens the
    Alert box.
    The problem is that The floor plan instance has a registered
    event listener to listen for the dispatched custom event also but
    nothing happens when I click a booth instance (which like I said
    should dispatch the custom event). I deleted the addEventListener
    code in the booth class thinking that maybe it was catching it
    first but still it wouldn't work.
    Any ideas? I have reallysearched and searched to no avail. As
    I mentioned, I get no errors at all when I compile and run the
    code. I just don't get the expected results.

    LensterRAD, don't know if I got the hole idea but I guess you
    are listening to the ShowCompanyProfileEvent directly on the
    FloorPlan, something like:
    FloorPlan.addEventListener(ShowCompanyProfileEvent,
    someFunction);
    if this is the case, you'll probably need to add the BUBBLE
    parameter to the event, so it will follow the hole event
    propagation model.
    something like: dispatchEvent(ShowCompanyProfileEvent,
    true);

  • Multiplying entries, all-day event issues, and freezing

    I've been having quite a few issues with iCal since I upgraded to Snow Leopard (but I don't regret it).
    1. Several of my all day events have been multiplied, so that they are entered in 3, 4, even 5 times.
    2. Many all-day events that were set to last only one day now span two or three.
    3. Whenever I try and access December of 2010, iCal stops responding, and causes almost all programs to freeze until I force quit iCal.
    Please help!

    I've been seeing new problems with iCal since moving to Snow Leopard too. If, when the alarm for a repeating event comes up I tell I call to remind me later, I will get multiple reminders instead. Also, for repeating event sometimes the alarm will not repeat, but instead get changed to only alert for a single day.

  • Iphoto 9.6 .. Events issue

    HI léonie,
    I've a similar problem and hope I've made a clear description of it.
    System information:
    MacBook Pro 17inch - late 2007
    Version OS: 10.10 (14A389)
    iPhoto: 9.6 (910.29)
    # Events: 129
    # Photo’s: 13.604
    Other (maybe useful) information:
    - When the issue starts, this was under the Mavericks OS. I’m using Yosemite now.
    - I make from each (backed-up) library a catalogue (Event-name + photo ID)
    - My Event-name is always built up in the same way: <Year> - <Country-name>; <Place> - <short description>
    - No links to external discs active / no shares with iCloud
    - the same back-up is written to 2 external discs separately
    - some private photo’s created in Albums are shared on Facebook
    Background:
    Because I’m doing long-term projects as a photographer I have Events in my active photo-library which are dating back to 2011. During this year I upgraded from iPhoto8 to iPhoto11, it looked like that everything went okay after I used the converting software for the library. But then I started to use “Faces” (and for my feeling,) it was then when the trouble starts.
    Symptoms:
    - photo’s were thrown out of the Events and being mixed up with others or they were put in an unnamed event
    - photo’s which should not be in the active Library appeared back
    - after converting a backed up Library and activating the (as I call it) “Face option”, the earlier described symptoms occur.
    - but it happens not consequently because for instance “Event Y” in Backed-up library 1 on HardDiskA doesn’t have the same amount of pictures in the same “Event” but then on HardDiskB
    - searching on Finder-level, I run into Events dating back before 2011 which should not in my active library anymore (after backing-up an active level, I throw all the Events in the Trash, subsequently empty the Trash).
    - also on Finder-level, the corresponding folder with the Event consists of different photo’s than in the iPhoto Event. (I’ve checked this by using 2 Events; made a detailed inventory - photo ID + shooting date / time; compared it on iPhoto-level / Finder-level)
    Consequences:
    - All my backed up Libraries and my current Library are a mess
    Question:
    - can you (or somebody else) provide me a splendid idea to correct this in a fast way? or should I (how I will find the time for this?!?!?!) correct all these libraries manually, photo by photo - according to my own created catalogues?
    Thank you in advance,
    Frank
    <Branched to new discussion by Host>

    Symptoms:
    - photo’s were thrown out of the Events and being mixed up with others or they were put in an unnamed event
    - photo’s which should not be in the active Library appeared back
    That may be caused by "Recovered items" due to the bug I mentioned above or by and external editor saving files into your library. Are you using an external editor with your library?
    - after converting a backed up Library and activating the (as I call it) “Face option”, the earlier described symptoms occur.
    This may be a coincidence.
    - but it happens not consequently because for instance “Event Y” in Backed-up library 1 on HardDiskA doesn’t have the same amount of pictures in the same “Event” but then on HardDiskB
    Have you checked, if there are photos in the "Hidden" album?
    - searching on Finder-level, I run into Events dating back before 2011 which should not in my active library anymore (after backing-up an active level, I throw all the Events in the Trash, subsequently empty the Trash).
    Again, there may be several reasons that emptying the Trash does not work. Either the bug I mentioned, or permission problems. If your Home folder has a permissions problem or the hard drive with your iPhoto Library, iPhoto may not be able to move the trashed items from your iPhoto Trash to the system Trash on your Desktop. Then the trashed events may stay hidden in the Library.
    Try to delete a few of the items that have reappeared now. Can they now be moved to the Trash on your Desktop, when you empty the Trash?
    - also on Finder-level, the corresponding folder with the Event consists of different photo’s than in the iPhoto Event. (I’ve checked this by using 2 Events; made a detailed inventory - photo ID + shooting date / time; compared it on iPhoto-level / Finder-level)
    Don't rely on the folder structure you are seeing for the original image files in the Finder. This is not meant to be human readable. The way the images are stored in your iPhoto Library has changed considerably between iPhoto versions and is not a feature of the user interface. It can change any time. Right now, iPhoto will store events in folders according to the data of the import session. That may not necessarily be the date you took the photo, but the date of he last iPhoto Library upgrade.
    Consequences:
    - All my backed up Libraries and my current Library are a mess
    Question:
    - can you (or somebody else) provide me a splendid idea to correct this in a fast way? or should I (how I will find the time for this?!?!?!) correct all these libraries manually, photo by photo - according to my own created catalogues?
    In what way is the backup a mess? You backed up the libraries before you upgraded to Yosemite, didn't you? Have you opened the backed up libraries  and they were also upgraded?

  • Subject: eventing issue in BW queries.

    Hi,
    We have a sending query1 takes posting date as input from the user and pass this
    to receiving query2
    Receiving query has a restricted key figure (restricted on posting date). This restriction is not applied to the restricted key figure if we use eventing and the result is incorrect. If I put the restriction on a free characteristic, it works. (But we need this to work in the restricted key figure.)
    How to resolve this issue. Any help is very much appreciated.
    Regards
    Anuj

    Hey Anuj,
    You really should be posting in the correct forum. here not all the poeple might know about it.
    cheers

Maybe you are looking for