Currently running process chains

Hi Gurus,
How can we find out if a process chain is still running.
Regards

goto Tcode RSPCM.
Create new variant and give the process chain name.
You can monitor the process chain once you do this.
or
double click on the process chain
click on log icon.
you can find the status icon in the left pane.

Similar Messages

  • How to stop a process chain after the current running process

    Hi experts,
    I try to stop a running process chain, but only at the end of the current process load.
    I try to unscheduled process chain : the job of the current process is killed and the process stop
    I try to execute the programm rspc_process_finsh : same result.
    Actually, I aim at waiting of the current process completion and stop the chain.
    Thanks and regards,
    Bobby

    Hi all,
    Thanks for answer.
    If I resume the situation :
    - Click on Unschedule process chain stop the current process. We have to change the status of the process in Yellow to Red.
    - Go to sm37 to kill the job change the statut in red.
    So there is no way to stop the running of a process chain only after the good or bad end of the last runnning process ?
    Example :
    My chain is running. The process which is running is a DTP loading process. There are 50 packages to load. I decide to click on Unschedule process chain when the package 18 is running.
    If I do that, the loading of package 19 will not start right ?
    So is there a way to wait that the 50 packages are loaded before that the system stop the chain ?
    Thanks in advance,
    Bobby.

  • Problem with AND process in daily running process chain

    Dear Friends,
    I am currently I am facing problem with AND process. In my daily running process chain, daily the process chain is failing at AND process. Currently I am workaround and manually repairing the AND process and loading the data with below (link) steps.
    /people/siegfried.szameitat/blog/2006/02/26/restarting-processchains
    I need permanent solution for this reoccurring problem. Kindly share your thoughts and ideas to resolve this problem.

    Hi,
    The below are the job log. After this the batch job is failing.
    Job log overview for job:  BI_PROCESS_AND
    Job started
    Step 001 started (program RSPROCESS, variant &0000000190315, user ID MAESTRO)
    This AND process is not waiting for event RSPROCESS, parameter 475P4YTXTIIOA6IQ9GAZVEP24
    Job cancelled after system exception ERROR_MESSAGE

  • How to get Application name of a current running process in LiveCycle??

    Hi,
    I want to get the Application name of current running process in LiveCycle as a output value.
    I have 3 applictions, the 3 applications are calling same SubProcess, so I want get the name of the application from which the sub process has been called.
    I want to retrieve the Application name and asssign this value to a output variable.
    I have searched for the solution I found a method getApplicationName() but inorder to get the current running process's Application Name this might not be useful..
    So suggest the way to resolve this..
    Thanks in Advance.....
    Regards,
    Kalyan Urimi

    Use an input/output string variable in the subprocess and set its value in each calling process as respective Application name.
    May be if this could help.
    Thanks,
    Wasil

  • How to stop the running process chain

    How to stop the running process chains or infopackges...just qm status change is enought?

    BI - SM 37 - Kill the Job
    ECC - SM 50 - Kill the job

  • Is it possible to run process chain from the certain process/point?

    Hello
    Is it possible to run process chain from the certain process?
    How?
    Thanks

    Hello,
    yes it possible! use the following steps.
    1. Goto the process which you want the chain to start from.Goto display messages>> Chain tab. In the generated instance note the variant and instance.
    2. Goto table RSPROCESSLOG and give variant and instance and get logid details.
    3. t codese37>> run FM RSPROCESSFINISH.
    4. give the deatils u have got in RSPROCESSLOG table here and say execute.
    This will solve ur problem.
    Hope this helps!
    Reg
    Deepmala

  • Run process chain on last three days of the month

    Hello
    I need to run process chain on last three days of the month. For example , It should run on 28, 29 and 30th dates of June.
    There is no option to put a code in the start process of the process chain.
    I can run it every day and put a code in the infopackage/DTP so that empty load (0 records) will be done on other days.
    This doesnt sound as a good option.
    Do u know any other options?

    Hi
    See the code and details how to do it, and change the code as per your requirement.
    http://wiki.sdn.sap.com/wiki/display/profile/Surendra+Reddy
    Triggering  the Process Chains at Particular Date using Events
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/s-u/triggering%20%20the%20process%20chains%20at%20particular%20date%20using%20events.pdf
    BI-ABAP (Trigger Process Chains on evry month 3rd and 4th day).
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=81428842 
    Thanks
    Reddy

  • How to run process chain in day of 20 and 2 every month?

    Dear all,
    I have to run process chain in day of 20 and 2 every month,but the settting of PC just allow Scheduled start every month once
    time.
    Please tell me the way of setting process chain.
    Thanks.

    Hi,
    (1) Create an event in the BW system
    Define a system event (for example SAP_BW_TRIGGER) with Transaction SM62. Lets says it is "EVENTX". Use this even in the Process chain and execute the process chain as repeative job.
    (2) Use the below lines of code in the program for calling a Fucntion which trigeres the event created above . Here in this program you will call the the Below FM if and only id the sy-datum is 20 th or 2nd of the month ( as mentioned by our friend suggested).
    call function 'BP_EVENT_RAISE'
    exporting
    eventid = EVENTX
    exceptions
    bad_eventid = 1
    eventid_does_not_exist = 2
    eventid_missing = 3
    raise_failed = 4
    others = 5.
    endfunction.
    Regards,
    Anil Kumar Sharma .P

  • Error running process chain

    Hi,
    wehn we run  process chain , the result from optimizer log showing error indicator , we check the abap run time using ST22 and discovered the message
    DBIF_DSQL2_SQL_ERROR
    what the message try to tell us , how to troubleshoot it .?
    thanks

    Hi AF,
    try to look on SAP notes  978417 - Latch Monitor and Table Access Monitor: DBIF_DSQL2_SQL_ERROR. I guess this will solve your problem. It states also here on how you fix the issue.
    Let me know if this make sense. Have a nice day!
    Regards,
    SASJr

  • Generate file in same directory as current running process

    Hi all:
    I basically have a batch file in a particular directory that runs a Java program. Within the program, I am doing this:
    //generate contact server file
    String contactServer = "Testing...";
    BufferedWriter bw = new BufferedWriter(new FileWriter("contactServer.txt"));
    bw.write(contactServer, 0, contactServer.length());
    bw.close();Now, what I would expect is that it would be generated in the same directory as the process that is running. However, when I do a search, it ends up in C:\Documents and Settings\Leonard\My Recent Documents.
    How can I specify to generate it in the same directory as the current running process?

    Now, what I would expect is that it would begenerated in the same directory as the process that is
    running. However, when I do a search, it ends up inC:\Documents and Settings\Leonard\My Recent
    Documents.let say your batch file is in
    C:\Documents and Settings\Leonard\
    and you run from
    C:\Documents and Settings\Leonard\
    and your application is in
    C:\Documents and Settings\Leonard\My Recent Documents.
    so..when you run the bat file, is output file created
    in
    C:\Documents and Settings\Leonard\
    or
    C:\Documents and Settings\Leonard\My Recent Documents.
    it should be created in C:\Documents and
    Settings\Leonard\
    unless you create a shortcut to the batch file (which
    is located in "C:\Documents and Settings\Leonard\My
    Recent Documents." and move the shortcaut batch file
    to "C:\Documents and Settings\Leonard\"...than the
    output file will be created in C:\Documents and
    Settings\Leonard\My Recent Documents.
    make sure the batch file is not a shortcut to the
    original batch file. the file will be created
    wherever the batch (original) file is reside in"
    Jesus man, thank you so much. Just like you suggested, when I actually used the batch file itself instead of the shortcut, everything worked out fine.
    So, any suggestions on how to get it to generate in the same directory as the target of the shortcut, not the shortcut itself?

  • Long running process chains - No Dump / error message.

    Hello,
    We have defined some steps in process chain that contains default macros. We mainly included that to ensure calculations happens even when users dont open or access the DP Planning book.
    Issue is, these steps are running endless. normally it takes some 400 n odd seconds. But its running for the last 60000 secs.
    No. of Planning objects or CVC is 2027 only. I had to cancel them and tried to re run this step or the whole chain no luck....
    I have checked active jobs in SM37, there is none. So ideally there is no load on the system. Also no change to Macro or CVC's has been done. there was only one Transport that was moved and it was on the product master.
    Also I have done the time series, Live cache, PA  Consistency checks. only in Live Cache there was some Superflous time series and it was corrected.
    I am not getting a clue of why its happening nor where to start the analsysis.
    Any help or suggestion is greatly appreciated.
    Currently I have made the subsequent events as independent,&  the chain is running execpting this step.
    Many Thanks
    Aswath Ram.

    Thanks for the reply,
    These are custom macros. It adds two KF and copies to another.
    The no. of periods is 24 time periods and roughly no. of CVC is 2100.
    Another thing, this process chain has been running for last 5 to 6 months with no issues. Since sunday, its messing up....
    I am doubting if its taking time read data from table or live cache. or is it because of some indexing. Not sure how to check that.
    have asked Basis to check the system performance, if it might cause this issue.
    Many Thanks
    Aswath

  • Invalid DataStore object name error when running process chain after EHP1

    Hello,
    We recently upgraded our BW Dev platform to NW7.01 EHP1 SP6. I noticed that the layout for "Delete PSA Request" process in the Process Chain has changed after the upgrade. We can no longer specify the actual PSA table to delete eg, /BIC/B0001645. Instead we need to specify the Datasource name and the Source System.
    Now after the upgrade when I run one of my process chains, it fails at "Delete PSA Request" step with error message "Invalid DataStore object name /BIC/B0001645: Reason: No  valid entry in table RSTS". This datasource is based on the flat file source system and the PSA table for this Datasource is /BIC/B0001653.
    Unfortunately the process chain is picking up an older PSA table for this datasource and there is no way for me to specify the current PSA table name after this change in layout with EHP1 upgrade. Any suggestions on how to resolve this issue.
    Many Thanks,
    Al

    Hi,
    Please implement OSS 1345331.
    If this does not help try the below steps:
    1.  Run the report 'RSAR_PSA_CLEANUP_DIRECTORY/_MS' in check mode for a 
           particular PSA table for finding the inconsistencies.
    2.   After that please analyze the logs and if there is any problems related to partition, you need to correct them using the report u2013
    3.  'SAP_PSA_PARTNO_CORRECT' in repair mode for the
          PSA tables.  Run the report again after this
    4.  'RSR_PSA_CLEANUP_DIRECTORY/_MS' in check mode to 
         double check that the invalid partitions are 
         corrected.
         Once this is done you can execute the report     
         'RSR_PSA_CLEANUP_DIRECTORY/_MS' in repair mode.
    -Vikram

  • Attribute Change Run Process chain

    Hi,
    We have a attribute change run step in Process chain with "selective infoobjects".
    But when it executes it runs attribute change run for all infoobjects apart from what i have mentioned in the variant.
    Proof:
    I had a snapshot of infoobject list in RSA1->Tools->Attribute change Run before executing process chain in which i saw info objects other than what i had in the variant.
    I ran the process chain.
    Again I saw the infoobject list RSA1->Tools->Attribute change Run and it was empty!!
    Even though I mention some infoobject in process "Attribute change Run" It runs for all info objects irrespective of what I maintain in the variant.
    This causes problem and creacting lock. If anyone ever observed this problem and resolved please let me know!!
    Thanks
    VJ

    well here is the POC ,I have nw204s SP-12 .
    Steps followed -
    Monitor of change run - 3 infoobjects currently waiting for CR.
    Built PC with Process type "Attribute  Change"  only ..no other process types barring "Start" which is imperative.
    Included only 2 Infoobjects from the 3 aforementioned.
    Scheduled as immediate and it executed CR for the 2 only,so my CR monitor shows now 1 pending for CR to be run,which is as expected.
    So as per Proof of Concept sp-12 works with process type "Attribute  Change"
    You may wish to check your process chain again and in worst case raise an OSS to SAP.
    Hope it Helps
    Chetan
    @CP..

  • Error while running Process Chain

    Hello all,
    I am getting following error while running the process chain.
    "Process Activate ODS Object Data, variant PROCESS PSA_TO_ODS_ZFIGL_O1 has status Canceled (instance )".
    Due to this others are get affected..
    Plz provide solution.
    amit

    Hello all,
    I am getting following error while running the process chain.
    "Process Construct Database Statistics, variant DB_STAT_0PY_C02 has status Canceled (instance) ".
    Due to this others are get affected..
    Plz provide solution.
    amit

  • To find the Person who run Process Chain lastly

    Dear All,
    How can I find the last person who has run the process chain? is there any table or program?
    Best answer receives reward points.
    Cheers,

    Hello,
    Last Modification
    You can see that information in RSPC, enter in the chain that you want to see who was the last modification user, and there is a button that shows that information.
    All Modifications
    Or you can see the log in RSPC and see the modifications done to the a chain.
    SUIM
    SUIM is a powerful tool that comes in quite handy for the IT when working with roles and authorizations.
    It will not deliver the last modification user of a process chain, for sure.
    Regards,
    Jorge Diogo

Maybe you are looking for

  • Blue screen, computer will not boot up

    My computer, when powered up gets stuck on a blue screen and will not boot up. I have restarted & held down the shift button for safe mode & it goes to a white screen with a grey apple icon but will not move past this screen. How do I get the compute

  • Error while maintaining Labour welfare fund table

    Hi All: I have maintained all the relevant tables for labour welfare fund configuration.But when i maintain table V_T7INU3 with all the relevant entries and try to save it, i get an error "delimit area of validity". Please suggest how to resolve it.

  • Glossy and Matte Displays Interchangeable?

    A friend of mine has a late-2006 MacBook Pro 15" (MA609LL) with a broken glossy screen (B154PW01 V0) and would like to replace it with a matte screen (BP154PW01 V1). Are glossy screens interchangeable with matte screens in this instance?

  • CR Report Reload Duration Tracking

    Hi, I am reloading crystal reports thru BI Launchpad. Report is scheduled to deliver PDF output to a file location and option selected NOT to save instance in the History. This is a recurring report. After each successful reload PDF gets saved to des

  • When I click in a text box, the text cursor does not show?

    Especially in Google search box- I can't even press enter to make it search, I have to minimize the window and maximize it to show the cursor. Any way to fix this?