Workflow is not triggered via program RBDMANI2

Hi,
We have a Workflow that triggers when an IDOC ends up in an error. It works fine when the IDOC is posted through XI and also when processed from WE19. When we try to re process through the Program RBDMANI2 the even is not triggered.
Business Object used: ZIDOCAPPL (Subtype of IDOCAPPL delegated to IDOCAPPL).
Event: INPUTERROROCCURED
My doubt here is will an event be triggered when an IDOC is Processed through RBDMANI2 program? If yes then am i missing or is there some settings that needs to be or should i use any specific Business Object for this scenario.
Please throw some light upon this.
Thanks,
Prashanth

Hi Prashant,
Best way to find out which event is getting triggered with this report is by using Event Trace, Follow the below steps.
(1)- Go to Tcode SWELS, (SWITCH ON THE TRACE).
(2)- Now run this Report .
(3)- Go to Tcode SWELS again.(SWITCH OFF THE TRACE).
(4)- Go to Tcode SWEL, Execute it, You'll find the Event name and Business object name that got trigerred.
Note: If you don't see any event getting trigerred in SWEL, this means that with this report no event is executing.
The other way around could be to use a BADI or User-exit in that you have to externally trigger the event by using function module.
'SAP_WAPI_CREATE_EVENT'
Note: If events are not getting trigerred through transactions, Then you can use this function module to trigger workflow from outside, So use this function module in any badi or exit or enhancement spot that suits your requirement.
Thanks.

Similar Messages

  • QM Block not triggered  via EDI orders

    Hello All,
    Please help me with this problem "QM block not triggered via EDI Orders".
    Sales Orders will be created using IDOC. When the sales orders was displayed using VA02, goto >> items >> schedule lines, there's no QM status violated being displayed in the delivery block column.
    Kindly help me what logic will I applied regarding this matter.
    FM used was IDOC_INPUT_ORDERS.
    I need your comments/suggestions ASAP.
    Thanks in advance.
    Carina

    hai,
    Just check this it may help tou.
    Program Name : YX30_UPLOAD_QUALITY_INFO
    Quality Info Record for I30 System *
    Original Transport Number : I30K903055 *
    SYS id: SYS_30_1502_03_41_Upload Quality Info Records *
    TDS id: TD_30_1502_03_41_Upload Quality Info Records *
    UT ID: UT_30_1502_03_41_Upload Quality Info Records *
    ======================================================================
    Change History *
    Date | Change No | Name | Description *
    yyyy/mm/dd | AAAYYYYMMDD | xxxxxxxxxxxx | *
    REPORT YX30_UPLOAD_QUALITY_INFO MESSAGE-ID yx30_conversions
    no standard page heading line-size 255.
    include yx30_upload_quality_info_top. "Include for Variable Declaration & Selection Screen
    include yx30_upload_quality_info_data. "Include for File read & Authority Check
    *& At Selection Screen Output *
    AT SELECTION-SCREEN OUTPUT. "PBO
    PERFORM fill_parameters.
    *& Start Of Selection Event *
    start-of-selection.
    Perform Authority_check. "Subroutine for authority check
    Perform prepare_file. "Subroutine for preparing file
    perform file_read. "Subroutine for File read
    perform update_qi01. "Subroutine for Uploading data
    perform write_error_log1. "Subroutine for writing error log
    *& Form write_error_log
    text
    --> p1 text
    <-- p2 text
    *& Include YX30_UPLOAD_QUALITY_INFO_TOP
    Type Declaration
    Types: Begin of type_qtyinf,
    matnr type matnr, "Material No
    lieferant type char10, "Vendor
    werk type werks_d, "Plant
    frei_dat type char10, "Frei_Dat
    stsma type char8, "Stsma
    anwso_01 type char1, "ANWSO(01)
    anwso_02 type char1, "ANWSO(02)
    anwso_03 type char1, "ANWSO(03)
    end of type_qtyinf.
    Internal Table Declaration
    Data: itab_qtyinf type standard table of type_qtyinf. "Internal table for QTYINF.
    Work Area Declaration
    Data: wa_qtyinf type type_qtyinf. "Work Area for QTYINF.
    Variable Declaration
    Data: v_file_qtyinf type string, "Source File Name
    v1 type string,
    v2 type string,
    v3 type string,
    v_file_return type string,
    v_lin TYPE n.
    *Selection Screen Declaration
    selection-screen *
    SELECTION-SCREEN BEGIN OF BLOCK blk1
    WITH FRAME TITLE text-s01.
    PARAMETER:
    p_sysid(3) TYPE c OBLIGATORY , "Source System
    p_bukrs(4) TYPE c OBLIGATORY , "Source CompCode
    p_samshr type char30 lower case obligatory default '/sap_upload/' , "Samba Share Drive
    p_object TYPE CHAR10 OBLIGATORY default 'MAT' . "Migration Data Object
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN SKIP 3.
    PARAMETER:
    cb_pfill TYPE c AS CHECKBOX DEFAULT 'X' . "Prefill values?
    SELECTION-SCREEN COMMENT /1(79) text-s1a.
    SELECTION-SCREEN BEGIN OF BLOCK blk3
    WITH FRAME TITLE text-s03.
    PARAMETER:
    pa_filn1(500) TYPE c LOWER CASE
    VISIBLE LENGTH 50 , "Filename AppServer
    pa_dlimt TYPE c DEFAULT ';' . "Field Delimter
    SELECTION-SCREEN END OF BLOCK blk3.
    include bdcrecx1. "Include for the subroutine
    *& Include YX30_UPLOAD_QUALITY_INFO_DATA
    *& Form file_read
    Subroutine for reading the source file into internal table
    --> p1 text
    <-- p2 text
    FORM file_read .
    DATA:
    single_line TYPE string .
    *-- read file, split lines into fields and put data into table
    OPEN DATASET v_file_qtyinf FOR INPUT IN TEXT MODE ENCODING NON-UNICODE. "Opening the files
    IF sy-subrc EQ 0.
    DO.
    READ DATASET v_file_qtyinf INTO single_line. "Reading the content of file into line
    IF sy-subrc = 0.
    IF sy-index > 1. "skip header-line
    SPLIT "Split the content of line into work area
    single_line
    AT ';'
    INTO
    wa_qtyinf-matnr "Material No
    wa_qtyinf-lieferant "Vendor
    wa_qtyinf-werk "Plant
    wa_qtyinf-frei_dat "Frei Date
    wa_qtyinf-stsma "STSMA
    wa_qtyinf-anwso_01 "ANWSO_01
    wa_qtyinf-anwso_02 "ANWSO_02
    wa_qtyinf-anwso_03. "ANWSO_03
    APPEND wa_qtyinf TO itab_qtyinf. "Appending Work Area to internal table
    ENDIF.
    ELSE.
    EXIT.
    ENDIF.
    ENDDO.
    CLOSE DATASET v_file_qtyinf. "Closing the files
    ELSE.
    MESSAGE e015 .
    ENDIF.
    DESCRIBE TABLE itab_qtyinf LINES v_lin.
    IF v_lin LT 0.
    MESSAGE e016 .
    ENDIF.
    ENDFORM. " file_read
    *& Form fill_parameters
    Subroutine for getting the file name
    FORM fill_parameters .
    IF cb_pfill = 'X'.
    Preparing QTYINF File
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_QTYINF_' p_bukrs '.CSV' INTO v2.
    CONCATENATE p_samshr v3 '/' p_object '/' v2 INTO pa_filn1.
    ENDIF.
    ENDFORM. " fill_parameters
    *& Form Authority_check
    Authority Check
    --> p1 text
    <-- p2 text
    FORM authority_check .
    Authority Check For the Migration
    AUTHORITY-CHECK OBJECT 'YX30_MIGR'
    ID 'SYSTEM' FIELD p_sysid
    ID 'BUKRS' FIELD p_bukrs
    ID 'YX30_DMOBJ' FIELD p_object
    ID 'ACTVT' FIELD '16'.
    IF sy-subrc <> 0.
    MESSAGE e010 WITH p_sysid p_bukrs p_object.
    ENDIF.
    ENDFORM. " Authority_check
    *& Form prepare_file
    text
    --> p1 text
    <-- p2 text
    FORM prepare_file .
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_QTYINF_' p_bukrs '.CSV' INTO v2.
    CONCATENATE p_samshr v3 '/' p_object '/' v2 INTO v_file_qtyinf.
    CLEAR v3.
    CLEAR v2.
    Prepare Return File
    CONCATENATE p_sysid '_forward' INTO v3.
    CONCATENATE p_sysid '_RETRUN_LOG_' p_bukrs '.CSV' INTO v2.
    CONCATENATE '/sap_upload/' v3 '/' 'MAT' '/' v2 INTO v_file_return.
    ENDFORM. " prepare_file
    *& Form update_qi01
    text
    FORM update_qi01.
    PERFORM open_group. "Opening a session
    CLEAR wa_qtyinf.
    LOOP AT itab_qtyinf INTO wa_qtyinf.
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0100'. "Subroutine for mapping data
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-MATNR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'QINF-MATNR'
    wa_qtyinf-matnr. "Mapping the material
    PERFORM bdc_field USING 'QINF-LIEFERANT'
    wa_qtyinf-lieferant. "Mapping the vendor
    PERFORM bdc_field USING 'QINF-WERK'
    wa_qtyinf-werk. "Mapping the plant
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0101'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=STAN'.
    PERFORM bdc_field USING 'QINF-FREI_DAT'
    wa_qtyinf-frei_dat.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-STSMA'.
    PERFORM bdc_field USING 'QINF-STSMA'
    wa_qtyinf-stsma. "Mapping the status
    PERFORM bdc_dynpro USING 'SAPLBSVA' '0201'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'J_STMAINT-ANWSO(01)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=OKAY'.
    IF wa_qtyinf-anwso_01 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01. "Mapping the anwso(01)
    ELSEIF wa_qtyinf-anwso_02 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02. "Mapping the anwso(02)
    ELSEIF wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03. "Mapping the anwso(03)
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_02 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ELSEIF wa_qtyinf-anwso_02 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ELSEIF wa_qtyinf-anwso_01 = 'X' AND wa_qtyinf-anwso_02 = 'X' AND wa_qtyinf-anwso_03 = 'X'.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(01)'
    wa_qtyinf-anwso_01.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(02)'
    wa_qtyinf-anwso_02.
    PERFORM bdc_field USING 'J_STMAINT-ANWSO(03)'
    wa_qtyinf-anwso_03.
    ENDIF.
    PERFORM bdc_dynpro USING 'SAPMQBAA' '0101'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'QINF-FREI_DAT'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=QMBU'.
    PERFORM bdc_field USING 'QINF-FREI_DAT'
    wa_qtyinf-frei_dat.
    PERFORM bdc_field USING 'QINF-STSMA'
    wa_qtyinf-stsma.
    PERFORM bdc_transaction USING 'QI01'.
    ENDLOOP.
    PERFORM close_group. "Closing the session
    ENDFORM. "update_qi01
    *& Form write_error_log
    text
    --> p1 text
    <-- p2 text
    FORM write_error_log1 .
    DATA:
    single_line TYPE string,
    v_msg TYPE string,
    v_msg1 TYPE string.
    *-- read file, split lines into fields and put data into table
    OPEN DATASET v_file_return FOR INPUT IN TEXT MODE ENCODING NON-UNICODE. "Opening the files
    IF sy-subrc EQ 0.
    CONCATENATE text-020 v_lin INTO v_msg SEPARATED BY space.
    CONCATENATE text-021 v_lin INTO v_msg1 SEPARATED BY space.
    TRANSFER: v_msg TO v_file_return.
    TRANSFER: v_msg1 TO v_file_return.
    WRITE:/ v_msg.
    WRITE:/ v_msg1.
    ENDIF.
    ENDFORM. " write_error_log
    with regards.
    sowjanya.b.

  • Approvals are not triggered via DI

    Approvals are still not triggered via DI.
    The only note relevant I was able to find is 915573. Tested with 8.82, still the same behaviour occours.

    Hi,
    You are right. This is still on the schedule that without deadline. Unless you can find this new feature in the roadmap, it will never be available soon.
    Thanks,
    Gordon

  • FMBB Budget Approval workflow is not triggered

    Hi Experts,
    I want to activate the standard workflow for Budget Approval in FMBB t-code. I found two standard workflow templates for this WS12300025 and WS12300026 and I activated it. In both workflow templates start event is maintained as 'BUS0050'  'PREPOSTEDDOCCREATED' .
    But when I am creating Budget document in FMBB t-code, 'BUS0050' 'POSTEDDOCCREATED' is triggering , so the standard workflow is not triggering.
    Then checked in forums, that we should maintain SPRO settings. I maintained the setting in SPRO.(Attachment 1).
    After maintained this setting I am facing an error while creating Budget in FMBB t-code. (Attachment 2).
    Kindly help me on this is urgent .
    Thanks & Regards
    Ayyappan.V

    Ibrahim, The complete statement is:
    If event linkage not activated it (Workflow Instance) will not get traced i.e. in T-Code SWI2_FREQ, thats the reason I have suggested to check error message in SWEL .
    SWEL will always create entry whether linkage is activated or not, the only thing is trace should be on in T-Code SWELS.  Hope things are clear now.
    BR,
    Prakash

  • My Customized Workflows are not triggering

    Hi All,
    I customized workflows.But in SWEL my all customized workflows are not triggering from the last two days..Before it was working..In SWE2 also done properly and SWU3 also fine.
    Please give suggession whereis the Problem?
    Regards,
    Soni

    If you look at the details of your event linkage entry (transaction SWE2) you will find that the "Check function module" field is not empty. The function module, when executed for the event you created, raised an exception - which is the standard way for a check function module to prevent a workflow from starting.
    The check function module could be one set up for a workflow start condition, namely SWB_CHECK_FB_START_COND_EVAL. If so, check the workflow start conditions for your workflow (transaction SWB_COND).
    Otherwise, examine the check function module's code to determine what it checks and why it prevents your workflow from starting.
    <a href="http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4b027453d11d189430000e829fbbd/content.htm">SAP documentation: Using (event) linkages</a>

  • "No receiver is entered" in SWEL when triggered via program.

    Hi WF experts,
    I'm currently working on a workflow with Z business object.
    My WF contains a "wait for event" step. When I launch my WF directly from SWDD. It works (I verify in SWEL and i find receiver data in the details, but when i trigger the event via a program, i get the event trace with the following message in SWEL : (No receiver is entered).
    I'v already verified instance linkage and i'v added enty in SWTYPV for this event with receiver MF (SWW_EI_EVENT_RECEIVE) and type recever EVENTITEM.
    Does any one know why it works with SWDD test tool and not with my program ?
    Thanks for your answers.
    Regards,

    HERE IT IS.
    DATA : wl_objtype TYPE swo_objtyp,
             wl_objkey TYPE swo_typeid,
             wl_event TYPE swo_event,
             wl_xml_cont TYPE swf_xmlcnt,
             ls_swhactor TYPE swhactor.
      CHECK NOT zdva-flag_debloc_av IS INITIAL.
      wl_event = 'DVA_CLOTUREE'.
      wl_objtype = 'ZDVA_BO'.
      wl_objkey = zdva-dva_nb.
      ls_swhactor-otype = 'US'.
      ls_swhactor-objid = sy-uname.
      CALL FUNCTION 'SWE_EVENT_CREATE'
        EXPORTING
          objtype           = wl_objtype
          objkey            = wl_objkey
          event             = wl_event
          creator           = ls_swhactor
        EXCEPTIONS
          objtype_not_found = 1
          OTHERS            = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      COMMIT WORK.

  • Workflow Event not triggering

    Dear SDN,
                     I have created a Workflow and i am triggering through an event . For this have created  ZEvent in ZBOR(Modified from Std. APPR_DOC)and attached the zevent in my screen (HR related template PHAP_CATLOG_PA) through oohap_basic.When I run in Background everything is working fine.But when I run through the Tcode(PHAP_CATLOG_PA). event itself not triggering.Problem is my event is not firing.When I check in SWEL my zevent is showing std BOR.My zevent is not catching my ZBOR.Can anyone help me out with this issue.
    Regards,
    Gopi.

    Hi,
    gopi BOR will always show the standard BOR and you can put a start condition based on that condition.
    after that in first activity you can use your custom BOR and it's methods.
    Hope magic Works!
    Regards,
    Purvesh Patel.

  • PO Failure notification not triggering via Outlook

    Hello Experts,
    We are using SRM 7.O SP05, When PO is created and by mistake user Input the wrong Email address in Header --> Out put. The user is not getting the failure notification Via Out Look. I can able to find the Error message entry in SOST. I have checked the sender Email address also is correct. (in SU01).
    I tried to replicate the same kind of scenario in Q environment. But no failure notification received via Outlook. Is there any setting need to be done.
    Kindly help me to resolved this issue.
    Regards,
    Suneel Kumar

    Hi Rick
    what tcode i'm going to use to check this event container?
    can help me step by step because i'm not fully familiar to this flow..
    i check tcode SO16 under Mail sy.grp i check the send to home addresses of users
    i test it again in SAP inbox i receive notification under workflow for PO release there's also notification coming to outlook the message is:
    Error processing following event linkage:
    BUS2012 RELEASESTEPCREATED WS20000075
    Following error occurred:
    SWF_RUN 594
    Message text:
    Import container contains errors (are any obligatory elements missing?)
    Event container appended as attachment.
    Event linkage not changed.
    Event stored temporarily.
    Events can be redelivered via event queue
    administration (transaction SWEQADM).
    instead of for PO releases, how come different notification sending out?
    thanks.
    Edited by: Marina_25 on Apr 15, 2010 5:16 AM

  • Workflow mail not triggering for PO's to the Manager

    Dear Seniors,
      I am creating a PO and keeping in hold and later on saving the PO. But for those kind of PO's, the manager is not getting the mail for approval. But if i create a PO without keeping in hold with same data, system is triggering the mail to the manager. Why is it so? how can i make the settings to trigger the mail for hold-saved PO's. Please guide me.
    Regards,
    Prasath J

    Hello Prasath,
    Please check your configuration on ERP/ECC
    side in transaction SWETYPV. Here you can enable or disable the
    event type linkage for BUS2012 and for CL_SE_PUR_PO_WF_OUT or any
    customer-specific business object related to Purchase Orders which might
    be in use. If you disable the event linkage for CREATE and/or change
    event, no message will be triggered upon PO creation.
    If this is not sufficient for your business process the usual logic is
    that all Purchase Order message are being sent out when the event
    linkage is active (e.g. you want to send out only some of the message
    types possible). In this case you might want to make use of BAdI
    PUR_SE_PO_INTERFACE_OUT_SELECT (enhancement spot / BAdI)."
    Enhancement Spot: PUR_SPOT_SE_PURCHASE_ORDER
    BAdI Definition:  PUR_SE_PO_INTERFACE_OUT_SELECT
    Interface:        IF_PUR_SE_PO_IF_OUT_SELECT
    BADI definition   PUR_APPL_SE_POCONF_IN_ASYN
    Also in the standard, for the following messages
       PurchaseOrderChangedInformation_Out
       PurchaseOrderERPRequest_Out_V1
       PurchaseOrderERPConfirmation_Out
    we are sending out these information as soon as a purchase Order is
    created. We do not distinguish between the services all of them will be
    triggered.
    Hope this hepls
    Ray

  • Workflow not triggered for BP when start condition's field is set by BADI

    Hi guys,
    I have created a workflow and given the start Event "Changed" of object BUS1006. In this I have given a start condition which triggers this event when a particular field on transaction BP is populated.
    Now the problem is that when I myself explicitly populate the field and press save the workflow is triggered fine, but when I populate that field automatically in a Save BADI (BUPA_GENERAL_UPDATE), the workflow is not triggered. Tcode swel just returns the msg that Start condition returns 'FALSE' for object.
    Can someone please help me in this or let me know where I can find its cause in system.
    Any help would be really appreciated.
    Regards,
    Shaili

    If this is just one field, create your own custom event and code launching it when saving BP with your field changed.
    Maybe event Changed is executed only for changes in GUI.
    If you program your own one you will have 100% control of it.
    Regards
    Radek

  • ESS/MSS Standard workflow not triggered....

    Hi Experts,
             I have small doubt, but why can't I solve this I does't know? Kindly some one help me on this issue.
    Scenario as follows...
            I have copied the standard loan workflow "WS18900041" to my custom workflow. So, Here when I apply loan through portal workflow is not triggered. I have activated the events which are present in loan. But after that also I am unable to trigger the workflow. Through SWE2 / SWETYPV tcode I have enabled the linkage to the portal. When I activate the event in workflow it will be automatically shown in SWE2 / SWETYPV. After all the process I have activated and checked, When I tried to apply for loan and submit the loan I am unable to trigger the workflow else workflow is not getting triggered. Kindly help.... Most Highly importance.... Please reply as soon as possible....
    Thanks & Regards
    Kannan

    Hi Kanan
    I am in the same object now. Can u share me some scenarios how to do this.
    Regards
    Gopal

  • Leave Workflow Not triggered

    Hi All,
             We configured the Leaves through ESS and it was working fine, but abruptly, the Leave Workflow stopped executing. I have maintained the following settings:
    1. In the leave settings in SPRO, "Process Request Using Workflow" option is checked and the WF Id is 12300111 for all the three entries.
    2. Display field for next Agent is checked. In ESS, the manager's name is displayed in the leave app.
    3. Request has to be approved option is checked.
    4. In SWFVISU, TS1230097 is maintained as 
         APPLICATION        LeaveRequestApprover
         DYNPARAM          wi_id=${item.externalId}
         PACKAGE            sap.com/ess~lea
    5. The task TS1230097 is maintained as a General task .
    I tested the application through PTARQ & through ESS, the leave is applied, but the Workflow is not triggered. I checked the WF Tasks in SWIA, but No Workitem exist there. There's no entry in SWEL.
    Can you please suggest, where are we missing to trigger the workflow.
    Cheers!!!
    Umang

    Hi Umang,
    I do not see any problem with your workflow configuration.
    Most probably the problem is with your rule group configuration.
    As advised before, using WEBMO feature, find out what is the right rule group for the test employee (for whom you are applying leave). Then ensure that in the SPRO "Personnel Management -> Employee Self-Service->Service specific settings -> Working Time -> Leave Request -> Processing Processes--> define Absences/Processing Processes" there is an entry for the Rule group and the leave type you are applying for.
    View that entry and ensure that you have all the WF settings as told before.
    Thanks
    Krishna

  • Workflow not triggering on first save

    Hi Experts,
    I have a workflow which sends a notification mail to users.
    A condition is set in the action profiles to trigger the workflow, once the condition is met, mail will be sent to users.
    But,here the issue is workflow is not triggering on first save.Only when i again edit the same page and save it ,workflow is triggering and mail is being sent to users.
    Can anyone pls let me know how to fix this ??

    Hi,
    In transaction SWEC, i changed the setting from Change to Create and tried again but didn work .
    Please let me know, any further changes needs to be made.
    Regrads,
    Ashwini

  • Workflow not triggering automaticaly

    Dear all,
    I have some workflow which are working fine when I test these in SWDD t-cdoe. But on doing actual transaction these workflow are not triggering automatically.
    If I go in t-code SWUE I am again able to trigger it manual for a particular document. But I do not I understand why it is automatically not triggering.
    Objects are:BUS2005-CREATED AND MKPF-ASSIGNED
    Please give u r ideas to sove this.
    Thanks,
    Dhananjaya

    Hi
    1 . Please check the Triggering event given are not to start the workflow if Yes then Check  it is  Active Or   Not  ( IF every thing OK here) then
    2. activate  trace in the trasctinon  SWELS  and execute the transaction.
    3 . Go to transaction SWEL and execute it and check there must be the WORKFLOW with YOUR business object if it is getting triggerd.
    IF Not workflow not triggerd  then check the linkage in transaction SWE2.
    IF above all steps are OK
    Then CHECK configuration in SWU3 transaction (customise workflow setting must be done ) .
    .Thanks
    Deepanker Dwivedi

  • WF not triggering in Quality System

    Hi,
    We moved the Workflow to Quality System, but the event is not triggering.The event linkage is active and workflow customizing has been done.The WF-Batch user is having SUPER user group.Kindly help on this issue.
    Thanks,
    Mohan

    One reason were workflow is not triggered, WF and Event link not enabled.
    Hope you are using BOR QMSM and triggering task for notification created in QM02,
    1)     try to simulate with SWUE and check whether WF is triggered or not for a dummy task created in QMSM
    2)     Check did you made WF Generic  otherwise it will not trigger the WF 
    If you designate your workflow task as a "general task", this means that all users are authorized to start this task.
    To restrict the number of authorized persons, you can assign the task to an object from the organizational plan (organizational unit, job, user,...). This is a general procedure and can be used with all types of tasks. If you assign the task directly to a user, only this person is authorized to start the task.
    3)     check for user authorization
    4)     Check for WF consistence swu5/swu4

Maybe you are looking for

  • An Unexpected Error in JDeveloper 11.1.1.6.0

    Hi, I am facing an error while working in JDeveloper version 11.1.1.6.0 which is as demonstrated below: An unexpected server error has occurred in JDeveloper This program may be unstable, which could result in data loss. Decide how to want to proceed

  • Please help -- SHADOWS APPEAR as BLACK OUTLINES when I EXPORT to PDF

    Hi all, I have designed a product catalog in InDesign. I retouched product in PS and dropped an "outer glow" and "drop shadow" Layer Style onto the products and saved them with a transparent background in a .PSD format. The files were then Placed int

  • Intermittent Dual Display Issue - Random "Detect Displays"?

    Have an MBP w/ Samsung SyncMaster T220, attached via DVI. In recent week, or so, the two monitors will 'fade to blue' (like it will if you attach another display while the MBP is already up an running) then return back to 'normal' as if nothing has h

  • How to retain leading zeros in an excel sheet

    Hi, In my application I need to export the response from a struts action class to an excel sheet. I have done the coding but while exporting to the excel , the leading zeros are getting truncated. If the value is '01' it is displayed as '1' only.    

  • Windows 7 home premium pc keeps powering down after startup.

    Windows 7 home premium pc keeps powering down after startup The only thing I have noticed different is the heat sink fan RPMS rev quicker and seem to stay reved for longer periods. The COMPONENTS ARE DUST FREE. Components do not feel warm to the touc