Workflow activity stuck at Custom Nodes and is in Active Status

Hi Team,
We have one issue with our Custom Order Management--> Order  Booking workflow. Can you please help us.
Issue:
Our Workflow Activities are in the following sequence.
Start --> Activity A ---> Activity B --> Activity C --> End
Code at Activities A, B, C involves Third part tool Integrations which involves business events, invoking Https Urls with Req/Res Xmls
Ideally whenever an issue encounters at any one of these nodes, either workflow should go back or should proceed further.
But in our case, process gets stuck at some Node (either A, B or C) with Activity status as ACTIVE. Upon checking Workflow diagram, seems there is no 'Y' or 'N' signal from any one of the above activities, once processes at respective Activity's gets completed.
Can you please review this issue and suggest if anything could be checked.
1) We came across some hint in google and found that missing COMMIT statement could be the issue.
     But we checked our custom code and there is no issue with COMMIT.
2) We have even checked the FINAL RETURN status at each of the Activity's by adding debug messages and we could see that the return value is appropriate but not sure what is causing this
     issue.
Upon retrying the Activity from Workflow Administrator resp, the same activity (that is stuck before) is getting Completed Normally.
Also this is an intermittent issue and not sure, if this is happening inconsistently due to some environment params or some load related.
Request you to review the problem and suggest if anything needs to be checked.
Thank you,
Lokesh G
Oracle Apps Consultant

Hi Team,
Request you to please check the issue and provide your suggestions.
Your help is much appreciated.
Thanks
Sreenivasulu M

Similar Messages

  • What shall i do? I've done restoring my iphone 3gs and still stuck on cannot activate and contact customer service.

    I've done restoring my iphone 3gs and still stuck on cannot activate and contact customer service. What shall i do? any help please.

    99.9% of the time, the cause of this issue is the fact the phone was jailbroken/hacked to unlock it for use on networks other than the network the phone was originally locked to. Apple maintains a database of officially unlocked iPhones, and when Apple's servers detect phones such as yours, activation stops & you get the message you got.
    So, either get a sim card from the carrier your phone was originally locked to, or get it officially unlocked, if you want to activate it. Because it appears that it was not officially unlocked.

  • Workflow Process stuck in Active status

    Hi,
    My workflow stuck in Active status and user is not able to proceed further. But it is not happening every time. Sometimes the process activty gets stuck. Could anyone please let me know the reason for this behaviour and how to fix this issue?
    Thanks

    You need to get more information as to what is going on, identify more facts around the issue:
    1. First off, run wfstat.sql to get a history of the activities of the process as well as its attribute values.
    2. Once the workflow gets 'stuck' what makes it progress? For instance, does running the background engine with parameter Stuck processes=Yes fix the problem?
    3. Are there activities deferred that do not get process by the background engine?
    4. Does the process get stuck after a notification is responded to but 'nothing' happens?
    It would also be useful to have the complete DB version.
    Regards,
    Alejandro

  • Create new / add Custom Node in Component Pallete - Workflow Editor

    is there anyway to Create new / add Custom Node in Component Pallete - Workflow Editor in SQL Developer - Oracle Data Miner?
    Now i'm in progress create data cleansing engine in database package, and I have an idea to create new node in workflow editor, the node will call my procedure data cleansing.
    Anybody help?

    Hi,
    Not currently.
    We are working on a SQL Query node that would process data on connected input nodes and allow the user to create any sql query specification they would like.
    So as long as your implementation is compatible with being included as part of a sql query, then you may be able to take advantage of this new node.
    Since you describe your implementation as a data cleansing implementation, I could see it taking in what ever input is provided in the flow, and then returning a cleansed result set.
    Thanks, Mark

  • When i try to activate itunes on my iphone it continues to say "We're sorry, we are unable to continue with your activation at this time." and now my phone has stuck. what happened?

    when i try to activate itunes on my iphone it continues to say "We're sorry, we are unable to continue with your activation at this time." and now my phone has stuck. what happened?

    Hello mzpartia,
    I found an article from Apple that specifically outlines how to try and troubleshoot this issue. It's called iPhone: Troubleshooting activation issues found here: http://support.apple.com/kb/ts3424.
    Resolution
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to Wi-Fi if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Applefor assistance.
    Take care,
    Sterling

  • Upload file in custom program and pass it to workflow

    Hi, guys.  Now, i have the requirment to allow user to upload file in the custom program and trigger the workflow with the attached file.
    Any one has experience on this? i would like to know how to upload the file from custom program, and how to create instance of the BO "SOFM".  Then, i can pass this instance to workflow.

    HI Jrockman,
    Please check the solved reply in this thread
    Passing a file from a report  to workflow container
    Hope this would solve your issue.
    Good luck
    Narin

  • Custom tree node and DefaultTreeModel

    Hello,
    I would like to know if it's possible to use the following custom tree node with the DefaultTreeModel:
    class MyTreeNode extends DefaultMutableTreeNode{
      private String _argument = null;
      public MyTreeNode(){}
      public MyTreeNode(Object node, String argument){
         super(node);
          _argument = argument;
    }I have tried it and it's not working but I think in theory it should work. Please correct me if I'm wrong.
    The problem is that the tree won't display or insert the custom node when the insertNodeAt(...) method of
    the DefaultTreeModel is called. I also tried using a custom tree listener and calling the .reload() method directly.
    Any help will be very appreciated.
    Thanks in advanced.

    Are you sure it's not being inserted into the model,
    and just not being displayed?
    Are you calling nodesWereInserted() after your
    insertion?Thanks for your reply.
    I've modified my app. so that the following method will populate the tree for testing only:
      public void populateTree()
        MyTreeNode root = new MyTreeNode("Root Node", "test");
        DefaultTreeModel treeModel = new DefaultTreeModel(root);
        JTree tree = new JTree(treeModel);
        tree.setEditable(true);
        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
        tree.setShowsRootHandles(true);
        JScrollPane scrollPane = new JScrollPane(tree);
        setLayout(new GridLayout(1,0));
        add(scrollPane);
        int childIdx[] = {0,1};
        String p1Name = new String("Parent 1");
        String p2Name = new String("Parent 2");
        String c1Name = new String("Child 1");
        String c2Name = new String("Child 2");
        MyTreeNode p1 = new MyTreeNode(p1Name, "test");
        MyTreeNode p2 = new MyTreeNode(p2Name, "test");
        MyTreeNode c1 = new MyTreeNode(c1Name, "test");
        MyTreeNode c2 = new MyTreeNode(c2Name, "test");
        treeModel.insertNodeInto(p1, root, 0);
        treeModel.insertNodeInto(p2, root, 1);
        treeModel.nodesWereInserted(root, childIdx);
        treeModel.insertNodeInto(c1, p1, 0);
        treeModel.insertNodeInto(c2, p1, 1);
        treeModel.nodesWereInserted(p1, childIdx);
        treeModel.reload();
    }And the result is that the "Root Node" will be displayed with "Parent1" and "Parent2" but "Parent1" won't have any children. Furthermore, if I try to remove "Parent1" using:
    treeModel.removeNodeFromParent(p1);I will get an exception saying that node p1 has no parent, which suggests that the parent/child relation
    is not being assigned by the model, even though the nodes (p1, p2) are displayed in the tree showing "Root node" as the parent. This is very strange.
    Please help.

  • Adding custom nodes in SAP reference IMG and accessing them using SM30

    I was able to successfully add an IMG node and few activities under the node (for our custom configuration table data entry) in SAP reference IMG. (using transaction SIMGH).
    However, when I execute transaction SM30, enter the name of the custom table and hit the button customizing, it does not take me to the appropriate node in IMG. It simply doesn't do anything.
    For any SAP table or view, this works like a charm (wherever SAP has configured the nodes). But when we create custom nodes for custom tables, it does not work.
    What steps am I missing?
    I will really appreciate any help you can provide.
    Jitendra Mehta

    Hi Sree:
    I assume you have either created your view maintenance for Z tables or you have created transaction attaching calling SM30 for view maintenance of your Z table.
    You may go in transaction SIMGH and in SAP reference IMG, create a main node (wherever your end client wants you to put it) and under this node, you can create sub-node for each view maintenance with a suitable description of sub-node.
    Once you save and activate, you are done.
    Then you can execute transaction SPRO and you should see your custom nodes wherever you attached them in the tree.
    I hope I understood your problem and have answered it.
    If not, please let me know and we can discuss it further.
    Thanks.
    Jitendra Mehta

  • Fundamentals: Custom Nodes vs Methods and Controller in MVC

    I have a couple quick questions that I'd consider somewhat fundamental that I should have a better grasp this far along in development...
    - First of all, what do you guys/gals consider the best way to structure your JavaFX classes. I almost always create custom nodes (XCustomNodes usually... from JFXtras) representing certain "panels" filled with content (buttons, labels, text, etc). I realize you could also create a separate class/method to simply return HBoxes, VBoxes, Groups, etc. So... thoughts?
    - Second, I see all these articles/posts saying ghat JavaFX is a perfect MVC language. I agree for the most part, but what would you consider the Controller? Aren't the View and Controller pretty well married together in JFX? Separating the Controller into its own entity seems like it'd be more work than help.
    Just trying to extend my knowledge reach... Thanks in advance!

    evnafets
    Thank you!!!
    While I do not understand how to do this:(though I understand principle of it... the misunderstanding is the whole problem)
    To make this example work all in one file, you have to make RemindTask2 an
    inner class of Reminder (which is already an inner class)
    I do not always understand packages....and doing what you suggested, in forming the packages, and sorting the classes, will help me understand the structure better...plus get me in the norm of always creating packages !
    So what I'm going to do right now is go tear my code down into various packages
    and source files.....however...if you or anyone else could explain/show example
    of how to do what you said(for inner classes, not packages...understand packages) , it would be appreciated.
    This fundamental inner class creation is obviously a major bump right now...and creating the packages and linking the classes will be easy, because I understand how to do it when I already have functional classes created.
    I do not always understand class/method creation/implementation..such as here.
    (IE: can create network apps/gui apps of simple nature....but this easy ol' thing has been driving me nuts.)
    Creating those classes however,,,,even if not the most efficient way is something
    needed for my basic Java knowledge.
    Thank you,,,,VERY GOOD project/training is going to come from this !!
    Really, thank you in any case...if you do not have the time(100% understand) please lmk, will just give you your duke award.
    AEWSOME

  • I want to ask company when user update to ios7 it stuck all of device and not clearly about apple id to active how to solve it or just keep all of device into recycle because can not use?

    i want to ask company when user update to ios7 it stuck all of device and not clearly about apple id to active how to solve it or just keep all of device into recycle because can not use?

    You need to enter the Apple ID and password that was used to set up/activate the phone. There is no way around this.

  • I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    Online Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Creating a contractor custom form and workflow associated with it OIM11g

    we are using OIM 11.1.1.5 we need to implement a scenario where, A Manager or user in admin role creates the contractor using customized form and manager gets the contractor gets the creadentials of contractor and then contractor logs in OIM self-service console to request for AD account.
    what are the steps that need to be performed to execute this
    Thanks and appreciate your responses

    I have created the request template and HR user who has HR admin role can log-in and access the request tab and request for others.
    how can i achieve the following one
    now the user who has been created by above HR user. the User should be able to log-in and access a link(custom) and (should be able to access only self-service) on request tab like "Request AD Account" this should take him to new form where his profile attributes are pre-populated and a Notes section where he will enter justification then submits the request. the request goes to his manager for approval and once he approves he will be provisioned into AD
    Thanks

  • Displaying custom node group sequences (and their creation)

    Hi,
    firstly my usual disclaimer :) I am a newbie at JavaFX and only jump back in when I have a little time here and there.
    What I'm trying to achieve, is to create an Object call MyItem which is essentially a Group with a rectangle, image and text. I want to be able to create multiple of these MyItem's and add them to a sequence (list, array).
    Then do a foreach item MyItems --> insert into myGroup.content[];
    But it keeps saying that either a Node or a Sequence is not what it's looking for...
    See below which should be able to describe the problem better than my confusing explanation above:
    Main.fx
    package exampleitems;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.LinearGradient;
    import javafx.scene.paint.Stop;
    import javafx.scene.paint.Color;
    import javafx.scene.Node;
    public var stg = Stage {
                title: "TestApp"
                scene: Scene {
                   fill: LinearGradient {
                      startX: 0.0
                      startY: 0.0
                      endX: 0.0
                      endY: 1.0
                      stops: [
                         Stop {
                            color: Color.web("#0c8ec4") //Color.BLACK
                            offset: 0.0
                         Stop {
                            color: Color.web("#0a1945") //Color.GRAY
                            offset: 1.0
                   width: 800
                   height: 600
                   content: []
                resizable: false
    var man=Manager{};
    public function insertThem(){
       var myItemsHere = man.getItems();
       for(node in myItemsHere){
          insert node as Node into Main.stg.scene.content;
    function run(){
       stg;
       insertThem();
    }Manager.fx
    package exampleitems;
    public class Manager {
       var itemsListHolderAA=AAItems{};
       package function getItems(){
          return itemsListHolderAA.getItems();
    }AAItems.fx
    package exampleitems;
    public class AAItems {
       var icon="{__DIR__}images/AA.png";
       package function getItems() {
          var i = 1;
          var myItems=[];
          //while(i < 10){
             insert Items{xPos: 20*i, yPos: 20*i, iconItem: icon} into myItems;
             //i++;
          return myItems;
    }Items.fx
    package exampleitems;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.paint.Color;
    import javafx.scene.CustomNode;
    import javafx.scene.Node;
    import javafx.scene.image.ImageView;
    import javafx.scene.image.Image;
    import javafx.scene.text.Text;
    import javafx.scene.text.Font;
    public class Items extends CustomNode{
       public var xPos: Integer;
       public var yPos: Integer;
       public var iconItem: String;
       override protected function create () : Node {
          Rectangle {
             width: (750), height: (470/20)
             fill: Color.TRANSPARENT
             stroke: Color.web("#0c8ec4") //Color.TEAL
             strokeWidth: 1.0
             arcWidth: 20
             arcHeight: 20
             smooth: true
          ImageView {
             translateX: 2, translateY: 1
             image: Image {
                url: iconItem
             fitWidth: (470/20)
             fitHeight: (470/20)
          Text {
             translateX: ((470/20)+5)
             translateY: ((470/20)*0.666)
             font : Font {
                size: 10
             content: "Hello!"
    }As you can see, my main problem seems to be that the last Node in Items.fx gets displayed, and not all three (try commenting out Text node and image appears etc...)
    So, either I get the Items.fx to return as a Group (?), but then I get the error that it expects a sequence etc.
    So how can I get the myItems[] in AAItems.fx to fill up with a "group" of nodes and then be able to iterate through them on the Main.fx ?
    I hope that's clear? :/
    What I want is a list of Items(.fx) created in AAItems(.fx) and be able to then display (iterate through) them in Main(.fx).
    I'm sure it's a concept flaw on my part on how to implement it. Any help appreciated.

    Oops. I guess not "exactly" what I wanted:
    The Stack container arranges its managed content nodes in a back-to-front Stack. The z-order of the content is defined by the order of the content sequence with content[0] being the bottom and content[sizeof content-1] being the top...
    D'Oh! Just replacing Stack with Group does the job... man... I need a holiday!!! :D

  • Adding custom field in ME2B and business function activation

    Hi Experts,
    I have one requirement for adding one custom field in ME2B for ALV output. From some old thread i come to know we have to implement BADI "ME_CHANGE_OUTTAB_CUS". But when i search for this BADI its not available.
    For this BADI suppose we have to activate one business function MM, Integration of Materials Management and Financial Accounting (LOG_MMFI_P2P).
    I want to know if we activate this business function then what are the changes will happen in our system(In standard transaction).
    Please revert.
    New fields addition in ME2L Report
    BADI ME_CHANGE_OUTTAB_CUS
    Thanks,
    Venkadesh

    Hi Team,
    I resolved this issue using enhancement without using BADI. My team not ready to activate the Business so i moved to implicit enhancement.
    Inside method " if_reader_mm~read_table." in include "LMEREPI02", we are getting the Fieldcatlog and dynamic table for output. Here i have added my custom field and changed the dynamic structure with reference " ex_table_ref ".
    I know this is not a proper way to do, but it is not affecting the standard process.
    Thanks,
    Venkadesh

  • I'm in the activation process for setting time and date but been stuck in that screen for a while please help

    just installed my Apple TV and it's been in the activation screen to set time and date for a while .
    not sure what the issue is

    It's not properly connected to the network
    Make sure location is set correctly
    DNS should be on auto (settings - general - network)
    If on wifi try Ethernet
    Check that router has port 123 open (refer to manual if unsure)

Maybe you are looking for

  • OS X Firefox profiles cache filling up since 18 June, today one of these files appears on desktop at startup and has become login item - what's going on?

    E.g. In /Users/MYNAME/Library/Caches/Firefox/Profiles/4h26zusu.default/Cache/3/A3 there are many small files created over last 2 weeks (similarly in all other cache slots). But this file A013Bd01, which is a small picture, appeared in my login items

  • Calling url from a form - err using ".value" method

    I'm trying to call url from a form, which seems to be the subject of many of these Posts. I have a form with a combo box/LOV and a button. The LOV will read a url into the combo box from a table of url's. I used the following code in the "OnClick" Ja

  • Webhelp output doesn't display

    I'm working on my second webhelp project...the first went to a top domain, with a skin, and works great with no problems.  This one is going to a subdomain  (sub.domain.com).  When the first page loads, the TOC, header, etc. don't display at all....I

  • SG500 in L3-Mode: new VLAN Interface won't create route

    Hello, i have some SG500 in a stack. The Stack has Routing enabled and everything works as expected. But now i created a new VLAN10, assigned an IP-adresse and i'm not able to route into this vlan. There is no entry in the routing table. In VLAN10 ar

  • My ipad wont update

    hi people need some help. my ipad wont update to the newest software 4.2.2 every time i have tryed to update it it comes up with an error msg 3259 ive looked on the apple site too see want this error is and have followed the instructions about turnin