Process Chain Message for Run completion

Dear experts,
In our system the Process chains and as they complete processes, there are some messages, such as completion of run for master data or hierarchies...
Then when I run the PC, if I don't click to confirm the messages, the PC sometimes times out...
I would like to NOT display thoses messages.
How can I change the settings for that???
Alice

Dear Pravender,
What do you mean by block?
The start event or the attrib. change box?
if i right-click on them both I see:
"Display Variant...
Exchange variant...
Display all jobs
Create message...
Debug Loop...
Remove process"
I don't see "maintain message."
I think you mean that I should I click "create message..." and change successful to error.
If that correct?
Alice

Similar Messages

  • HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING IN THE PRODUCTION?

    HI ALL,
    CAN ANYONE TELL ME HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING DAILY AT 5.00 PM. I NEED TO STOP THE PROCESS CHAIN FOR COUPLE OF DAYS AND THEN RESTART IT AGAIN.
    cAN ANYONE TELL ME THE PROCEDURE TO STOP THE ENTIRE PROCESS CHAIN RUNNING IN THE PRODUCTION.
    THANKS
    HARITHA

    Hi,
    First and foremost let me advice you to be very careful while doing this.
    For Rescheduling
    RSPC> chain > Goto > Planning view and
    click on Execution tab > select > Remove from Schedule and then in Maintain variant of start process reschedule for the day you require it to run.
    For terminating active chain
    You can start from SM37, find the process WID/PID then go to SM50 or SM51 and kill it. Once its done come back to RSMO and check the request, it should be red but again manually force to red and save by clicking on the total status button in the status tab. This shuld ensure that the process is killed properly.
    The next step will be to go to targets that you were loading and remove the red requests from those targets.
    Note: For source system loads you may have to check if the request is running in the source system and kill if needed and pull it again.
    But for BW datamart delta loads u may have reset the datamarts in case u are going to pull the delta again.
    Re: Kill a Job
    Re: Killing a process chain.
    Regards,
    JituK

  • 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

  • Process chain - schedule for certain days

    Hello all,
    How can I schedule a process chain that :
    -should run 3 times per day
    -between the 8th and the 12 workingday of a month
    Any sugesstions?
    Thank you.

    Maybe I cna help others with my solution.
    So...
    I made the chain to run 3 times per day as Debjani advidced me in this thread.
    I put 3 jobs, at the hours I wanted, the period daily, without weekends and holidays.
    I made a reports that tests the 18-th working day (for example) and some others:
    REPORT  Z_DAYS.
    TABLES : TFACS.
    DATA: GI_CURSOR TYPE CURSOR,
          GI_TABIX  TYPE SY-TABIX,
          GT_TFACS  TYPE TABLE OF TFACS.
    DATA: TEXT(50) TYPE C,
          LEN TYPE I,
          IND TYPE I,
          POS TYPE I,
          CNT_ONE TYPE I,
          CNT_ZERO TYPE I,
          DAY_VAR TYPE I,
          IND_VAR(3) TYPE C.
    DATA: EVENTID LIKE TBTCJOB-EVENTID.
    DATA: EVENTPARM LIKE TBTCJOB-EVENTPARM.
    FIELD-SYMBOLS:  <GT_TFACS> TYPE TFACS.
    DAY_VAR = SY-DATUM+6(2).
    OPEN CURSOR GI_CURSOR FOR
    *select data for factory calender Germany (01) and year 2009
    SELECT * FROM TFACS
      WHERE IDENT EQ '01' AND JAHR EQ SY-DATUM+0(4).
    IF SY-SUBRC NE 0.
      EXIT.
    ENDIF.
    MOVE 100 TO GI_TABIX.
    DO.
      FETCH NEXT CURSOR GI_CURSOR
       INTO TABLE GT_TFACS
       PACKAGE SIZE GI_TABIX.
      IF SY-SUBRC NE 0.
        EXIT.
      ENDIF.
    *loop on internal table
      LOOP AT GT_TFACS ASSIGNING <GT_TFACS>.
        TEXT = <GT_TFACS>-MON01.
        LEN = STRLEN( TEXT ).
        WRITE : 'len' , LEN.
        DO LEN TIMES.
          IND = SY-INDEX.
          POS = SY-TABIX.
          IND = IND - 1.
          IND_VAR = IND + 1.
          WRITE: / 'ind', IND_VAR.
          WRITE : 'pos'.
          WRITE POS.
          IF TEXT+IND(POS) = '1'.
    *number of working days increases with 1
            CNT_ONE  = CNT_ONE + 1.
            IF CNT_ONE EQ 8 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '8th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 9 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '9th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 10 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '10th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 11 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '11th working day'.
              EXIT.
            ELSEIF CNT_ONE EQ 17 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '17th working day' COLOR 5.
              EVENTID = 'ZE_PROD'.
              EVENTPARM = 'ZEP_PROD'.
              CALL FUNCTION 'RSSM_EVENT_RAISE'
                EXPORTING
                  I_EVENTID              = EVENTID
                  I_EVENTPARM            = EVENTPARM
                EXCEPTIONS
                  BAD_EVENTID            = 1
                  EVENTID_DOES_NOT_EXIST = 2
                  EVENTID_MISSING        = 3
                  RAISE_FAILED           = 4
                  OTHERS                 = 5.
             IF NOT SY-SUBRC IS INITIAL.
               WRITE:/ 'EVENT DID NOT START'.
             ENDIF.
              EXIT.
            ELSEIF CNT_ONE EQ 18 AND ( DAY_VAR = IND_VAR ).
              WRITE : / '18th working day' COLOR 5.
              EVENTID = 'ZE_PROD'.
              EVENTPARM = 'ZEP_PROD'.
              CALL FUNCTION 'RSSM_EVENT_RAISE'
                EXPORTING
                  I_EVENTID              = EVENTID
                  I_EVENTPARM            = EVENTPARM
                EXCEPTIONS
                  BAD_EVENTID            = 1
                  EVENTID_DOES_NOT_EXIST = 2
                  EVENTID_MISSING        = 3
                  RAISE_FAILED           = 4
                  OTHERS                 = 5.
             IF NOT SY-SUBRC IS INITIAL.
               WRITE:/ 'EVENT DID NOT START'.
             ENDIF.
              EXIT.
            ENDIF.
          ELSEIF TEXT+IND(POS) = '0'.
    *number of holidays days increases with 1
            CNT_ZERO = CNT_ZERO + 1.
          ENDIF.
        ENDDO.
        WRITE : /.
        WRITE: 'January :' COLOR 1, <GT_TFACS>-MON01.
      ENDLOOP.
      REFRESH GT_TFACS.
    ENDDO.
    WRITE / .
    WRITE ' The number of working days is :'.
    WRITE CNT_ONE COLOR 5.
    WRITE / .
    WRITE ' The number of holiday days is :'.
    WRITE CNT_ZERO COLOR 7.
    WRITE : /  DAY_VAR.
    CLOSE CURSOR GI_CURSOR.
    When I am in the 18-th day, I raise an event. I test the year,the calender of the system and the month (January).
    This report is called in the chain, as ABAP process.
    Then, in my chain , I put a local chain , that starts after it receives the event 'ZE_PROD' and the parameter for it 'ZE_PROD'.
    This event with parameter has to be created in SM62.
    I hope this helps and thank you all for the advices.
    PS: - the factory calender method seems not to be to good, because need special rights to create it and I don' t think it's possible to customize it (because the holiday calender has to be changed and I did not see how).
    Edited by: EMI on Jan 27, 2009 4:21 PM

  • Stopping Process Chain schedule for just one day...

    Hi,
    Our source systems and BI are getting a patch upgrade during this weekend and I need to stop all the Process Chains schedule for Friday night/ Saturday morning. Is there a simple way I can stop all the Process Chains from executing just for tomorrow instead of manually removing each PC from schedule and again putting them back on schedule on Saturday?
    Thanks,
    Sri.

    Hi
    You can reschedule them instead of de-schedule and schedule back.
    1)open your process chain in rspc1
    2) goto planning mode
    3) right click on start --> display schedule job
    4) select the job --> in menu bar --> click on first one from left --> change
    here change the dates as per your requirement and save the job.
    If you have any event based chains which are going to start after time based chains gets complete, no need to de-schedule as we are not going get trigger from time based chains.
    I don't think so we have any program to de-schedule all the chains at a time.
    Regards,
    Venkatesh

  • Reg : To view process chain flow for a cube

    HI Experts,
    I need to view process chain flow for a particular cube of sales distribution.Can you please tell me stps to perform .

    Hi,
    If the cube is already loaded then you can just to the infopackages which are loading it and in the infopackages you have option in the "schedule" tab to see which process chain it is loading.
    if not then you will have to identify which data source is loading to the cube and check for the infopackge.
    and I think the DTP will be in the same chain  as well.
    For DTP it is alreday mentioned by the others.
    Thanks
    Ajeet

  • How to stop a process chain when its running?

    Dear Experts,
    How to stop a process chain when its running? is it that a chain can be stoppend when we open an info package of that chain ?
    Thank you,
    Raj

    Hi,
    Goto the main menu process chain --> choose the remove from the Schudule...
    Regards
    sathis
    I hope it helps to u... please assign the points

  • Process Chain Assining for another source sytem

    Hi Experts,
    I have a quick question on process chain assining for another source sytem.
    For Example. I have a Process chain with 10 Infiopackages. Letz say that Infopackage was assinged to one source system.
    Now I wanna a create a new process chain which shoud be the replica of the existing process chain. I wanna to load the data for the same info packages thru another sources system. Can we do this or else we have to reassign the data source for new source system for every infosources.. Is this Possible.
    Kindly guide me if there is any nother solution for this.
    Warm Regards,
    Aluri

    Hi..
    ABAP routines are in place at infopack level or at the Transformation level?
    If its there at the Transformation level then there wont be any issues for ur redesigning..
    if its there at the IP level then u need to copy those things in ur new IP as per the requirement and change the things accordingly..
    and then design the process chain..
    Assign points if this helps..
    Thanks

  • Execute Process chain after infopackage run for a PC file

    Hello all.
    The scenario I need to solve is the following.
    I have several files to be load to ODS from P users PC. I will do this with an info package. But after this load there are some more process that have to be run whoch are created in a process chain.
    I would like to automate the execution of the precess chain right after the load from PC file is done.
    Any sugestions?
    Thanks and regards,

    Hello Javier Alvarado,
    If you use process chains, the automatically integrated processes are ignored and have to
    be implemented using the process chain. If you schedule a specific process in a chain,
    you support the automatic insertion of additional, relevant standard processes with the
    consideration of such automatic actions.
    For example, if you have selected the processing types Only PSA and Subsequently in
    Data Targets in the InfoPackage from the tabstrip Processing, and you are using this
    InfoPackage in a process chain, then the further processing into the data target does not
    automatically happen. Instead, it only happens if the process Update PSA is scheduled in
    the respective process chain after the loading process. Thus, the process chain
    maintenance supports the automation in this case. In this way, you generate a process
    variant for updating from the PSA in the chain when inserting the loading process with the
    process types Only PSA and Subsequently in Data Targets automatically into a chain.
    Well i am talking about 30B Version
    Regards,
    Mohan.

  • Process chain is long running

    We have a process chain that is long running even though there is not much data.
    It is long running in Load PSA step. It is getting data from other R/3 sap system. A job is also long running in the R/3 system.
    We can see data coming to BW system but not getting updated to PSA and even the job in R\3 is also not getting terminated.
    There are many other process chains too running in the system and they are running fine. So i feel that this may not be due to system performance. This is happening for last one and half week.
    If any one has faced similar problems or if you have any solution or checks that i can do, please reply.
    Regards,

    Hi sarafraz,
    If there are more than one run are active and running ,then delete the other extraction job and have only one at a time in source system. Because those may be causing lock issue .
    Also see system log in SM21 ,if you have any system termination message for this extractor .
    Check ST22,if you have any short dump for this extractor
    Also you can try to load for particular selection in Infopackage (for a month,company code or some other selection that restrict the data) and check whether it is completed or not.
    Also check to RSA3 and extract there.
    See SM12 -for lock entires
    SM51,SM66 in source system - What is running for this extractor,which program is being read,which table etc...
    so you can know the step where it got stuck or taking long time.
    Thanks,
    Naween

  • Process Chain Attribute Change Run

    Hi Experts,
    I am working BI 7.0 version, I am try to run Process chain showing warning Error in Infopackage level, Please find the below Error Message:
    A type "Attribute Change Run" process has to follow process "Execute InfoPackage"  var.ZPAK_4DLO5GB778XTBBM57040KMRW4 in the chain
    Please provide me solutions, how to solve this issue, Please ASAP.
    Thanks & Regards,
    Bharathi.

    Hi All,
    Thanks a lot for ur assistance.
    Thanks & Regards,
    Bharathi.

  • Process chain variant for Acivaton of DSO error!!!

    I have a data flow which has three data sources A B C ...A and B are connected to DSO X and C is connected to DSO Y,
    DSO X and Y are again connected to DSO Z....DSO Z is connected to Final Target (Info Cube M).
    Now Iam created a Process chain ...After Start Variant Iam running the Delta Info Packs for B and C (A's Delta Info pack runs in some other chain).
    Then using  Update from PSA for  A B C ...using AND for A&B PSA to load in to DSO X...paralelly I used C PSA update in to DSO Y...Then used AND to load X& Y to Z...
    When I run the process chain it runs good twice...we created a job in SM37 to run this job for every 4 hours....when I come back and see ...DSO X has data loaded and activated
    But DSO Y loaded the data but activation doesnt took...When I see the Process chain logs its giving the following error msgs.
                                        - 1 -
          Request REQU_D3DR8GR9CPUIA56IMER47VWW7 (0000060949) is not
          available in data target. No PSA process possible.
    Like this error each chain is showing error messages with the request numbers which are already activated in DSO.I donno when the req is already there as active why activation looking for that old req?
    I fixed it by manually updating the DSOs and Cube...Can anybody let me know how to fix this in Process chain.
    Thanks for the help in advance

    I think you may have a timing issue, as when you perform this update manually there is no issue's.
    I would suggest you load both ODS's then you activate the data on both, then you have the AND step once both have been activated to then feed the data to the subsequent Infoprovider.
    This should resolve your issue.

  • Process chain shows DTP running

    We are on latest patch levels in BI 7.0.
    One of our production process chain is not completing. It shows no messages, DTP from  DSO to cube remains yellow. We don't see any request updating in the cube. However, manual execution of DTP is working fine.
    I have dependent process chains, and I need to make this process chain green.
    Please help
    Shalini.

    Hi Shalini,
    Some patch is missed in production system i guess.
    Could you please cancel the DTP that is currently running in the
    System and restart it again. Before restarting the DTP please make
    sure that the lock from the DDFTX and NRIV tables have been released.
    Please ask the database administrator to ensure that there are no
    locks on the database on these tables before starting the DTP again.
    The issue with the lock on the DDFTX table usually happens when an
    upgrade is done and on restarting it the issue should not occur again.
    Could you please implement note 1155807. This note should prevent the
    locking on the DDFTX table
    Hope it helps you.
    Thanks,
    Sarau

  • How to incorporate time in the Process chain messages

    Hi,
    I would like to create message after success or failure of process chain with time of failure in the subject.How to put system variable in the message subject?.
    Your help will be appreciated.
    thanks in advance.
    Manju

    raj,
    thanks for your quick reply but i would like to incorporate the finish time in the mail subject.
    for example mail subject is as follows.
    "GL process chain has been finished at xx:xx time".
    Here time (xx:xx) should automatically read and fill as per the finish time of the process chain.
    hope now it is clear.any idea how it can be done?.
    manju

  • Missing subject line in BW Process Chain Messages

    Hi Experts!
    We are using BW3.5 (Support pack 16) process chains. There are a number of process chains and almost every thing is working fine.
    But 2 process chains, send message without any subject into the email.
    I did a number of tricks e.g. reactivated/rescheduled process chains, removed from scheduling and rescheduled, also deleted and recreated the message but nothing is working.
    Did any one else face the similar problem?
    Please let me know,
    Thx
    Praveen

    Praveen I also had similar problem and i raised one earlier post here also .., you can check that
    Re: Process Chain Maintain Message Edit Document Problem
    what i found it is because of some bug and needed to import 23 support package for bw 3.1 there I noticed one more note for 3.5
    hope it guides u some way
    Message was edited by: Sukthi Sri

Maybe you are looking for

  • Mail configuration in shared services

    Hi, I have configured SMTP Mail Server name in the shared services but still not able to send HFR and Web analysis reports through email. When I click on Email Link in WOrkspace on a particular report, getting below error: Enter the user email addres

  • Bug when using applications when the screen is locked

    Hi i've got a problem when i updated iOS from 8.0. When i want to open camera and another applications in control centre my iphone with iOS 8.1.3 at first switch application on and than my screen become fully dark. I fix it by restarting, but then af

  • Insert table in between two rows of the table in Web dynpro abap.

    Hi All, I have a requirment like this, while click on a hide/show button from the first row and last column of the table, want to display  a table(or add some rows to insert data) in between the  rows of the table and insert data in the new table . p

  • My MSI 955X built in networking is not working properly

    Hi, I have many MSI 955X motherboards with the built in Intel Pro1000 and the broadcom 1 GB lan built on board. I have been having trouble getting these built in lan ports to work. I have updated the mobos bios to the latest. I have installed the lat

  • Speed Grade Crash on Launch in Windows 8.1 after December 2013 update

    Speed Grade crashes on launch in Windows 8.1 after December 2013 update. Resetting the preferences did not help