Events not being dequeued out of WF_BPEL_Q. No Instances on SOA composites

We would like to capture a few business events in oracle financials that are of interest to us. In order to do this, we deploy oracle SOA composite with BEPL in the Oracle Fusion Middleware Control. The oracle SOA composite is configured for a particular business event. It listens on a specific queue WF_BPEL_Q and de-queues the messages in that queue. In jDeveloper 11g we created a SOA project with oracle applications adapter partner link and a receive.
Specifically we are trying to capture the business outbound event oracle.apps.ar.hz.CustAccount.create just to get the event data in this receive.
Partner link configuration: We added the database connection to the oracle financials instance. Tested it and we succeded. Chose ANY_SCHEMA in partner link configuration.
We ensured that the JNDI Name here( eis/Apps/Apps ) match the JNDI name provided in the weblogic-->Deployments-->OracleAppsAdapter -->Configuration --> Outbound Connection Pools. For this outbound resource pool, Connection factory interface was javax.resource.cci.ConnectionFactory. Property name xADataSourceName was mapped to JNDI name of the configured JDBC datasource in the weblogic. In our case it was jdbc/AppsDataSource. When we created the connection pool. We tested and it worked fine. This data source had the connection pool configured to the oracle applications schema with APPS user.
After adding the partner link with the above configuration, we added a receive. We deployed this configuration to the middleware. We went to the oracle financial, created a customer and account and we expected to having running instances against the deloyed composite. However, the problem is we are not having any running instance for the composite.
We found that there are entries in the view AQ$WF_BPEL_QTAB with an ENQ_TIME and ENQ_TIMESTAMP but with no DEQ_TIME or DEQ_TIMESTAMP. The ENQ_TIMESTAMP corresponds to the time we created the customer and accounts in oracle financials and the USER_DATA column has the business event of interest. The events are enqueued in WF_BPEL_Q but not being dequeued by oracle applications adapter/composites deployed in soa server. Consumer name on AQ$WF_BPEL_QTAB matched with the consumer name on the deployed composite at the Oracle Enterprise manager.
Any help would be highly appreciated. I have put in the initial set of information here. Please do let me know, if you would need any other information. I shall be more than happy to provide that.
VERSION INFORMATION:
We are using Weblogic Server 10.3.1.0 and Oracle Enterprise manager 11.1.1.1.0.
Thanks,
Prakash
Edited by: user9169972 on Mar 26, 2010 5:28 PM

I'm facing a similar problem. In my case, there is notifications on Oracle SOA Suite, but the message in wf_bpel_qtab still remains.
Did you find something?
Thanks.

Similar Messages

  • All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?

    All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?
    With iOS 6, the all day events showed up in the notification centre but it lacks in the upgrade iOS 7.

    Same problem here. Some people pointed out that all-day events do show up in their notification center, but that seems only to be the case for birthdays (and only as text like the weather). I've tried it myself on my iPhone and iPad and it did work for birthdays but not for any other all-day events. I already sent this to Apple as a product feedback as well, as should everyone of you. The more people mention it, the faster Apple's going to fix this issue. In its current state, notification center is not a very helpful feature in my opinion. There's absolutely no point in not showing all-day events in the 'today' calendar overview.
    Here's a link to the product feedback page: http://www.apple.com/feedback/
    I posted my message in the iPhone section since I couldn't find a page specifically dedicated to iOS 7.
    I really love the look & feel of iOS 7 but it's kinda sad to see notification center not tapping its full potential.
    Cheers!

  • The apexafterrefresh event not being fired in Chart IR's

    Hi all,
    I am adding additional functionality to IR reports using the plug-in architecture in Apex 4.1.1. A Dynamic action has been added to the "After Refresh" event for the #apexir_WORKSHEET_REGION jQuery selector.
    This works fine in all cases except when no data is found in the report. This has been fixed in 4.2 so I can live with this until the upgrade. However, it also does not work when a chart is created in the report, the apexafterrefresh event does not get raised. Therefore my dynamic action will not fire. Looking at the apex_interactive_reports_4_1.js this event gets raised for the table element with an ID stored in apexir_WORKSHEET_ID ie:
    apex.jQuery('#' + $v("apexir_WORKSHEET_ID")).trigger('apexafterrefresh', that.report_id);However this table element does not get rendered when a Chart is displayed and therefore the apexafterrefresh will not get raised.
    In apex 4.2 the widget.interactiveReport.js has been modified to handle the no data found but not charts:
    var lTriggeringElement$, lWorksheetId;
                            lWorksheetId = $v( "apexir_WORKSHEET_ID" );
                            if ( $x( lWorksheetId ) ) {
                                // If the table element containing data exists (ie when the report returns rows),
                                // use that to trigger the event.
                                lTriggeringElement$ = apex.jQuery( '#' + lWorksheetId );
                            } else {
                                // Otherwise, use the span holding the no data found message.
                                lTriggeringElement$ = apex.jQuery( '#apexir_NO_DATA_FOUND_MSG' );
                            lTriggeringElement$.trigger( 'apexafterrefresh', that.report_id );I have created a test case on apex.oracle.com - http://apex.oracle.com/pls/apex/f?p=41357:1 In this example I simply display an alert from a Dynamic action with the following attributes:
    Event - After Refresh
    Selection Type - Region
    Region - Interactive Report
    As can be seen when the user navigates to the report the alert displays, however when you navigate to the Chart the alert does not display.
    In my mind this is a bug and the IR reports JavaScript should be modified to raise the event apexir_WORKSHEET DIV Element instead. This would fix both issues.
    Any ideas on how to overcome this issue?
    Thanks
    Chris.

    For everyone's information Bug 16029272 - ALERT (APEXAFTERREFRESH EVENT) NOT BEING FIRED IN CHART OF INTERACTIVE REPORTS has been raised regarding this issue.

  • Javax.swing.Timer not working or event not being captured by actionPerfrmd

    Here is the code:
    public class nQueensEst extends JApplet implements ActionListener {
      public Timer t = new Timer(1, this);
    //...the actionPerformed:
    if(e.getSource() == jButton1){
                nRainhas=Integer.parseInt(javax.swing.JOptionPane.showInputDialog("Quantas rainhas voc? deseja?"));     
                t.start();
                int contadorTentativas=1;
                for(int i=0; i<=100; i++){
                    sol=new int[nRainhas];
                    while(!rainhas()){
                      jLabel1.setText(contadorTentativas +" tentativas!!!");
                      contadorTentativas++;            
                    jLabel2.setText("Solu??es: "+Integer.toString(i));
    t.stop();
    }else if(e.getSource() == t){
         System.out.println("timer");
         rodadas++;
    Any clue?
    Thanks

    Let me explai the context: i had to implement a classic nQueens problem using a Grasp Algorithm and a Backtrack algorithm, then in dorder to compare them, i want to make the garap one to run find 100000 solutions and register the time it is needes, then divide by 100000. so i need the timer running and making a variable increase every millisecond from the beggining until the end of the last solution. But the timer is not generating a event or the event is not being caought by the actionPerformed.

  • Idocs not being send out from BD14

    HI,
    I am trying to send out the vendor records out of SAP usong BD14, but the idoc is not being created. I debugged the tcode and found out that it was erroring out due to the model not being found. I checked the model and found that the data filter on the class is activated.
    In the Tcode BD14 I was not populating the class field.
    Can you please let me know as to what will be the suitable value for this field class
    Thanks
    Nikhil

    Hi Nikhil,
    check the following configurations for master data distribution.
               We81 ( message type)                      
               We30 ( idoc type)
               We31 ( segment type)
               We82 (linking message type and idoc type)
               We21 (creating port)
               We20 (partner profiles)
               Bd64 (Distribution model)
               Bd14 (Vendor master)
    Regards,
    Nagaraj

  • Dispatched Event not being caught

    I have the following custom event:
    package
    import flash.events.Event;
    public class TestCustomEvent extends Event
    public static const EVENT_NAME:String = "TestCustom";
    public var _message:String;
    public function TestCustomEvent(message:String)
    super(EVENT_NAME,true,false);
    this._message = message;
    public override function clone():Event
    return new TestCustomEvent(_message);
    public override function toString():String
    return formatToString("TestCustomEvent", "type", "bubbles",
    "cancelable", "eventPhase", "_message");
    which I am trying to dispatch from the following class:
    package
    import flash.events.EventDispatcher;
    import flash.events.IEventDispatcher;
    import flash.events.Event;
    public class TestDispatch implements IEventDispatcher
    private var dispatcher:EventDispatcher;
    public function TestDispatch()
    dispatcher = new EventDispatcher(this);
    public function RaiseEvent():void
    var ev:TestCustomEvent = new TestCustomEvent("catch this");
    this.dispatchEvent(ev);
    public function addEventListener(type:String,
    listener:Function, useCapture:Boolean = false, priority:int = 0,
    useWeakReference:Boolean = false):void{
    dispatcher.addEventListener(type, listener, useCapture,
    priority);
    public function dispatchEvent(evt:Event):Boolean{
    return dispatcher.dispatchEvent(evt);
    public function hasEventListener(type:String):Boolean{
    return dispatcher.hasEventListener(type);
    public function removeEventListener(type:String,
    listener:Function, useCapture:Boolean = false):void{
    dispatcher.removeEventListener(type, listener, useCapture);
    public function willTrigger(type:String):Boolean {
    return dispatcher.willTrigger(type);
    but in my application the event doesn't get caught:
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" initialize="addListeners()">
    <mx:Script>
    <![CDATA[
    private function addListeners():void
    this.addEventListener( TestCustomEvent.EVENT_NAME,
    onEventCaught );
    private function init():void
    var t:TestDispatch = new TestDispatch();
    t.RaiseEvent();
    public function onEventCaught(event:TestCustomEvent):void
    trace("caught");
    ]]>
    </mx:Script>
    </mx:Application>
    Not sure why event is not being caught.
    Thanks,
    EE

    I updated my code a little:
    //Using a sprite so it should be part of the diplay list now.
    package
    import flash.display.Sprite;
    public class TestClass2 extends Sprite
    public function TestClass2()
    super();
    public function RaiseEvent():void
    var ev:TestCustomEvent = new TestCustomEvent("catch this");
    this.dispatchEvent(ev);
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()" initialize="addListeners()"
    xmlns:local="*">
    <mx:Script>
    <![CDATA[
    private function addListeners():void
    this.addEventListener( TestCustomEvent.EVENT_NAME,
    onEventCaught );
    private function init():void
    tc2.RaiseEvent();
    public function onEventCaught(event:TestCustomEvent):void
    trace("caught");
    ]]>
    </mx:Script>
    <local:TestClass2 id="tc2" width="100" height="50" />
    </mx:Application>
    But event still not being caught.

  • Calendar events not being sent immediately.....finding out when I created an event.

    I recently created a calendar event on my iPhone 5.  I invited an attendee who received the event too late (approximately 36 hours later).  Is there a way to verify and view when I created the event?  Also, is this a common problem?  Why would this have happened?  It definitely makes me not trust using the calendar app for creating and sending event invites.  It is CRITICAL that I view when I created the event.  Thanks in advance for any help or advice.

    Hi Dave,
    From your description, the mailbox you use for conference is not a special room mailbox. It is a standard user mailbox. I think that is the problem, it should be configured as a room type and not a user mailbox.
    If I have misunderstood your concern, please feel free to let me know.
    What's more, about how to create and manage room mailbox, here are some helpful threads for your reference.
    Create a Room or Equipment Mailbox
    http://technet.microsoft.com/en-us/library/bb124952(v=exchg.141).aspx
    Managing Resource Mailboxes and Scheduling
    http://technet.microsoft.com/en-us/library/bb124374(v=exchg.141).aspx
    Hope it helps.
    If you need further assistance, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Looping, Clickable FLV Preview - Click Event not being recognized

    I have tried the following code to create a thumbnail preview that loops and is clickable to go to a new page with a video gallery... The video plays anbd loops, but, it does not seem to recognize the mouse click -- i have a trace that isn't being triggered an nothing happens... code is below. any help appreciated...
    import fl.video.VideoEvent;
    import flash.events.MouseEvent;
    player.fullScreenTakeOver = false;
    player.source =
    "YadWebPreview.flv";
    player.autoRewind = true;
    player.autoPlay = true;
    function Loop(event:VideoEvent):void
    player.play();
    function Link(event:MouseEvent):void
    trace("Clicked");
    navigateToURL(
    new URLRequest(
    "http://yad.nyckatz.com/index.php/about-us/meet-our-people"),
    "_blank");
    player.addEventListener(VideoEvent.AUTO_REWOUND, Loop);
    player.addEventListener(MouseEvent.CLICK, Link);

    I added a button on top of the video and made it transparent.  added the  following code to the button:
    import flash.events.MouseEvent;
    function Link(event:MouseEvent):void
    trace("Clicked");
    navigateToURL(
    new URLRequest(
    "http://yad.nyckatz.com/index.php/about-us/meet-our-people"),
    "_blank");
    myButton.addEventListener(MouseEvent.CLICK,Link);
    getting the following compler errors:
    5000: The class 'fl.controls.Button' must subclass 'flash.display.SimpleButton' since it is linked to a library symbol of that type.
    and the following in the output tab
    ReferenceError: Error #1065: Variable Icon is not defined.
    ReferenceError: Error #1065: Variable FLVPlayback is not defined.
    ReferenceError: Error #1065: Variable ComponentShim is not defined.
    have the following code on the video:
    import fl.video.VideoEvent;
    player.fullScreenTakeOver = false;
    player.source =
    "YadWebPreview.flv";
    player.autoRewind = true;
    player.autoPlay = true;
    function Loop(event:VideoEvent):void
    player.play();
    player.addEventListener(VideoEvent.AUTO_REWOUND, Loop);
    Can't find anything to help figure out how to correct these...  Any help much appreciated.

  • Invitations not being sent out on Calendar Server 6.3

    We would be grateful for any help on this. We can give further details if needed, please just let us know.
    Thanks very much.
    Issue:
    To our customers the calendars server appears to be fully operational and without error. However, when a customer creates a new event and invites other people to attend, no invites are sent out. The event creator, however, believes all is in order as no error messages appear and the list of invitees appears on the event. This was working recently. We have looked for things which have changed (e.g. disk space, size of files, corruption, recent patching, licenses expiring, etc) but have not yet found anything that has changed.
    Some details of our system:
    ./cal/sbin/csversion
    Oracle Communications Calendar Server 6.3-27.01 (built Feb 15 2011)
    SunOS xxxx 5.10 Generic_142909-17 sun4u sparc SUNW,Sun-Fire-V440
    In /var/opt/SUNWics5/logs/watcher.log , we get these notices and errors when we restart the service.
    [20/Feb/2012:12:35:56 +1300] (Notice) Received request to restart: store admin http
    [20/Feb/2012:12:35:56 +1300] (Notice) Connecting to watcher ...
    [20/Feb/2012:12:36:00 +1300] (Notice) 7698
    [20/Feb/2012:12:36:00 +1300] (Notice) Stopping http server 7704 ..... done
    [20/Feb/2012:12:36:02 +1300] (Notice) Stopping http server 7705 ... done
    [20/Feb/2012:12:36:02 +1300] (Notice) admin server is not running
    [20/Feb/2012:12:36:02 +1300] (Notice) Stopping store server 7700 ............................................................... timeout
    [20/Feb/2012:12:37:03 +1300] (Error) Cannot stop server store with SIGTERM, now retrying with SIGKILL
    [20/Feb/2012:12:37:03 +1300] (Notice) Stopping store server 7700 ..... done
    [20/Feb/2012:12:37:05 +1300] (Notice) Starting store server .... 7718
    [20/Feb/2012:12:37:05 +1300] (Notice) Checking store server status ..... ready
    [20/Feb/2012:12:37:07 +1300] (Notice) Starting admin server ....Watched 'csadmind' process 7725 exited abnormally
    7725
    [20/Feb/2012:12:37:08 +1300] (Notice) Starting http server ....[20/Feb/2012:12:37:08 +1300] (Notice) Received request to restart: store admin http
    [20/Feb/2012:12:37:08 +1300] (Notice) Connecting to watcher ...
    ... 7727
    [20/Feb/2012:12:37:13 +1300] (Notice) 7698
    [20/Feb/2012:12:37:13 +1300] (Error) store failed twice in 600 seconds, will not perform restart
    Watched 'csadmind' process 7844 exited abnormally
    What we've done:
    We have run db_verify and csdb -v check on the databases. ics50deletelog.db did have corruption, so we fixed that by using db_dump and db_load to export then import the databases.
    We also purged the ics50deletelog.db database using cspurge afterwards when the dump and load didn't seem to have had an effect.
    We tried putting the log level up in the /opt/SUNWics5/cal/config/ics.conf , but didn't get any more details when restarting the service (through /etc/init.d/sunwics5 restart)
    Before we did the db_dump, db_load and purge:
    Calendar database version: 4.0.0
    Sleepycat Software: Berkeley DB 4.2.52: (December 3, 2003)
    Total database size in bytes: 1465503744
    Total number of calendars: 14964
    Total number of events: 830842
    Total number of tasks: 17351
    Total number of alarms: 57181
    Total number of gse entries: 9
    Total number of master component entries: 24100
    Total number of deletelog entries: 1779967
    Total logfile size in bytes: 79262
    Session database version: 3.0.0 [BerkeleyDB]
    Total database size in bytes: 0
    Total logfile size in bytes: 0
    Counter database version: 1.0.0 [Memory Mapped Files]
    Total database size in bytes: 0
    After the db_dump, db_load and purge:
    Calendar database version: 4.0.0
    Sleepycat Software: Berkeley DB 4.2.52: (December 3, 2003)
    Total database size in bytes: 1201864704
    Total number of calendars: 14964
    Total number of events: 830845
    Total number of tasks: 17351
    Total number of alarms: 55116
    Total number of gse entries: 9
    Total number of master component entries: 24100
    Total number of deletelog entries: 1779967
    Total logfile size in bytes: 5251612
    Session database version: 3.0.0 [BerkeleyDB]
    Total database size in bytes: 0
    Total logfile size in bytes: 0
    Counter database version: 1.0.0 [Memory Mapped Files]
    Total database size in bytes: 0
    Thanks again.

    Sounds like we talking about 'Event Invitations Notifications'. These are the notifications that gets sent when some one invite you to an event. Whether you receive the notification or not depends on your preference that is stored in ldap. This can be set using the Convergence by navigating through Options-> Calendar -> Notifcations (Check "Notify me via email of new invitations or invitation changes"). The actual ldap attributes that gets stored in user's entry is below.
    icsExtendedUserPrefs: ceNotifyEnable=1
    icsExtendedUserPrefs: ceNotifyEmail=[email protected]
    In the following cases, the user (attendee) will not get notifications even if the above preference is set.
    a> Creating an event with attendees in the past. CS6, by default, suppresses notifications for past events. You can enable notifications for past events by setting the config "ine.pastnotification.enable" to "yes" in ics.conf
    b> If the client creating the event requests server not to send notifications. (smtpNotify wcap param for storeevents.wcap). Outlook Connector uses this wcap param, so you won't get server notifications for the events invited using Outlook Connector. Outlook Connector sends it's own notifications directly.
    I think, you are looking for these kind of notifications. The process responsible for sending these notifications is "csadmind" on the Frontend. So, you need to check admin.log on the Frontend to see if it is sending notifications or not.
    Edited by: dabrain on Feb 21, 2012 9:26 AM

  • All plist files are not being pushed out

    Current setup : 10.6 Server ( updated to 10.6.8 )
    About 10 to 15 client machines ( 10 Desktops and 5 laptops )
    These client machines are being managed in a group already for Software Updates from the server and hence already have the managed preferences folder on each machine.
    I have just created a new com.apple.print.custompapers.plist file and have added it to the Preference Editor for that group and have set it to 'Often'. ( WorkGroup Manager -> Computer Group -> Preferences -> Details )
    But after repeated attempts, I am still not able to push out this plist file to the client machines. I have tried the following already :
    1. Deleting the Managed Preferences folder from each machine. Result : It recreates the folder again, but again with only the Software update plist file.
    2. I have tried setting the plist to 'Always' from the 'Once, Often, Always' selection in the Preferences Editor. Result: Same result as above.
    3. I have tried adding the file manually to Managed Preferences. Result : The file is removed at the next login, and cannot be used before that.
    All clients are running on 10.6.8.
    If you require any more information, please specify and I'll provide it. Thank you for looking over the problem and giving it thought.
    Hope to hear from someone with a possible resolution soon.
    Thanks.
    Prat.

    Have you tried setting another, pre-made preference in the computer group settings to see if it applies?
    Have you run plutil /path/to/plist in the command line to see if it is OK (can't see why this would matter, this is a stab in the dark)?
    P.S.
    I have found that OpenDirectory can be quirky. I have found it become corrupt but still mostly functional quite quickly after setup. Since Apple has not well documented this software and offers no directory maintenance tools, every year I end up having to rebuild the server from scratch. I know this is not very helpful, but strange, unpredictable, and unbecoming behavior seems to be more frequent than I prefer. (Thankfully setting up an OS X Server is a veritable breeze compared to Microsoft Server Products).

  • Socket disconnection event not being reveived java.nio

    Hi All
    My question is as below
    i am using java.nio package + win 2K + jdk1.4.1_02
    I have a Server accepting socket connection and is configured
    in Nonblocking mode.
    -The server receives (selector) events (accept event)
    when a client requests for a connection .
    -The server is getting read and write events when
    client wants to read and write
    -The server gets a read event when the client disconnects
    My only problem is that the Server is not getting any events
    when the client disconnect due to network break down
    for EX when the network connection breaks the client disconnects
    but the server selector is not getting any events
    I am storing the client Socket objects in a Hash Table and
    if i execute the .isConnected() method it returns true
    even though the the client is down
    The only work around is to try to read and write on the socket
    i get an IO exception and am able to make out that the
    client is disconnected
    But this is not desirable for my client
    as client modification to give any kind of echo is not possible and
    a read /write event will cause problem.
    Can any one tell how to detect client side disconnection
    with out Read and Write on the client socket
    I get an socket Exception when the socket is in Blocking IO and is blocked on read/ write but I am facing this problem in NonBlockingIO
    Regards
    Avinash

    int ct = read.selectNow();
    if (ct > 0)
    Set readyKeys = read.selectedKeys();
    Iterator i = readyKeys.iterator();
    while (i.hasNext())
    SelectionKey key = (SelectionKey) i.next();
    i.remove();
    if (key.isReadable())
    SelectableChannel nextReady = (SelectableChannel) key.channel();
    SocketChannel sc = (SocketChannel) key.channel();
    int rd = sc.read(buffer);
    // Link is dead
    if (rd == -1)
    key.cancel();
    key.attach(null);
    nextReady.close();
    continue;
    // Process your data
    catch (Exception e)
    e.printStackTrace();

  • Batch Events not being raised

    I can't determine why the seeded events oracle.apps.gme.batch.unrelease, oracle.apps.gme.batch.close, and oracle.gme.batch.reopen are not firing. The events are all enabled as are the subscriptions which are set to phase 50. The only batch event which is firing is oracle.apps.gme.batch.release.
    I am assuming that those seeded events for various batch actions should be automatically raised regardless of whether there are Erecords or Esignatures required for them. I am assuming this because Batch Release events are working and the event subscriptions I have created are being picked up as well.
    Does anyone have any idea why those events would not automatically be raised when those actions are taken?
    Thank you!

    I can't determine why the seeded events oracle.apps.gme.batch.unrelease, oracle.apps.gme.batch.close, and oracle.gme.batch.reopen are not firing. The events are all enabled as are the subscriptions which are set to phase 50. The only batch event which is firing is oracle.apps.gme.batch.release.
    I am assuming that those seeded events for various batch actions should be automatically raised regardless of whether there are Erecords or Esignatures required for them. I am assuming this because Batch Release events are working and the event subscriptions I have created are being picked up as well.
    Does anyone have any idea why those events would not automatically be raised when those actions are taken?
    Thank you!

  • Group Policy not being pushed out

    HI,
    I have a problem with Group Policy updates.  The domain controllers are Server 2008 R2 and the clients are all Windows 7 64bit.  It looks like the clients are not updating their group policies.  We've recently added a certificate for our new
    corporate wifi.  During testing we used gpupdate /force and the computers installed the certificates.  It has been several weeks since the GP was published and we have announced the new wifi.  Users are still being prompted to accept the certificate
    even though they should have received it from the GP.  If I try to do a RSOP, of a users computer, I get "The RPC Server is unavailable"  Any ideas on how to fix this?
    Thanks
    Ron Soulliard
    Ron Soulliard Systems Administrator Polaris Ventures

    Group Policy is always retrieved by the clients. If a client sees a new GPO that is applicable to them, it will grab it and apply it.
    In the GPMC, can you run a GPResult for a computer that hasn't gotten the GPO? You might also want to check out this list of common GP issues:
    http://deployhappiness.com/top-10-ways-to-troubleshoot-group-policy/
    If my answer helped you, check out my blog:
    DeployHappiness. Subscribe by
    RSS or
    email. 

  • Wait for Event not being picked up by workflow

    Hi,
    We have a purchase order workflow that has a parallel branch with a wait for event of 'Released' on it. The theory is that if a PO is released the workflow will finish. We have a situation where POs are created then released straight away by an idoc. In the event log we can see the release step created event and it correctly starts the workflow however the released event follows at exactly the same time and the workflow does not seem to notice this so it sends a released PO to a user to be released. I hope this makes sense. Can anyone think of a reason why this might be happening? Does it need a slight delay between the two events?  In SWEINST the linkage is active and when I look at the entry for one of these POs it tales me to the correct workflow.
    Thanks
    Rob

    Hi,
    You could possibly create a check function module for the event. In the check function module you check some specific variable (if there is something you can use) - for example if the event was created by a certain user or if the PO is a certain type(?). Then if your condition is fulfilled, you raise an exception and no event will be triggered => no workflow.
    This is just one possible solution.
    Regards,
    Karri

  • Sharepoint Emails Sitting in Queue, Alerts not being sent out via email nor sms

    I'm using Sharepoint 2013 Enterprise Edition on Windows Server 2008 R2. I have the mobile account setup correctly (account tested successfully) and I have the email setup for use with gmail (have configured the virtual IIS 6.0 manager to connect to gmail. 
    Currently when I set alerts they take on sharepoint but nothing is making it outside of the server. I have correctly mapped the mail and mobile phone functions and synchronized the user profiles from the active directory. Configured the Forms Based authentication
    (All of which work). 
    When I look on the virtual smtp manager I can see a large number of connections from unknown IP addresses connecting as my public IP (Suspect bots or spammers spoofing my IP address). I have checked online and the server is not blacklisted. When I look in
    the mail root file there I can find the emails / alerts sitting in the queue but going no where. If I manually move a .EML file to the drop folder after a small amount of time I see the file disappear so I know it's going somewhere. Can someone please help
    me out here? 
    I've attached the SMTP Service log below as you can see there are a large number of code 550 which means unable to relay. I'm struggling to understand how that can be when my accounts are all configured correctly?

    Yes, it probably would be easier to use an existing relay (and easier to manage). I'd use that, instead.
    You can also open one of those EML files to check the x-sender/x-receiver headers.
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.
    Alright I'm set to relay through the internal mail server however in the EML file I'm not seeing an x-sender or x-recipient which is weird. Shouldn't SP2013 automatically populate that info?

Maybe you are looking for

  • Since updating to IOS5 my voice memos won't sync from iPhone4 to iTunes (macbook).

    Since updating to IOS5 my voice memos won't sync from iPhone4 to iTunes (macbook). They show in my iTunes but are grey so can't click on them. I need to put voice memos on a CD. Can someone help please?

  • Why would Final Cut Pro 7 work smoother on one user account over another?

    I just purchased a new 27" iMac 3.1 Ghz Intel Core i5, 16GB RAM, AMD Radeon HD 6970M 1024 MB. Just went to Mountain Lion a few days ago. I installed a licensed version of Final Cut Pro 7 on my account (Admin). However, the program immediately started

  • How do I gracefully handle XamlParseExceptions?

    If a control that is dynamically loaded as part of a template has an error, it causes a XamlParseException which crashes the entire application. I can hook into the Application.DispatcherUnhandledException event, but setting Handled to true on the Di

  • Audio from imported video

    I have been trying to import prerecorded taped video from my camera into clips in Imovie but only the video is coming through with no audio. Is there something that has to be done to make sure the audio also gets imported?

  • Question of file size related to power point

    I am a relatively new user to Premier Pro and currently have simple editing needs.  I am creating a powerpoint presentation in 2010 with multiple video clips (no audio).  The file size (powerpooint) has become too large (@ 300MB).  I plan to use a pr