Trigger a process remotely

Hello,
I have two CE(SAP AS Java) servers, I'm working on one server, and I'm trying to start a process remotely on the second server. For doing this, i have some webservices that i found through the wsnavigator, which are the same on both servers, and which could trigger a process locally.
I want to know if it is possible to trigger processes remotely, by using those webservices. And if so, how can i make this connection between server 1 and server 2 (Force server 1 to "look" for processes in server 2 and not in its own process repository). Thank you.
Best Regards,
Jean

forget about it

Similar Messages

  • Trigger a process chain(PC) after successfull completion of two other PCs

    Hi All,
    My requirement is to trigger a Process Chain only after successfull completion of two other process chain which are already scheduled to run at different times.
    Please tell me how to achieve this into SAP-BW 3.5
    Thanks
    Jharna

    Hi
    It is very simple, I'm doing the same.
    Insert Remote Process Chain at the end of the actual process chain and call the other process chain, here you need to give source , destination and process chain name in Remote process chain.
    try it, it will work.
    Thanks
    Reddy

  • How to Trigger the process in XI

    Hi,
    How to start trigger the process in XI? In my scenario first step need to Starts in XI .
    So can you please guide me how i can proceed.
    Thank you very much.
    Sateesh

    Thanks sandeep,
    Your valuble inputs, CC triggers every day that's good concept
    actually my scenaio having three systems two sender systems and one target system
                                                 SAP(Source System1)
                                                 KDatabase(Source system2)-Database system
                                                 DB(target system)-- Database system
    First step starts trigger in XI------
    ---then XI fecthes the date of the last successful SAP data update in the DB(target System)- (That means XI Fecthes data from DB(target system)
    ---and XI call RFC to SAP(Source System1) and last sucessful date updated in SAP and get result(response) from SAP
    ---Now this response pass to same DB (target sytem).
    This RFC response pass to two tables one "H_Data" and "P_Data" If data is successuful stored in the two tables automatically update the "Sap_log" table with the date and status fields. If not successful stored in the two tabels it throws  the error message.
    after update the SAP data second process witll start again
    XI fecthes the date of the last successful Kdatabase data update in the DB(target System)- (That means again XI fecthes data from DB(target system).
    ---after that XI sends data to Kdatabase based upon on the condition, Condition:XI selects all datasets of the Kdatabase view, that contain at least one modification date younger than the last successful Kdatabase data update.
    --after "Kdatabase" sends the response to XI and XI put this data into the DB(target system)
    --The "Kdatabase" response pass to one tables one "K_Data"  If data is successuful stored in that table automatically update the "K_log" table with the date and status fields. If data not successful stored in that tabel it throws  the error message.
    This is process .
    Can you provide your valuble suggestion, It will be very helpful me.
    Thank you very much.
    Sateesh

  • How to Trigger a Process Chain through ABAP Program

    Hi
    I have a Requirement to trigger a process Chain on 1st, 2nd and 3rd day of the month for 2 times in a Day.
    Can any one give me any idea, how i can do it by writing a ABAP program and triggering the Process chain.
    If anyone can share the Logic for ABAP program means, that will be helpful for me, as i dont have much expertise on writing ABAP program.
    Regards,
    Muruganand.K

    Hi,
    you can achieve this in a following way.
    DATA : v_date type sy-datum,
    v_day(2) type c.
    v_date = sy-datum.
    v_day = v_date6(2).+
    if v_day = '01' or
       v_day = '02" or
       v_day = '03".
    CALL FUNCTION RSPC_API_CHAIN_START.
    pass the name of the chain to this function module.
    hope this wil help.

  • How-to trigger a process chain using ABAP?

    Does anybody know how to trigger a process chain using ABAP code?
    Any help would be appreciated!
    Thanks
    Ioan

    Hi Ioan,
    try this in your ABAP:
        CALL FUNCTION 'BP_EVENT_RAISE'
          EXPORTING
            eventid         = 'Your Event'
            eventparm       = 'START'
            target_instance = ' '
          EXCEPTIONS
            OTHERS          = 01.
    and schedule your process chain, waiting for 'Your Event'.
    regards
    Siggi

  • How to trigger a process task on IT Resource process form

    Hi,
    I want to know how to trigger a process task on IT resource process form using OIM API.For Example:- If a task ilike an e-mail is to be sent on the departure date of a user.So,how can it be done using API?
    Thanks.

    This would typically be done through a scheduled task. Write your code to query for the departure date. If someone meets your criteria for an action to occur, you can either use the addProcessTaskInstance which has an adapter attached to it to send the email, or in your code, send the email.
    The details that need to be considered though is where the departure date is stored. Is it on a process form, or is it on the user's OIM profile. Do you want to disable the user or revoke the object instance at this departure date? You could use the notification tab of these existing tasks if so.
    -Kevin

  • R3 job completion trigger a process chain to run on BW

    Hello,
    I was wondering how I can trigger a process chain to run on BW 3.5 after a SM37 job completes on R3?
    I have been searching the forums and the web, but I haven't found what I am looking for.
    Thanks,
    Nick

    Hello Pramod,
    I would need a more detailed suggestion to implement, but thanks for starting the discussion.
    I thought it would be as easy as this
    1. Create an event in BW
    2. Have a process chain that starts when that event is raised.
    Having implemented and successfully tested steps 1 and 2, the rest should be simple (I was able to raise the event on BW locally and the chain did run as expected)
    3. On R3, create a small ABAP program that calls the BP_EVENT_RAISED Function Module on R3.
    4. Pass that Function Module the following parameters
            A. My BW system name, and
            B. The event name that I created on my BW system
    5. Add that ABAP program to the end of the job on R3.
    It doesn't work though! The event i created on BW, doesn't seem to exist from R3's perspective.  I was hoping it was as easy as that.  Hopefully I am missing something simple, but so far R3 does not want to cause the event on BW to be raised.
    Thanks,
    Nick
    Edited by: Nick Bertz on Oct 13, 2008 12:19 PM
    Edited by: Nick Bertz on Oct 13, 2008 12:23 PM

  • Trigger a process chain when user clicks on save button in web interface

    Hi All,
    This is a issue I'm facing with the BW BPS web interface.
    BPS web interface generates a BSP application so thought posting this question in BSP forum might get some responses.
    The issue is I have to trigger a process chain when the user clicks on the save button on the web interface.
    I have no clue how BSP works. So if anybody has any ideas or suggestions I would greatly appreciate it.
    Thanks,
    Harini

    Hi Dhanya,
    This is the code i have in the ABAP program in the process chain. I just included the API_SEMBPS_POST part, but still it doesn't work. Please give me your email address so that i can send some screenshots.
    REPORT  ZHTEST.
    DATA: l_subrc TYPE sy-subrc.
    DATA: ls_return TYPE bapiret2.
    CALL FUNCTION 'API_SEMBPS_POST'
    IMPORTING
       E_SUBRC         = l_subrc
       ES_RETURN       = ls_return.
    CALL FUNCTION 'RSAPO_CLOSE_TRANS_REQUEST'
      EXPORTING
        I_INFOCUBE               = 'ZMAP_TAB'
    EXCEPTIONS
      ILLEGAL_INPUT            = 1
      REQUEST_NOT_CLOSED       = 2
      INHERITED_ERROR          = 3
      OTHERS                   = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • BSP to trigger a Process Chain in BW

    Hi ,
      I have a requirement to develop a BSP Application in the BW System where the BSP Application have to get some input parameter and in the back ground trigger a process chain.
    Can any one tell me how to trigger the process chain in BW System from BSP. I have not worked on the BSP / BW combination ..
    It would be helpfull if there are some documents which would help me ..

    from your bsp application simply call FM RSPC_API_CHAIN_START to trigger process chain.
    Regards
    Raja
    reward points/close your previous threads
    Re: BSP Pages-  Icon not appearing
    BSP for pop up

  • How to trigger a process chain using external scheduler ?

    Hi all,
             we have a requirement wherein we need to trigger the process chains from an external scheduler used by client rather than directly scheduling it through BW scheduler.So any pointers on this will be heplful.

    Hi we have had a same scenario like this. You can schedule it using schedulers like autosys. Speak to your basis team and see if you have the autosys software installed or some thing similar to that. You have to write a program which calls the function RSPC_CHAIN_START. When you excute this program, it willl ask for a variant to execute. this variant will be the start variant of the process chain you want to trigger.
    the flow will be like the basis team will schedule the autosys or the scheduler to run the program and this program will in turn trigger the process chain.
    regards,
    Satish.

  • How to trigger a process chain through

    Hi All,
    Can any one send me the steps to trigger a process chain through a job in sm37.
    Thanx
    Kishore

    Just a trigger ?
    Best way I can suggest is to call the function module 'RSPC_API_CHAIN_START'...
    So, create an ABAP Program, call the function in the program. You can add parameters and a selection screen to make the program generic and add variants to it.
    Once you are done with this, schedule a job with this program and whichever variant you're lookin for and you should be done.
    - Aditya
    Assign points if helpful

  • How to trigger a process chain after R 3 job

    Hi All,
    We have a requirement to trigger a process chain immediately after the completion of R 3 job.
    could you please give me your input in this regard.
    rama

    Try to Search first.  This has been discussed a lot in this forum.
    Try these:
    Triggering a Process Chain From R/3 pgm
    There is even an OSS Note on how to do this:
    Trigger process chain using event

  • Trigger BPM Process

    Hello
    Is there any documentation available as to what are the different ways a BPM Process can be triggered ( like web service, WD4A, VC, etc .. ?
    I am triggering teh Process through configuration management and that looks very techie when giving a demo to a client.
    Appreciate your help.
    Thanks
    Bhavin

    Hi Bhavin,
    You may define a service interface for the start event of your process using whic you can trigger the process through a WS. For detailed steps on how to do it, refer to my blog https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/15395. [original link is broken] [original link is broken] [original link is broken]
    Also refer to the BPM Troubleshooting Guide for the standard documentation links for most common issues.
    Hope this helps!!
    Cheers,
    Arafat

  • How to trigger BPM Process from SRM Portal

    Hello Experts,
    I'am new to BPM and NWDS 7.3 but experienced with Abap and NWDS 7.0 Development...
    Before posting, i have been through the forum and couldn't find exact answer to my case..
    Basicly what i need to do is to trigger BPM Processes on the BPM Server from SRM Portal Server, I'm aware that i can communicate between these servers with WSDL basicly but how am i going to call the BPM Process' Web Service from Standart SRM  Processes?
    These processes will be standart ones mostly and also i am new to SRM.
    Kindest Regards,

    SAP SRM 7.0 user interface is developed in WebDynpro and runs on NetWeaver Portal (Portal was optional component in earlier versions of SRM but it is mandatory component now). So in order to call BPM Webservice (i.e., to trigger a BPM Process) from NetWeaver Portal / SRM 7.0 you can do the following
    - Develop a custom application (using EJBs,etc) to call the BPM web service by creating a web service proxy client using NWDS and then deploying it on Portal Server.
    - Directly create a model in WebDynpro project by using the WSDL of BPM trigger webservice (using NWDS). You can then call the model in WD User Interface, which in turn will invoke the BPM web service and start the process.
    Hope this helps.

  • How to trigger the Process Chains in BI from ECC

    HI Friends,
    Can let me know  How to trigger the Process Chains in BI from ECC. Please let me know.........

    Hi,
    1) Define a Custom ABAP Program (eg : Z_EVENT_RAISE)..........call the FM : BP_EVENT_RAISE or RSSM_EVENT_RAISE..........and trigger an event towards BW .........specify BW as RFC destination...........
    2) Create a R/3 Job in SM36>> use the Program Z_EVENT_RAISE ......
    3) In BW schedule the PC..........and in the Start variant use this Event..........
    http://sapbiwtutorials.blogspot.com/2009/03/how-to-trigger-process-chains-in-bw.html
    It can be help full
    Regards,
    Edited by: subba2010 on Aug 19, 2010 6:51 AM

Maybe you are looking for

  • Common class data for two session?

    JDEV 10.1.3.3, ADF I have the bean userState with the scope as session, in this bean-class i have the variable: public static List selectedItemsMonth; on page i put selectManyListbox component with fields: value="#{userState.selectedItemsMonth}" valu

  • Mapping IDoc to file

    Hi,      I am using INVOIC02 idoc at the sender side and file at the receiver side.I have a doubt in mapping. Mapping rule is as follows. map E1EDK02-BELNR if   QUALF=009  . E1EDK02 is the segment and BELNR is the field. target field is  billing doc

  • Document format

    Is there any SAP format to submit the paper in TechEd ? If yes, then where can I get that Peeru

  • LSO Rapid Publishing Content

    Hi All, Iam trying to Publish Course Content using Training Administrator role. i have  browsed for the source file and when i click on the folder it is throwing the below error. SOAP:1.007 SRT: Unsupported xstream found: ("HTTP Code 404 : Not Found"

  • Help! How to get DS 5.2 SP4 to startup automatically @ boot?

    Hi, I've been working on the installation and configuration for DS 5.2 P4 (on Solaris 9), and I ran across the same problem that I did awhile ago. After doing the DS installation using "setup", the "directoryserver" command/script (/usr/sbin/director