Process cahins activation

HI everyone,
                    I need information on following topics
               1. how to find the meta chains and process chains involve in it.
                2. how to activate proces cahins using function modules.
thnking you.

Hi,
for your first answer ..
Go to se16 >>> rspcchain >>. give the metachain name in coulomn(Varinate) and then say execute you
will find your metachain as trigger and the chain with (Chain) option will be your main chain..
if that one also your meta chain you can find further in same way ..
if you find the no of meta chains then also go to RSPCChain >> and give the chain name in process chain (column ) it will give you al the meta chians releated to it .
reagrds,
shikha

Similar Messages

  • Terminator - Prompt if a process is active before closing window

    HI. As the title says: I want to get a prompt in Terminator (a terminal emulator) if I accidentally try to close its window while a process is active inside it. Eg.: If I have vim open inside terminator, and I carelessly press the window manager's close button, I want a prompt asking for confirmation.
    Now there was a sane default by which it automatically showed such a prompt, but I (quite stupidly) told it to never prompt me again. Later I wanted it back. But I couldn't find where or how I could change that preference. I have tried going through its "Preferences" gui and also searched its default config file:
    ~/.config/terminator/config
    but I have had no luck. I have also checked DConf Editor by searching for 'term', 'terminal' and 'terminator'. Again no luck.
    I was hoping someone here could tell me how I could fix it. Currently I have resorted to running a screen session, so that I don't lose my work. But I hope I can get that prompt back.
    Thank you.
    Last edited by richcocoa (2013-10-14 08:29:31)

    It's possible to obtain this prompt when trying to close multiple tabs / terminals / windows. I've made some modifications to my /usr/share/terminator/terminatorlib/container.py based on the Launchpad version. The construct_confirm_close function makes it possible:
    def construct_confirm_close(self, window, reqtype):
    """Create a confirmation dialog for closing things"""
    # skip this dialog if applicable
    if self.config['suppress_multiple_term_dialog']:
    return gtk.RESPONSE_ACCEPT
    dialog = gtk.Dialog(_('Close?'), window, gtk.DIALOG_MODAL)
    dialog.set_has_separator(False)
    dialog.set_resizable(False)
    dialog.add_button(gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT)
    c_all = dialog.add_button(gtk.STOCK_CLOSE, gtk.RESPONSE_ACCEPT)
    c_all.get_children()[0].get_children()[0].get_children()[1].set_label(
    _('Close _Terminals'))
    primary = gtk.Label(_('<big><b>Close multiple terminals?</b></big>'))
    primary.set_use_markup(True)
    primary.set_alignment(0, 0.5)
    secondary = gtk.Label(_('This %s has several terminals open. Closing \
    the %s will also close all terminals within it.') % (reqtype, reqtype))
    secondary.set_line_wrap(True)
    labels = gtk.VBox()
    labels.pack_start(primary, False, False, 6)
    labels.pack_start(secondary, False, False, 6)
    image = gtk.image_new_from_stock(gtk.STOCK_DIALOG_WARNING,
    gtk.ICON_SIZE_DIALOG)
    image.set_alignment(0.5, 0)
    box = gtk.HBox()
    box.pack_start(image, False, False, 6)
    box.pack_start(labels, False, False, 6)
    dialog.vbox.pack_start(box, False, False, 12)
    checkbox = gtk.CheckButton(_("Do not show this message next time"))
    dialog.vbox.pack_end(checkbox)
    dialog.show_all()
    result = dialog.run()
    # set configuration
    self.config.base.reload()
    self.config['suppress_multiple_term_dialog'] = checkbox.get_active()
    self.config.save()
    dialog.destroy()
    return(result)
    Paired with suppress_multiple_term_dialog in your ~/.config/terminator/config:
    [global_config]
    suppress_multiple_term_dialog = False
    Most I could find at this time in the morning.

  • When a process flow activity takes a long time to run.

    Hello,
    I have a process flow activity that sometimes takes a long time to run so that the process flow never ends. Is it possible that I can set the activity so that during a certain time that this has not been executed automatically flow process to continue?
    I'm Using Oracle Warehouse Builder 11g on Windows Server 2003 R1.
    Greetings and thanks.

    What I've done in the past is just use a small polling procedure (PL/SQL) and a conditional transition in the process flow, depending on what the proc returns (Continue or Fail) then the flow of control in the Process is changed.
    I think the key also is to not have too much paralellism going on too, that way it's easy to streamline the PF and remove slow moving processes to a more linear path (stopping bottle necks on your logical AND).
    Edited by: NSNO on Apr 29, 2010 2:31 PM

  • How to get the package name of a procedure used in a process flow activity

    Hi all. I'm on OWB 11.2.0.2.0.
    When I used a packaged procedure or function in a mapping operator, I can find out the package.program_unit name by getting the operator's FUNCTION_NAME property. For example,
    OMBRETRIEVE MAPPING '$mapName' OPERATOR '$operName' GET PROPERTIES (FUNCTION_NAME)
    But when the same is used in a process flow activity, I can't find a property name that will give me the same information. I can get the BOUND_NAME, it does not tell me the package name. It must be stored in the activity properties because when you pull up the Synchronize dialog for the activity, it knows the package name.
    Is there a way to get this via an OMBRETRIEVE?
    Thanks.

    ANA, this is exactly what I needed. Thank you so much. I saw REFs also in the OMBRETRIEVE MAPPING/OPERATOR syntax, but went cross-eyed trying to figure out if I could use the same there. The closest I found was GET BOUND_OBJECT.
    Thanks again!

  • BPM process interactive activity(JSP) - external webservice method interac

    I am using Oracle BPM studio 10.3.1.0.
    I have one external web service published on glassfish application server, I have introspected it in my BPM process using its WSDL.
    Now one of my BPM process interactive activity is there, which is represented by one JSP, I am giving some input to my JSP.
    I want this input to be passed to the web service method as a parameter, and it should fetch the output, so basically I want to invoke the web service method, could you please guide me how to do it?
    Thanks & Regards
    Ashish

    Hy Ashih
    I dont know if this is best way to do that, but I have a similar situation here, and I'm using AJAX do call the webservice method by BPM and retrieve data.
    Something like this:
    1 - Create the XMLHttpRequest() object in your jsp (if you need I have the entire code)
    2 - Create the a JavaScript method for to call the OBPM method in your component
    function mymethod(arg1, arg2, arg3)
    xmlhttp.onreadystatechange=function()
                                                      if( xmlhttp.readyState==4 )
                                                           document.getElementById("AnyDIV").innerHTML = xmlhttp.responseText;
         var resp = "<f:invokeUrl var='YourComponenteName' methodName='YourMethodName'/>";
    //Incude how many args your need here
         resp+="&arg1=" + arg1;
         resp+="&arg2=" + arg2;
         resp+="&arg3=" + arg3;
         xmlhttp.open("POST",resp,true);
         xmlhttp.send(null);
    3 - You'll need a div html tag called "AnyDIV" to receive the BPM answer
    4 - On you BPM component, in YourMethodName method (needs to be ServerSide = no), create two args, the first is httpRequest type (name request), and the second is httpResponse type (name response) (fuego lib)
    5 - Type the code below in your BPM method to send info back to the JSP
    //getting the args
    String arg1 = request.getParameter(string : "arg1");
    String arg2 = request.getParameter(string : "arg2");
    String arg3     = request.getParameter(string : "arg3");
    //Do the webservice call here, prepare the html answer and put it into an string variable
    strReturn = "bla bla bla";
    //Send the anwser back to the jsp
    response.bodyTextContent(arg1 : strReturn);
    Or you can do this using xml answer and deal with the tags with javascript
    that's it

  • Javaw process still active

    I am working on a project and I am using Swing classes (JBuilder 6). When I close a JFrame the javaw process remains active in the task manager (win 2000). I have added a windowlistaner on windowclosing (System.exit(0)) and also set the default closing operationto EXIT_ON_CLOSE but it still doesn't work.
    Please help

    Try using the following code in the constructor of the JFrame you are using.
    It basically adds a WindowListener, and on closing disposes the frame and exits process.
    Basically, what u have described in ur posting, but just in case this works, it would be great.
    //code starts
    addWindowListener(new java.awt.event.WindowAdapter()
    � public void windowClosing(java.awt.event.WindowEvent evt)
    � {
    ���dispose();
         �� System.exit(0);
    � }
    //code ends
    -Manish.

  • Why process chain activation is taking more time?

    Hi BW Gurus,
    I am going to activate the process chain, but it takes more time to activate the process chain . What may be the reasons ?
    Regards,
    Raju

    Hi,
    Process chain activation becomes slow due to the following reasons.
    1)Large no of entities in RSPCCHAIN Table i.e, there is  lot of process chains and very large process chains.
    2)There is a missing index for the RSPCCHAIN Table.
    Solution for this problem is  we have to create an index for the following fields of the RSPCCHAIN table.
    EVENT_GREEN
    EVENT_PGREEN
    EVENT_RED
    EVENT_PRED
    Still  if you want further clarification on this , Refer the following sap notes.
    906512---Activating process chain is very slow.
    Related Notes: 872275, 872273& 872271 .
    Regards,
    Chendrasekhar

  • Could not connect to the Active Directory. Active Directory Certificate Services will retry when processing requires Active Directory access

    Event properties – Event 91, Level Error, Event ID 91, Date and time 5/10/2012 11:29:48AM, Service CertificationAuthority
    General: 
    Could not connect to the Active Directory.
    Active Directory Certificate Services will retry when processing requires Active Directory access.
    We have a Windows 2008 Server Enterprise with AD . I would like to enable the service  "Certificate Services"  that
    allow me to enable radius to authenticate users wireless with the active directory.

    Hi, 
    Can you please check this forum or someone from Microsoft, as we have post here dating back from October that are not being answered.
    Everything for us is exactly the same as szucsati and Racom
    NMNM, 
    Please give us an answer on this as the link provided is absolutely useless.
    Thank you.

  • Hi I update my I Phone 3 GS for IOS 6.1. but he asking activate Iphone after we process for activation he shown error. please do the needfull

    hi I update my I Phone 3 GS for IOS 6.1. but he asking activate Iphone after we process for activation he shown error. please do the needfull

    Try to restart or - if necessary - to restore the iPhone: 
    See this document:  iPhone: Troubleshooting activation issues
    Disable your Firewall and Antivirus software - it may be blocking the access to the server. Wait a day, maybe the server is down.
    If your iPhone cannot be activated, because it has been modified, we cannot help, see:  http://support.apple.com/kb/HT3743

  • In the closure of Adobe, the process remains active and takes too much resource processor.   Expected results:The process AdobRd32.exe has to be correctly closed.

    In the closure of Adobe, the process remains active and takes too much resource processor.
    Expected results:The process AdobRd32.exe has to be correctly closed.

    I'm not sure on a Mac, but when I have this issue, I simply kill the thread (task-manager/processes/select the process, kill thread)
    I have had no ill effects doing this.
    It is my belief, it is the cloud, since they have a dcc connection, you can disconnect from the cloud, close everything, and the cloud is still connected to you. This is a feature of their update process I suppose.(speculation)  Additionally, I remember reading somewhere this issue was due to applying administrative permission at the instigation of the installation. (which I do allow *some* trusted companies to have this so updates can be applied during my downtime. ) 
    I have never had any overt issues after killing the thread and I have done that many times.
    Hope this helps

  • What's the ActivityMonitorD process? -- Activity Monitor with a 'D'

    So I've been monitoring my computer's processes with Activity Monitor, working through some possible bugs with a hard drive and I found that there is a process running that isn't listed here: http://triviaware.com/macprocess/all
    Anyone know if there is a process called: ActivityMonitorD
    That's right *'ActivityMonitor' with a D on the end*. That is a process in addition to the regular 'ActivityMonitor.app'. Anyone able to solve that riddle for me?

    What do I make of this information in my Activity Monitor:
    PID    Process Name                    User  
    1        launchd                              root    
    323       acticitymonitord                root  
    51          autofsd                           root
    50          blued                              root
    162        com.apple.dock.extra       root
    14          configured                       root                       
    107        coreaudiod                      root
    53          coreservicesd                 root
    95          CVMserver                     root
    13          diskarbitrationd               root
    54          diagnostic                      root
    44          dynamic_pager               root
    253        filecoordinationd              root
    15          fsevensd                        root
    52          hidd                               root
    40          KernalEventAgent           root
    10          kextd                             root       

  • Process remaining active

    Hello Freinds,
    We are facing an erratic problem of stuck process.
    The process remains active even after the underlying PL/SQL procedure is complete.
    After a few minutes the workflow is throwing up an error saying,
    ORA-01086: savepoint 'WF_SAVEPOINT' never established
    ORA-25263: no message in queue WFUSER.WF_DEFERRED_QUEUE with message ID A4C705DDB8675851E034080020FC7B98.
    Can some one point out as to why this might happen and what could be the possible solution.
    Thanks,
    Chandra

    Check the value of distributed_lock_timeout database parameter.
    If the parameter is not set, it will default to 60 seconds.
    Try increasing this value to at least 120 and retry.
    If the solution above does not work, one of the first places to look when assessing problems with the engine is the
    Oracle Workflow Monitor. Where this is unavailable, run the script wfstatus.sql
    $FND_TOP/sql/wfstatus.sql - Embedded in Oracle Applications
    $ORACLE_HOME/admin/sql/wfstatus.sql - Oracle Workflow Standalone

  • Parametized USER_DEFINED process flow activity

    Can someone help? I am attempting to use USER_DEFINED process flow activity to copy a file to another location under a new name.
    The names for the source and destination file will be generated at execution time by a mapping that will create the file.
    The challenge is how do I pass these file names a parameters; a, b to a file copy script I have written.
    You help will be appreciated.

    This should be possible as we have done a similar thing.
    How are the source and destination files generated in the mapping ?
    As our file information was stored in an Oracle table we created a Transformations/Function that queried out the required information (filenames) and formatted it into the required statement for execution.
    This was stored in a variable and could then be passed to the user defined process in the Process Flow.
    HTH
    Paul

  • How to use multiple WSDL operations in One BPEL process Recieve Activity ?

    Is there anyway to attach multiple WSDL operations with a Single BPEL process ? How ?

    Thanks Melvin for your quick respond.
    When I create a BPEL process, It asks me to give the XSD as an Input. When I import the XSD it asks me to select an operation not more than one. Let suppose I select addRequest and finish the wizard.
    Now what I can see, It create Recieve activity with an Input msg of Add operation. Well what I understand from your statement is that, I remove the recieve activity and put the Pick activity.
    Now my question is How to mention the other operations like update and delete ? And how to test them ?? The link provided by you is just tell me what Pick activity can do for me, But its not telling me how to use it ?? and how the give the operation to it. Where should I need to change in the BPEL ???

  • Error in process chain activation

    HI
    I am learning on 3.0b,(on my pc) while using process chains, at the time of activating the process chain it is giving the following error "JOB BI_PROCESS_PSAPROCESS COULD NOT BE SCHEDULED, TERMINATION WITH RETURN CODE 8". Why am getting this error, is there anything wrong with my system or software or there any mistake in activating process chain" (what ever may be the process type i use, i am getting this error), plz help me.
    thanks

    Hi Ganesh,
    The possible reason for that error is the User type of the background user. Please check out OSS note 511475 which talks about this problem and possible solution. I have used this earlier.
    You can see this for info on how to make the change:
    /message/685940#685940 [original link is broken]
    Hope this helps...

Maybe you are looking for

  • How to keep bookmarks in a divided PDF?

    When I divide a PDF with the superior bookmarks I loose the bookmarks. Is there a possibilty to keep them? Schöne Grüße vom Bodensee Brigitte

  • Oracle JDev 11.1.1.5 Human task flow form generation

    Hi all, JDev crashes when I try to "createForm" from a human task element. I get .... java.lang.NoClassDefFoundError: oracle/adf/library/rc/dependencies/NameResolver Is this class contained in the ojdbc jar? if so, why do I need it? Any thoughts? How

  • PA OM Intrgeation Issue

    Hi, We have an urgent issue in PRD.  There seems to be some problem with the connection between Org Mgmt and Personnel Admin.  When we change certain data points in OM (such as cost center or job) it creates a corresponding record in PA.  But as of t

  • Commenting feature in packages page, like in the AUR's ones.

    I noticed AUR packages page has a feature letting you to add comments. I find this particularly useful because it enables focused commenting by the users of such packages. You can easily keep track of bugs, possible breakage, any kind of problems wit

  • IPhone now showing up in iPhoto

    My iPhone shows up just fine in iTunes.  I'm able to sync, no issues.  However when I want to import photos, and more importantly videos, into iPhoto, my iPhone is no where to be found.  I also recall it showing up in Finder before and it no longer d