Workflow for QM notifications

Hi Gurus,
I have activated the workflow template WS24500047,
I have created QM notification but I have not received any email in my SAP Inbox.
I have done the agent assignment also. But still i am not getting the email from my inbox.
Is there any transaction for activating the Workflow for the client itself apart from activating the workflow for the workflow WS24500047.
Thanks and regards
Murugesan

Make sure that all the foreground task's in the workflow template are General Tasks or not and even check whether  the workflow template is made general or not.
If not please make them as general task from PFTC  txn
1. Goto PFTC , select workflow template and then specify the 8 digit workflow template id.
2. Open in Display mode and then on menu  select Additional Data -> Agent Assignment ---> Maintian ---> General Tasks
Save and Exit and now try to refresh teh buffer by using the Txn SWU_OBUF and then click Shift +  F1
and now you execute the workflow.

Similar Messages

  • Need help in AP Invoice Workflow for Email Notifications

    Hi,
    Kindly a Urgent help is needed in Oracle AP Invoice Worklfow
    There is existing functionality of Attribute Timeout Days for AP Invoice Notification is set as 3
    So there is requirement after Timeout of 3 Days 3 Times Emails needs to be send.How to approach for that scenation?
    Any help will be needful for me?

    Thanks.
    But i can not use this table to pass th value in BDC as i am using standard report RFBIKR00 to create BDC session which takes values from structures only like BLFA1,BLFM2,BLFB1 etc.
    I need such structure for email id field.

  • Email Notifications through workflow for all Approved and Rejected Orders

    hi,
    i have to send Email Notifications through workflow for all Approved and Rejected Orders to the user who have submitted the order for approval.how could it be done.please send ur solutions.
    regards
    yesukannan

    Hi,
    An option would be use Oracle Alert. Create an event based alert on the table where you have order approvals or rejections. This alert will be raised after inserting or updating this table. Create an action linked to this alert, and choose message as action type.
    This setup can be done under Alert Manager Responsibility.
    Regards,
    Ketter Ohnes

  • Step by Step workflow configuration required for PM Notification

    Hi All,
    as per our requirement we need to trigger workflow when PM Notification Status will be change (Event will trigger for approval when sombody manually change the workflow status)
    Kindly guide me step by step for configuration of that

    not answered closing thread

  • Need workflow config step by step for PM Notification change status

    Hi All,
    as per our requirement we need to trigger workflow when PM Notification Status will be change (Event will trigger for approval when sombody manually change the workflow status)
    Kindly guide me step by step for configuration of that

    try to do like this
    1. Find a Enhancement spot for the Txn IW22 and check whether that enhancement is getting executed while trying to change the PM notification.
    2.once you are sure that the user exit is getting executed then by using the FM SAP_WAPI_START_WORKFLOW trigger the workflow by passing the workflow template to the FM...
    3. But before doing the second point develop the workflow template and make sure you have create a Z bor to implement your own logic.. or find a standard BOR which has the event CHANGED and if at all you have any standard BOR then use that BOR's event , I mean rasie the event CHNAGE from the user exit you found by using the FM SAP_WAPI_CREATE_EVENT

  • Std workflow for Parked Invoices?

    hi guys
    are there any std workflows for parked invoices? Our requirement is that once the Finance clerk creates a customer or vendor invoice he should only be able to park it and not post the invoice. Once the invoice is parked then the system should trigger a workflow and a notification neeeds to be sent to the approver to approve the invoice. Once it is done the finance clerk will post the invoice.
    I switched on the event trace and did a trace on while creating a parked invoice. No event is triggered when the document is parked. If i post the document the event POSTED of object FIPP is triggerd. So since we dont have any std events raised when a document is parked is it possible to have a workflow?

    Hi,
    The event FIPP.CREATED is raise via the customizing (SPRO)
    Financial Accounting -> Financial Accounting global setting -> document -> document parking -> create workflow variant for parking documents.
                                      Assign co.code to a workflow variant for parking documents.
    Have a look at ws10000051.
    Regards,
    Ronit.

  • Workflow for PR release

    Dear Experts,
    We have implemented SAP standard workflow for PR item release i.e WS00000038, when I reject a PR notification is not sent to initiator.
    If I see In SWEL - When a PR item is rejected system is picking up step "PR item significantly changed" instead of "Item release cancelled"
    Request your suggestions in this regard.
    Thanks,
    Uzair

    Hi,
    Please see the below thread, it may help you.
    Re: Trigger Purchase Requsition Workflow trigger after purchase req. changed

  • Regd Workflow for a new custom page

    HI ,
    We have created 2 pages for some functionality where in user can login n serach for a person and update certain attributes like his source/company, assignment category etc.
    First page he can searach the person and after search results come in, he can click on a link and go to the next page where he can edit the attributes n submit.
    Now after updating and submitting the page, we have a reqt to send notifications to the initiator in case the user has approved the txn or rejected or sent for correction. But we dont know how to achive it with the 2 pages n no workflow.
    How to launch a workflow for this ?
    or is there a way we can send notification from backend without using workflow n it shud still come in the worklist of a person.
    Regards,
    Preeti

    Hi Preeti
    DECLARE
    l_itemtype VARCHAR2(30) := 'XX_TEST';
    l_itemkey VARCHAR2(300) := 'TEST';
    BEGIN
    Begin
    wf_engine.createprocess(l_itemtype, l_itemkey, 'XX_MAIN_TEST');
    Exception
    when others then
    dbms_output.put_line('Error in create process:' sqlerrm);
    End;
    BEGIN
    wf_engine.setitemuserkey(itemtype => l_itemtype
    ,itemkey => l_itemkey
    ,userkey => 'USERKEY: ' l_itemkey);
    EXCEPTION
    when others then
    dbms_output.put_line('Error in set userkey process:' sqlerrm);
    END;
    BEGIN
    wf_engine.setitemowner(itemtype => l_itemtype
    ,itemkey => l_itemkey
    ,owner => 'SYSADMIN');
    EXCEPTION
    when others then
    dbms_output.put_line('Error in set owner process:' sqlerrm);
    END;
    BEGIN
    wf_engine.startprocess(l_itemtype, l_itemkey);
    dbms_output.put_line('Process started');
    commit;
    EXCEPTION
    when others then
    dbms_output.put_line('Error in set owner process:' sqlerrm);
    END;
    END;These are the details of the functions used
    1> wf_engine.createprocess
    This API creates a new runtime instance of the workflow process, Pass the item type and item key for the workflow.
    2> wf_engine.setitemuserkey
    Use this API to mark the new runtime instance of the workflow process with an
    end–user key
    3> wf_engine.SetItemAttrText
    Use this API to set values for the item type attributes defined for workflow process .E.g.: Email ID, Description defined in the workflow.
    4> wf_engine.setitemowner
    Use this API to set the value of owner (Of Workflow)
    5> wf_core.context
    In case of exception, it will help in locating source of an error.
    6> wf_engine.startprocess
    Use this API to invoke the workflow for the item type and item key specified.
    Ajay

  • Error in event receiver in workflow for PO release strategy

    Hi Expert,
    I am trying to trigger an email through workflow for PO release. I have setup following
    In SWETYPV,I have check marked on Type linkage active and Enable event queue. Status no error.
    In PFTC, under Triggering events, Object type BUS2012 is green light
    When i create the PO in my SAP inbox, i get notification, however, i getting this error u201CERROR IN EVENT RECEIVER".
    Also, how can i send the notification to the user's outlook inbox? Your help will be appreciated.

    laurarice wrote:
    Hi Expert,
    >
    > I am trying to trigger an email through workflow for PO release. I have setup following
    >
    > In SWETYPV,I have check marked on Type linkage active and Enable event queue. Status no error.
    > In PFTC, under Triggering events, Object type BUS2012 is green light
    > When i create the PO in my SAP inbox, i get notification, however, i getting this error u201CERROR IN EVENT RECEIVER".
    > Also, how can i send the notification to the user's outlook inbox? Your help will be appreciated.
    I suppose, you are using the workflow WS20000075. Add sending email as an additional task to the same workflow in SWDD.

  • Workflow for Document Approval

    Hi all,
    I'm a newbie to SolMan and is trying to figure out how to implement a workflow for document approval. A similar question has probably been posted in the past, but I can't find a definite solution, only some hints.
    Basically, what we're trying to achieve is the following:
    When a document is uploaded using SOLAR02, and the creator of the document changes the status to ready for sign-off, we would like to trigger a workflow which will send an email to a couple of persons who are responsible to approve the document. We already implement the digital signature, we just want to add an automatic email notification to be sent to the approvers.
    Based on my research, it seems that this is not supported by SolMan and hence we have to do a custom development.
    There's an object key called SOLMANDOC and we should raise an event (something like SIGNATURE_PROCESS_START) to send an email notification to the approvers. Can somebody confirm whether my understanding is right ? Does anybody know the name of the BADI that we can modify to achieve our goal ? 
    FYI, we're using SolMan Rel 7.01 SP 19.
    Thanks in advance
    Lara

    Hi Phil,
    I'm facing with problems with creating a simple 2 steps release strategy.
    the problem is I cant approve the last step of the release.
    This is what I did:
    In spro Digital Signature->Signature strategy:
    in "Define Authorization groups" I create this entries:
    1. EING
    2. VERIF
    in "Define Individual Signatures" I create this entries:
    1.  S1   EING
    2.  S2   VERIF
    in "Define Individual Strategies: I create this entries:
    SigStrat: ZSIGSTR
    Signature Method: R
    Display comment: X Required
    Display Remark: X
    Display document: X
    Verification: not checked
    in "Assign individual signatures"
    CtrIn  Indiv.SIG.      AGrpDIG
    1          S1               EING
    2          S2               VERIF
    Display Predecessor for Ctrln is 2 is 1
    for "Display release statuses"  an entry with one line with the value 1
    and in "Display individual signatures there 2 entries 1 and 2.
    in spro "Define Document status schemes"
    stat scheme "ZSIGSTR"
    4 status:
    Status                 init status      Sequence    Low     High       lock         Signature schma  End status         Cancel status
    COPY_EDITING       X                  10           10       20          -                    
    REVIEW                                     20           10        40        X                    ZSIGSTR         RELEASED    DECLINED
    RELEASED                                30           10        40        X                   
    DECLINED                                  40           10        20             
    I created two roles with object c_sign_bpr one with the value "EING"   and the other with the value "VERIF"
    I assign this status scheme to a document type in my project.
    I tried to release a document the first step was the author of the document move the status to "REVIEW" and I got a window that i need to enter my password and it worked ok.
    The problem is in the second step that I need to release the document (now is in a REVIEW status) When I press on the icon in order to release I didn't get the option to release only to cancel there is no "V" option in the small window.
    Can you please tell me if I did a correct customization? also can you tell me if my problem is maybe missing authorization? Can you direct me to reading material or to an example?
    Best regards
    Lior Grinberg
    Edited by: Lior Grinberg on Nov 28, 2011 6:22 PM

  • Can a workflow e-mail notif. only show fields that have changed?

    I'd like to send an e-mail to an end user whenever any field in a Solution has changed. The e-mail notification workflow for my Solution works and starts out like this:
    (PRE('<ModifiedDate>') &lt;&gt; [<ModifiedDate>]) AND...
    However, I run into max character limitation in the e-mail message body. (will look at ToChar next) What I tried to do was display the new and previous values for the fields. This worked till I reached the char limits. Even if I could key in all the lines of characters necessary for this, the mail recipient would have to carefully go through all the fields and compare them to see which one(s) has changed. This takes too much time for the end user to do.
    Is there I way (using a single workflow) to display in an e-mail only the fields that have changed? I've looked through the posts and have not yet found an answer. Thanks.
    Edited by: user11167975 on Jun 16, 2009 1:34 PM

    You can resolve this by creating One workflow for each field or a small group of fields you want to track. Only thing is the user may receive more than one email reguarding the same Solution.

  • Vacation Rule works for ALL but not for particular notification in Item typ

    Hi,
    I have a situation where Vacation Rule is Ignored when choose the select option in notification page of vacation rule and notifications were being sent to Original Approver (who created the vacation Rule) instead of delegate.
    Vacation rule is working perfectly when choose the notification as ALL but is not working when given a particular message(Timecard Approved,Approve Requisition).
    Below is some example of this inconsistent behavior:
    1. Selected Item type as OTL Workflows for Employees, For this Item Type there are 3 Notifications as
    TIMECARD_APPROVED,ERROR_MESSAGE,TIMECARD_APPROVAL_INLINE in select opition.
    If i select the TIMECARD_APPROVAL_INLINE notifications are going to delegate, and for TIMECARD_APPROVED not going to delegate.
    2. Selected PO Approval, It contains only one Notification(PO_PO_APPROVE). So it is working fine.
    3 Selected PO Requisition Approval,it contains the 4 notifications.
    PO_REQ_APPROVE_SIMPLE_JRAD, PO_REQ_APPROVE,PO_REQ_INVALID_FORWARD,PO_REQ_NO_APPROVER.
    If i select the PO_REQ_APPROVE_SIMPLE_JRAD notifications are going to delegate, and for PO_REQ_APPROVE not going to delegate.
    Any inputs on this.
    Version 11.5.10.2 RUP 6.
    Regards,
    Ajith

    Hi,
    on problem I spot is that all your components created by the forEach loop have the same ID value. I suggest you change the ID to e.g. id="soc_#{item.index}" for zhe select one choices. In addition, I don't see where you refresh components after the change
    Frank

  • Workflow for marketing plan approval

    Hello everyone,
    Does anyone know if there is a standard workflow for approval of marketing PLANS (I don´t mean campaigns)??
    Best regards,
    Efrain

    Hi Jaya,
    I haven't used this particular workflow but hopefully the following is of use:
    - Email to initiator- the likely explanation is that the workflow has not identifed the recipient's email address. Follow steps 4 & 5 from the Blog and this should resolve the issue.
    - Cancelled Event - The wait step listens out for the triggering of the corresponding event on the BOR object.
          i.e. for this workflow wait step 164 is listening out for CANCELLED to be raised on that particular instance of BUS2010020.
          If this is triggered that branch of the fork will be triggered.
    - Locked/Rejected - There is no step (that I can see) that notifies the initiator that the campaign has been locked.
      However you can add your own Send Mail step(s). An alternative approach would be to have additional branches that listen for the  BUS2010020.locked and the rejected events and then have your Send Mail steps, however this is probably overcomplicating the solution.
    - Schedule condition and start condition - Again I haven't used campaigns yet but in the Blog they are using the Marketing Project Campaign BOR Object status profile and status table  - look at object BUS2010020 in SWO1.
    I hope that this is of use.
    Best Regards,
    Trevor

  • Workflow for Predefined Performance Management Process

    Hi All,
    We are in process of implementing Predefined Performance Management to our client, as I know we donu2019t have workflow for predefined performance management, but I saw below thread:
    Performance Management Process - Workflow between participants
    Please give me more clarification about configuration of Workflow for PMP, we need e-mail notifications only when ever manager is going to do some status change like approve planning phase, reject planning phase etc.
    We are expecting these notifications not through portal only employees e-mail account, can you tell me where the location of the configuration is?
    Thanks in advance.
    -Abhi

    Hi,
    The pre-defined is not ment for changing by anyone. The template is generated and the settings are as is. You would need to go to the phap_catalog to change the template (but that option is disabled for PMP templates). Theoritically you would need to change the status flow tab and select the correct workflow there. The information workflow is standard delivered for use in the flexible one.
    So, yes you probably are able with tricks to get it working in PMP but it is not supported by SAP.
    Regards and Groetjes,
    Maurice Hagen

  • Customise Subject Line for Email Notifications?

    I am using FormsCentral to receive Course Submissions. 
    Because Gmail groups all emails with identical Subjects & Senders, I need to be able to differentiate the Subject line of the Email Notifications, to include a unique field identifier (such as email address).
    Is there a way of doing this?  This would mean a vastly improved workflow for me, if the emails coming in are "unthreaded" because of Subject Line uniqueness!
    Thanks, Peter

    Wenlan...
    please can we add this to the Feature Request List.
    Every notification generated by the form arrives with an identical sender and Subject.  Gmail reads them as part of one long thread, and there is no way to separate the items in a single thread without changing the default Email settings.
    I need either the Submitter's name, or their email plus the date of form submission to appear in the Subject Line of the Notification.  This would be a MASSIVE plus.  The use of special shortcodes for such notifications is a feature offered by parallel industries, such as ZenDesk, where each support request can be configured to show custom info.
    I hope you can prioritise this feature request.
    Peter

Maybe you are looking for

  • Can't figure out how to import anything... super frustrated

    I've been watching YouTube videos as well as reading tutorials and I can't figure out how to import a single photo. This is what my screen looks like - http://i.imgur.com/kODcL9t.jpg Everything I watch or read, it appears I need to click Import > sel

  • Invoice Verification process with multiple payments

    Please advise us on the Invoice Verification process in case of multiple payments required  for single Quantity Purchase Order Lines. [ i.e. If the quantity of Purchase is 1 and we need to process  multiple invoices involving partial amount of the PO

  • Which is better for business Mail or Entourage 2008?

    I am new to Mac. Any advice on the better app for emails & business? does Mail use mbox? where does it store the email files? Thanks a lot in advance...

  • It's that time of the sea

    Time to spend money. I don't know what player I should buy. I tend to like Creative as a company so I believe my purchase for an MP3 player will be from them, but I'm willing to buy from another company if the player is good. I'm hoping to spend less

  • SO Exception in Oracle 8.1.6

    Hi, I'm trying to create Connection Pool for my Entity Bean.. I'm using OracleDriver in weblogic.jar .. DBURL - jdbc:oracle:thin:@localhost:1521:ORCL Driver - oracle.jdbc.driver.OracleDriver properties - user=system server=localhost when it targeted,