While going to second approver the triggering event is changing

Hi Frds
Once the first approver is clicks the recommend to approve's button,then the work item goes to the second approver its all working fine.In the mean time the first approver got the workitem for the same Workflow.
I have checked in the SWEL (Event Trace's).
Can anyone give the solution for this problem.
Thanks
Pari

pari vedhan raj... 
On looking into your issue two things i can suggest
First: goto SPRO Img>> Material management >> Purchasing >>Purchase Order >> Release procedure for purchase order >>
Define release procedure for purchase order >> select workflow.
here you can see all agents/approver for release strategy workflow, if same user maintained for different release code then he use to get same workitem with different release code.
sencond: check is there any other workflow is active for the same event.
regards,
Hari

Similar Messages

  • Which container element contains the triggering event name?

    hi,gurus,
    i have a workflow template, and i want to use a 'switch' to deal with different triggering event inside the template logic.
    but i can not find a element in the container which supposed to contain the triggering event name.
    could you please help me ?
    br.
    zj

    Hello,
    The element which stores the name of triggering event is '_EVT_NAME' which is present in the event container. To use it in the workflow template, you have to create an element in the workflow container and bind this element to the above mentioned element through the binding for triggering event.
    Thus you can use the workflow container element in the switch.
    Hope this will help.
    Regards,
    Samson

  • [svn:fx-trunk] 12435: Followup to the recent event dispatching change.

    Revision: 12435
    Revision: 12435
    Author:   [email protected]
    Date:     2009-12-03 07:26:54 -0800 (Thu, 03 Dec 2009)
    Log Message:
    Followup to the recent event dispatching change.  As it turns out we do require capture phase listeners on both FlexEvent.MOVE and FlexEvent.RESIZE.  Will make the change to always dispatch these event types but if it proves too much of a performance loss (as measured by our performance suite), we will find a way to work around the need for capturing.  Currently UIComponent listens for MOVE,RESIZE that it may update the focus rectangle.  DataGrid listens for RESIZE globally to dismiss any active item renderers.
    QE notes: None
    Doc notes: None
    Bugs: SDK-24504
    Reviewer: Alex
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24504
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as

  • When I updated to the latest IOS last night, why did the photo events date change?

    When I updated to the latest IOS last night, why did the photo events date change?

    The problem is that the Add-ons Manager tab when opened the first time, is on "Get Add-ons" section and that must be downloaded from the Add-ons server which might be overburdened.
    * If you need to look for new Add-ons, go directly to the Add-ons site -> https://addons.mozilla.org/en-US/firefox/
    Perform the suggestions mentioned in the following articles:
    * [https://support.mozilla.com/en-US/kb/Template:clearCookiesCache/ Clear Cookies & Cache]
    * [[Add-ons are disabled after updating Firefox#w_check-for-new-versions-of-your-add-ons|Check for New versions of your Add-ons]]
    Check and tell if its working.
    Not related to your problem but some of your Plugins are out-dated
    * Update All your Firefox Plugins -> [https://www.mozilla.org/en-US/plugincheck/]
    * '''When Downloading Plugins Update setup files, Remove Checkmark from Downloading other Optional Softwares with your Plugins (e.g. Toolbars, McAfee, Google Chrome, etc.)'''

  • While Printing on Second Page the Space for Header is not considered

    Dear All
    we are using LIPI Line Printer and First page is Printed Correctly but at the time of Printing second page (for another invoice or same invoice second copy) the Space for invoice Header is over written by the Content of the smart form.
    In smartform that space for the Invoice Header is left blank.
    Please Suggest how to remove the Problem.
    Virandra Sharda
    9427630630

    Hello,
    I can't see any relation to DB2 therefore you should ask your question the ABAP Development » Form Printing forum (for any reason I cannot move the thread).
    Regards,
    Thomas

  • Triggering event through Change Management for Sales order

    I am working on three different scenarios of workflow which is triggered on change of sales order.  I am trying to put conditions in SWEC for the workflows to start but not sure how to go about it.  I created change doc object VERKBELEG and assigned bus2032 and changed as my event.  I inserted a value in condition editor like vbap_(fieldname)_new etc.  Nothing seem to be working.
    I would like to know once we assign event here in SWEC, should we also assign and activate it in the triggering tab of workflow or just create an entry in the linkage table.
    Please guide me as to how I need to work on the sales order change.  I am basically want to trigger a sales order only when a field value is updated or inserted which pertains to my requirement.
    Thank you very much.

    Karthik,
    My problem is still not resolved.  I am trying to put something like this.  Let me know if you have were able to do this in any other way.
    DATA : i_cdhdr LIKE cdhdr OCCURS 0 WITH HEADER LINE.
    DATA : lt_editpos LIKE cdshw OCCURS 0 WITH HEADER LINE.
    DATA : it_vbap LIKE vbap OCCURS 0 WITH HEADER LINE.
    DATA : flag(1) TYPE c.
    DATA : text LIKE message-msgtx.
    DATA: BEGIN OF ITAB OCCURS 10.
            INCLUDE STRUCTURE cdshw.
    DATA:   UDATE LIKE CDHDR-UDATE,
            USERNAME LIKE CDHDR-USERNAME,
            CHANGENR LIKE CDHDR-CHANGENR,
            VBELN(10),
            POSNR(6),
            ETENR(4),
            INDTEXT(200),
      END OF ITAB.
    data : lv_vbeln like vbap-vbeln.
    data : lv_posnr like vbap-posnr.
    SELECT vbeln posnr FROM vbap INTO TABLE it_vbap WHERE
                                           vbeln = '               ' AND
                                           posnr = .
    i_cdhdr-objectclas = 'VERKBELEG'.
    i_cdhdr-objectid   =  '      '.
    CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS'
         EXPORTING
              objectclass       = 'VERKBELEG'
              objectid          = '            '
              username          = space
              time_of_change    = i_cdhdr-utime
         TABLES
              i_cdhdr           = i_cdhdr
         EXCEPTIONS
              no_position_found = 1
              OTHERS            = 2.
    IF sy-subrc EQ 0 AND NOT i_cdhdr[] IS INITIAL.
      sort i_cdhdr by CHANGENR UDATE UTIME descending.
      LOOP AT i_cdhdr.
        CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS'
             EXPORTING
                  changenumber      = i_cdhdr-changenr
             TABLES
                  editpos           = lt_editpos
             EXCEPTIONS
                  no_position_found = 1
                  OTHERS            = 2.
      ENDLOOP.
    **change in fname is eq lprio delete the records.
    loop at lt_editpos.  
        if lt_editpos-fname = 'LPRIO' and
           lt_editpos-CHNGIND = 'U' and
           lt_editpos-F_NEW = '03' and
           lt_editpos-tabname = 'VBAP'.
          flag = 'X'.
            concatenate lt_editpos-fname lt_editpos-f_new into text.
          exit.
        elseif lt_editpos-fname = 'KEY' and
               lt_editpos-CHNGIND = 'I' and
               lt_editpos-tabname = 'VBAP'.
          lv_vbeln = lt_editpos-tabkey+3(10).
          lv_posnr = lt_editpos-tabkey+13(6).
          select single * from vbap into it_vbap where
                                           vbeln eq lv_vbeln and
                                           posnr eq lv_posnr.
          if sy-subrc = 0 and it_vbap-lprio = '03'.
            flag = 'X'.
             concatenate lv_vbeln lv_posnr it_vbap-lprio into text.
            exit.
          endif.
        endif.
      endloop.
    endif.

  • Triggering events using changed documents

    Hi friends,
                      In transaction SWEC, How can I use the two options 'On create' and 'on delete'.
    Thanks,
    Gaurav

    Check this beautiful [artcle|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/80ddeba4-e780-2b10-7bb2-fc7a33efabbd]

  • Work Flow - Triggering Event through Webdynpro

    Hi,
              I am new to Workflow. I have generated the Workflow related to claim (Objects as ABAP Class). Now I have generated Webdynpro component and through this I need to execute the Workflow. I have used the FM SAP_WAPI_START_WORKFLOW & SAP_WAPI_CREATE_EVENT. To raise the event 'cl_swf_evt_event=>raise'. I have used. But this is not triggering event. So, Any one can help me on this issue.
    In workflow using ABAP CLASS is essential or Business object.
    In my case I have used only ABAP CLASS. In workflow I have generated the Triggering event as SAVE. In webdynpro I have generated the code in 'ONACTIONSAVE'. When ever the user clicks SAVE' button. Workflow shouild trigger and approver should receive the mail as notification and he/she will approve/reject the claim.
    Thanks & Regards
    Kannappan

    After SAP_WAPI_START_WORKFLOW do you have COMMIT WORK?
    Does the SAP_WAPI_START_WORKFLOW return some error message?
    Are you sure that the event is not triggered? Check this with event monitor SWEL (turn monitor on in SWELS).
    Also, ready Jocelyn Dart's blogs about ABAP OO. She have clear instructions about how to trigger ABAP OO events.
    Regards,
    Karri

  • Triggering event FMRE-CREATED in an infinite loop

    Hi guys,
    Iu2019m having a big problem in Public Sector Management with Founds Management Government when I create a Found reservation Tcode FMX1.
    My problem is the triggering event FMRE-CREATED  (event to start the Workflow) because when the document is created, this event is generated by the system which is fine, but inside on my Workflow I have a task to change the status with FMRE-SetLock, when this method is executed, automatically trigger an event FMRE-CREATED again, so my WF gets in a infinite loop.
    How can I tell the system to donu2019t trigger this event when the status is changed?
    Thanks a lot
    Felipe Uribe.

    Hi,
    but inside on my Workflow I have a task to change the status with FMRE-SetLock, when this method is executed, automatically trigger an event FMRE-CREATED again, so my WF gets in a infinite loop.
    How you changing the status? Check any Function Module or BAPI to change the status.
    You have acheive it via Start Condition, check are you getting entry in the Table  SWFREVTLOG for Creation.
    If second time creating, check for the entry in the table, if found not allow it.
    Regards,
    Surjith

  • Regarding Workflow triggering event.

    Hi,
    Description: I have created a Object type and a event for the same by transaction SWO1, after that i have created a WorkFlow(WF) for which the triggering event is the event i have created in the Object Type. There is a report in which i have used the FM "SWE_EVENT_CREATE" and passed the Object Type, Event Name, Key field values and the creator.
    Problem: When i am executing this report the FM is called and the sy-subrc after call is 0, stating that the call was succesfull, but the WF is not getting triggered when i went to transaction SWI2_FREQ to check this WF is not at all triggered. But when i tested from WF transaction SWDD it is working fine.
    Could anyone please explain me on this. or is there any other way to use an event of a Object Type to trigger WF.
    Thanks and Regards,
    Raghavendra Goutham P.

    hi gauthum,
    try this chks.
    Workflow Trace On/Off - SWU8
    Display              - SWU9
    Delete              - SWU10.
    Work Item Analysis    - SWI1
    Identifying workflow for the work Item :
    Tx : SWI1 - Enter the workiem id which has been identified in workflow log
           The details consists of workflow of the workitem.     
    WorkFlow Errors :
    1. Workflow Not Started           - Using Event Trace we can Identify
    2. Started but No Proceeded           - Wrong Object Keys
    3. Problem in Work Item Execution
         Dialog Work Item          - Agent Determinaion Error ( Position,Role,User )
                             - Role Resolution Error
                               Reqd Element would no be
                               Set in Binding
         Background Work Item      - Make Foreground and Test once Sucessfull make it Back round
    rgds
    nver
    if hlped mark points

  • Notification mail according to  triggerring event in workflow

    Hi All,
              am doing customer master workflow using KNA1 Business object, it has event CREATE and CHANGE.
    whenever event CREATE is triggering workflow, i want to send notification mail with title 'CUSTOMER 999 CREATED'.
    whenever event CHANGE is triggering workflow, i want to send notification mail with title ' CUSTOMER 999 CHANGED'.
    Could you please advise, how can i handle notification mail according to triggering event.
    Thanks in advance.
    Regards,
    Balamurugan.

    You can either trigger a 1 step workflow that has a send mail step. The triggering event of the Workflow should be CREATE and CHANGE event of BO KNA1. You have to activate the linkage between event and workflow in PFTC. You have to maintain some entries in SWE2.
    After you have done this check your development from Tcode SWEL.
    Thanks
    Arghadip

  • Description on triggered event of Cisco director..

    Hi,
    I am looking for any document, which can elaborate the Triggered event description to understand what actually happend on port or any componenent.
    Ex.
    Triggered event: [PI_FSM_EV_FCOT_REMOVED]
    Triggered event: [PI_FSM_EV_FCOT_INSERTED]
    Thanks.
    Rajeev Ranjan.

    hello Rajeeve,
    Hope this document will help
    http://www.cisco.com/en/US/docs/switches/datacenter/mds9000/sw/5_0/configuration/guides/sysmgnt/nxos/snmp.html

  • Event Data Change step- Failure

    Hi All,
    I have a failure in event data change process in a process chain.
    It has identified 2 packages for change.
    One package has successfully been done.
    While processing of second package, the job BCAST**** failed as logon to BW system with user ID specified failed.
    I know that the user-id does not exist., but am not able to find out of where the to change the user id for the job BCAST*** to run successfull.
    when i click displaying messages, it shows
    Step 001 started (program RSPROCESS, variant &0000001212711, user ID BWEXTRACT)
    Program RSBATCH_EXECUTE_PROZESS successfully scheduled as job
    BIBCAST4AN61630VW21F4LTLVP2QED68 with ID 08254800
    The job BIBCAST4AN61630VW21F4LTLVP2QED68 failed as logon was not possible.
    Please suggest

    Hai ,
    Its right you get the owner name in the table after changing the right user id there .
    In broadcast setting screen itself say for EX broadcast email
    below you give the recepient address
    after that you have the Authorization user  box where you can directly change to right id if you have the proper authorization attached to your user id .Remmember to save then schedule & execute when you trigger for first time.
    This step is related to the role attached to your user access ask basis guy or instead of transporting from development do the broadcast setting directly in production with right EP access.
    hope it would sove your issue.

  • Event data change process failed in process chain

    Hi All,
    We have a process chain to broadcast the workbooks where we have three event data change processes in succession.
    When this process chain is executed, the first event data change process is getting executed successfully, but the second process is getting failed every time. The error message is 'Session terminated.Cannot precalculate the workbook...'. Please let me know if anyone has faced the same kind of problem and also the remedy for it.
    Thanks in advance
    Hima Bindu

    Hi,
    Check the load on the precalculation server, also any errors occured for the precalculation of the workbook.
    Regards,
    anil

  • Time Card in going for the second approval

    our requirement is to send time card for manager approval after supervisor's approval . but when ever supervisor approved time card instead of going for concerend manager approval status change to approved from submited. if we change the precedance order then instead of going for supervisor it goes directly to concerned manager.
    We create one approval style to get approval from the supervisor and one approval style each department where we defined the concerned manager name with the application is payroll in all the case.
    Regards,
    Farhan
    Edited by: user12041576 on Jan 10, 2013 10:31 AM

    try the following:
    Define an empty Time category and select Dummy Element context - without any element name - it will include all elements.
    As Approval style, choose Entry level approvals as the approval mechanism.
    Press Entry Level approval fragments button. enter the following
    Row1=> Your time category - HR Supervisor - 1 (seq)
    Row2=> Your time category - Define a formula for the second approval - or just person --> the person _id                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Excel hyperlink is opening pdf file using reader, how can I make it use Acrobat professional?

    I created a hyerlink in excel to a pdf file. The file automatically opens up using  adobe reader, I want it to open using Acrobat professional. How do I set it up. Thanks

  • Standard Purchase order datasource

    Hi, Is there any datasource for Purchase order which has Purchase document no, quantity, amount and corresponding delivery document no?

  • BT Inifinity 2 issue - BT given up?

    After getting consistently good results from Bt Infinity I decided to apply for Infinity 2. I placed the order and about 5 days later my modem disconnected and re-training seem to take place over a few days. On Infinity 1 - approx 36Mb down and 6Mb u

  • Safari is not opening pdf's anymore with preview. Help!

    Hello, Can anyone help me to get safari to open pdf's using preview again? I installed adobe reader and it seems to have highjacked safari and now is the default pdf viewer for pdf's opened in safari while browsing on the web. Things I have tried so

  • Newbie trying to understand MVC

    Hi all, I am trying to understand MVC here and I have this question... I fetch some xml data from a HTTPservice but I want them to be available to all my views. Is it possible to save them in a model?