What are different possible ways to start a process?

Wondering what are different possible ways in which I can trigger a process in Aqualogic BPM.
I have worked on WLI & there with the use of channels & event generators I could able to trigger my process for almost any event, be it file system update, Http Request or Database update.
Can I trigger a process in Aqualogic BPM on arrival of a new file in file system (directory)?
Any pointer towards documentation would also help.

Hi,
There are a lot of ways to trigger the process. You can execute any code based on a timming event, or external events such as JMS queues. Polling directories/webservers etc. is really easy.
I'd suggest you take a look at the Studio documentation and read about Global Automatic activities.
Hope this helps!
Fernando

Similar Messages

  • What are the possible ways of dialing modem through LabVIEW?

    Vikas H. Kumthekar
    ASE
    Tata Consultancy Services
    Pune-1

    I worked on a lab in college to talk with the modem in the computer that I was using.  you will send commands just like you would in hyperterminal.  You just have to be careful with your formatting of a string.
    BJD1613
    Lead Test Tools Development Engineer
    Philips Respironics
    Certified LV Architect / Instructor

  • Possible ways to start SAP Web AS services

    I am using J2EE SAP Web AS 7.0 on UNIX platform and herein i use startsap script to start SAP as well as database services. My concern here is that what all are the possible ways to start the SAP services apart from the above mentioned script? One i could figure out is to run all the commands in the script one by one, though does not make sense if the script is already available
    Reason for asking above question is that i want to set an environment variable whenever SAP Engine starts up. And, if i embed this line in startsap script it would solve my purpose but if there is any other way also to start SAP services, then i have to cover those use cases also. So, please provide your suggestions for my requirement.
    Thanks

    Thanks for your input and it looks like adding an environment variable in startsap script is not a good option.
    My requirement is that my SDA file has dependecy on some third party dll's and at the time of starting SAP Web AS, this dll path should be available at the beginning of LIBPATH variable. So, please let me know if some fix is available for my requirement.
    Also, i have discoverd that SAP profile (located at /usr/sap/<SID>/profile/START_JC<SID>_<machine name>) has the required parameters( LIBPATH, etc) and if i add my dll path in these environment variables, i am able to load my dll at the SAP starting time. Here my questions are:
    1. Is it fine to make changes in this profile file?
    2. Would my changes be overwritten if the kernel upgrade happens?
    3. If i start SAP using MMC (suggested by you), still this profile file be read for starting SAP Web AS and the dll's would be loaded?
    Apart from this i tried out using "There is a java version as well, which can be started from a browser:
    http://<hostname>:5<instance number>13" which internally uses MC. Here if i try starting SAP WebAS, it prompts for user name and password. I tried out <SID>adm user, J2EE Administrator user and machine root user but all these options were ruled out by the Authentication module. Can you please suggest which user name should i try to stop/start SAP using MMC?
    Thanks

  • What are the possible reasons why this R3 info not getting to BW?

    Hi,
    I have data coming into BW from R3 a datasource DataSorce1; When it gets to BW, SalesOrg numbers 22941 and 22942 comes to BW without problem but 22943 which is a new config. In the R3 master data does not get to BW.
    1. What are the possible ways to troubleshoot this?
    2. How can I confirm that the data shows in R3: i.e. showing my SalesOrg 22941 and 22942 in R3, and also confirm that 22943 truly exists in R3.
    3. How do I confirm that 22943 did not get to BW (if it exists in R3)?
    4. What if this is some custom program bringing 22941 and 222942 to BW? How do I see the program name and track down why the third one is not getting to BW?
    Please provide the necessary to tcode in all the discussions
    Thanks

    1. 1st thing... If there is no Sales againest Sales Organization. you won't see in Cubes if it is part of Transactional Data. <u>Load New Sales Organization Texts</u>.
    1.  If it is new Sales Organization as Navigation Attribute only(Assume for Sales Order), try activate your master data for Sales Order. check in your Sales Organizatio IO Master Data and Sales Order Master Data
    2. If it is Part of Transactional Data, Check in your RSA3, PSA.
    How to check in RSA3?: If you are usng 2LIS_11_VAHDR. goto se16, provide VBAK table, press enter. in the Select for Sales Organization. Put 22943. Provide Order type Standard Order. and Execute. Take any Order Number from output list.
    Goto RSA3, provide your choosen sales order in the RSA3 selection in Sales Order field Execute it.
    If you are able to find this Sales Order in Both RSA3 and PSA. You are getting Data for 22943 Sales Organization.
    case 1: If you are able to see Choosen Sales Order in RSA3, not in PSA. check User Exit Code.
    case 2 : If you are able to see Choosen Sales in PSA and Not in Targets. check all transformation.
    Are you working with Standard DS(2LIS_11_) or Custom Datasource(Z)?
    Nagesh Ganisetti.
    Assign points if it helps.

  • What are different ways to pass variables in a c# program?

    What are different ways to pass variables in a c# program?
    I was wondering if :
    var numbers = textBox1.Text.Split('
    .Select(int.Parse).ToArray();
    var min = numbers.Min();
    var max = numbers.Max();
    textBox2.Text = string.Format("min:
    {0} max: {1}", min, max);
    and
    private
    int[] numbers =
    new
    int[10];
     were considered passing variables and I am also interested in learning new ways.

    Hi Billst3r,
    Your examples would be considered creating variables or "instantiating" them, which basically means creating them in memory.  To pass variables, here is a brief example.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    // Declaring variables
    int num1 = 1;
    int num2 = 5;
    // Pass created variables to private method
    int answer1 = ComputeSum(num1, num2);
    // Print results
    Console.WriteLine(answer1);
    Console.ReadLine();
    private static int ComputeSum(int param1, int param2)
    // Return sum of 2 provided parameters
    return (param1 + param2);
    Best of luck.

  • What are different ways to load a class

    what are different ways to load a class??

    manoj.java wrote:
    I am preparing for something and exploring the java.
    want to know in regard of the same.
    Please help me out.And this means essentially nothing.
    Essentially there is only one way. Through a ClassLoader, and it's loadClass method. Now, there are multiple ways of invoking this, however, either directly or indirectly.
    Edit: There is, of course, other things, such as defineClass in ClassLoader, that lets you manually read a class defintion from somewhere, anywhere, and define, which, logically, also "loads" it.
    Now, once again, What are you trying to do? "something" and "exploring the java" are meaningless in this form. If you tell us what, exactly you are trying to do, we could actually help you do it!

  • What are all the ways that can add fields in the output list of FBL3N transaction?

    Hello dear experts,
    There is this transaction FBL3N, which you might be aware of. Now, the requirement is to add 4 new fields in the output list of the standard program.
    The fields are:
    NAME1   KNA1
    LOKKT    BSEG
    USNAM   BKPF
    TXT50      SKA1 -> SKAT
    Please tell me how to do this apart from implementing the note 310886. What are the other ways?

    I agree, start reading 984305 - Line item: Definition of special fields (T021S)
    Then for non BSEG/BKPF fields, better use BAdI FI_ITEMS_CH_DATA (1323512) and not the good old BTE 1650, the BAdI will be called once with the full internal table with special fields already filled, when the BTE will be executed for each and every record without special fields, so harder to optimize, and may require access to BKPF/BSEG for missing fields.
    Regards,
    Raymond
    PS: Did you use search tool, there are already many discussions/threads on this subject.

  • What are the best ways to share photos from iPhoto?

    What are the best ways to share photos from iPhoto?

    If you use Adobe Photoshop, or even Adobe Photoshop Elements, stay as far away from iPhoto as possible.
    iPhoto does not play nice with Adobe software or with software from any other third party developer.
    iPhoto will hide your image files in a library paradigm where you have no access to them other than through iPhoto.

  • I am programmer and I am using dr java on my mac-book pro with retina display but dr java doesn't support retina display, what is the possible way to solve this ?

    I am programmer and I am using dr java on my mac-book pro with retina display but dr java doesn't support retina display, what is the possible way to solve this ?

    I have made some progress.... I can print wirelessly from my printer now, but I can't set the printer itself to be wireless.  I had to move my printer downstairs to where my router is...which is not that convient.   I printed up the page you asked about....and as expected, it says it is off line and there is no IP address.    So now I need to figure out how to make my printer itself wireless.  I did download the HP driver I needed...but I can't access it to do anything else.  It seems l like I am missing a step... or I need to hook up my computer itself to the printer to help get the printer to be wirelss, but I can't hook it up because there is no port for me to do that (no port that looks like a phone jack).  I am guessing I would need a different type of cord, but I am not sure what kind of cord that would be! Ugh!

  • My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    My iSight is not working on my Macbook Pro. What are the possible problems and solutions?

    Hello Douglas,
    Thank you for the details of the issue you are experiencing with the built-in iSight camera on your MacBook Pro.  I recommend the following steps for this issue:
    Important: Follow these instructions in order. Test the camera between steps to see if the issue is resolved.
    Built-in iSight cameras
    These steps are for iSight cameras that are built into a computer, such as the iMac G5 (iSight) or later, the MacBook, or MacBook Pro.
    See if the issue is application-specific.
    Try another application (iSight works with applications like iChat, PhotoBooth, and iMovie HD 6) to see if the iSight camera exhibits the same behavior in all applications. If it only happens in one application, try reinstalling that application.
    See if the issue is user-specific.
    Test your iSight camera in another user account. If the issue only occurs in one user, the issue would be isolated to user settings.
    Find out if the computer recognizes the iSight
    Check System Profiler (in the Utilities folder, inside the Applications folder). Under the USB header, check to see if the iSight camera is detected.
    Reset SMC or PMU
    Reset your computer's SMC or PMU, and then check System Profiler again. (SMC reset instructions for iMac G5 (iSight), Intel-based iMacs; PMU reset instructions for MacBook and MacBook Pro.)
    If your built-in iSight camera is still not behaving correctly after trying all these steps, you may need to contact Apple or an Apple-Authorized Service Provider for service.
    You can find the full article here:
    How to Troubleshoot iSight
    http://support.apple.com/kb/ht2090
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • What are the possible values for the JOB status?

    What are the possible values for the JOB status in the table TBTCP and significance for each?

    Hi,
    Have a look at include LBTCHDEF.
    The standard include from SAP.
    -> Definitions and Constants for Function group BTCH
    Kind Regards
    Raymond

  • What are the various ways to take backup on solaris 10

    What are the various ways to take backup on solaris 10.
    Kindly tell in detail
    Thanks in advance

    ufsdump - used for ufs backup. you can perform full (0), incremental and differential backups.
    example1. ufsdump 0cfu /dev/rmt/0 /dev/rdsk/c0t3d0s0 - back-up root filesystem to tape device
    example2. ufsdump 5fuv /dev/rmt/1 /dev/rdsk/c0t3d0s6 - back-up filesystem on partition 6 to tape device
    tar - used to bundle set of files and directories. No hidden files will be backed-up
    example - tar cvf /dev/rmt/0 / /usr /var /home - back-up / (root), /usr, /var and /home filesystems to tape device.
    dd - convert and copy file
    example 1. dd if=/dev/rmt/0h of=/dev/rmt/1h
    example 2. tar cvf - . | compress | dd obs=1024k of=/dev/rmt/0 conv=sync
    cpio - good for restoring image from one system to the other.
    see man pages for in-depth details

  • What are the 3 ways to call a form from another form?

    What are the 3 ways to call a form from another form?
    What is the command to call a report from within a form?
    How do you attach a menu to a form?

    Hi,
    1. Should be new_form, call_form and open_form
    2. The command is run_product
    3. There is a property 'Menu Module' in form, just change it to your menu file name
    Regards,
    George
    Can anyone help me with the following questions...
    What are the 3 ways to call a form from another form?
    What is the command to call a report from within a form?
    How do you attach a menu to a form?
    Thanks for your time..
    Madhu

  • What are the good ways to send a big file( 20MB-100MB) file to my friend?

    what are the good ways to send a big file( 20MB-100MB) file to my friend?
    Thanks in advance

    if this is with the internet, iChat is probly your best bet,
    but if you just want a transfer,
    plug a firewire into both of your computers, shutdown one of them, hold "T" and press the power button, the restarted computer should pop up as an external drive on the second computer.

  • The web developer toolbar wont load on my computer, what are the possible solutions?

    when i click to download the toolbar now, firefox refreshes as it should be nothing happens.
    maybe i dont see the toolbar? i cant find it.
    what are the possible reasons its not downloading and what can i do?

    Hey lydiabat10,
    Thanks for using Apple Support Communities.
    Looks like the iPhone won't allow explicit content on it. One thing you may want to look at is the Restrictions.
    iOS: Understanding Restrictions (parental controls)
    http://support.apple.com/kb/HT4213
    Have a nice day,
    Mario

Maybe you are looking for

  • How do I import multiple playlists at once?

    I know this issue has been discused before, but without a solution tailored to what i require, so I will reistate the problem from my point of view: Background: Had a Windows I-Tunes library, supremely organized. The mother of an Electric surge broke

  • Obm-xdg won't show anything in the Openbox menu [SOLVED]

    I put the code: <menu execute="obm-xdg" id="obm-xdg" label="xdg"/> in ~/.config/openbox/menu.xml just like it says to do universally. It does not show any menu. Every other menu item in the file works. I can edit them and they change. obmenu can see

  • Why won't Safari open links in a frame in a new window?

    I am having trouble with Safari not opening links on a certain page. I am using OS 10.8.2 and Safari 6.0.2.  The links on this site work in Firefox and Chrome, but not Safari. I have tried the same page on older computers with older versions of Safar

  • Waiting because of e

    Hello all,   I have a problem with a bpm execution. When the Receiver Determination call a simple BPM, this process stop and in transaction SWEQBROWSER show a object ZXI_PROXY .... with status  Waiting because of e.   Thanks all

  • IPhone Alarm Vibration

    Hi, Is there someone who can tell me how I can turn off the vibration when my alarm goes off? However, I still want the vibration in silent mode for all notifications like:  when a call is comming in, when there's new mail, when there's a new message