How to suppress old version WF for Old notifications

Hi all,
We r using the customised WF for notification QM01.We had created the deadline monitor and send mail to corresponding user by checking the deadline, this is the outstanding message to the user.It was working fine.Now we did the changes in the logic for deadline monitoring by adding the notification status in the logic, if it is deleted don't consider to check for deadline and not required to send the outstanding mail.Now the prob is for one notification WF has already triggered with old version in which we didn't considerd the status.And the deadline monitoring messages were kept in loop up 49 times.After dat we did the changes in deadline monitoring by adding the status.Now the notification got deleted but then also the system considering the old version(deadline monitoring with out considering the status) and sending the outstanding messages.How can i manage to deactivate the old version of WF for the old notification it self.
Thanks

HI,
If the workflow instance is no longer required, you can logically delete the workflow through SWIA else you can manually complete the workitem so that deadline is no longer valid.
Regards,
Sangvir

Similar Messages

  • How to get the version no. for service po?

    Hi,
    How to get the version no. for service po?For material po we are getting the version from EKKO-REVNO but for service po Ekko-revno is blank.
    Regards,
    Rachel.

    Hiee,
    It is not like service PO does not have revision.
    REVNO will only exists for any document if amendment is made after releasing it. If in EKKO for all service PO revision number is blank then test if version management is active for document type
    MM->Purchasing->Version management -> External documents
    Here check for your doc type and purchase org version management is active.
    Regs,
    Appie

  • How to suppress Log Shipping alert for a specific database?

    I want to disable log shipping for a database temporarily.   I have disabled the backup job, copy job, and restore job created automatically when log shipping is configured for the database.  However, I cannot disable the Log Shipping alert
    job since there are other databases configured for log shipping.   How can I suppress Log Shipping alert for specific database?  I don't want to disable the log shipping for the primary database since it will delete all jobs and history
    related to the log shipping configuration at the primary, secondary and monitor server instances.

    Too late but this is possible. We just need to set the value threshold_alert_enabled to 0 in the system table msdb.dbo.log_shipping_monitor_primary on the primary server and in msdb.dbo.log_shipping_monitor_secondary on the secondary server.
    I just tested it out and it should work.
    To test this out, perform the below:-
    1. Run exec master.sys.sp_check_log_shipping_monitor_alert will show the same error message that thresholds have been crossed. This is the same script used in LSAlert job.
    Use something like the below command to edit:-
    2. Run the below to change the values:
    update msdb.dbo.log_shipping_monitor_primary
    set threshold_alert_enabled = 0
    where primary_database = 'XYZ'
    Run this for all databases that needs to be excluded from monitoring.
    3. Run the script in step 1 again and it should run now. 
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

  • How to display international version infor for customer when creating SO?

    Hi Gurus:
                Is there any possibility to display the international version information for customer when creating the SO.like customer name / address etc.
    thanks!

    See notes 598197 and 610289

  • How to Implement the Search page for Workflow Notifications?

    Hi All,
    I want to implement the new Search page for Workflow Notifications. Search page containing Company, Paygroup, Source, Initiator, Supplier Name, From date & To date fields. These fields(Poplist & Calendar) are getting the values from different tables and these fields are not in WF_NOTIFICATIONS table only Initiator & dates are there. After selecting the values in all fields or one field based upon these values I want to display the all Workflow Notifications ( Those are satisfy the search criteria only not all ) in Advance Worklist Table RN in the Notifications page. Is it possible to create the Search page based upon the above scenario if Yes Let me know how to implement this search page for Workflow. Page was designed but how to get the sortlisted Notifications and how to pass these values to next page?
    Thanks in advance.
    Edited by: user635152 on Nov 13, 2008 10:53 AM

    Hi Guru,
    I crete the Search page having 5 poplists and select the values from dropdown list and click GO button it serch the records and displays that records in ResultsTable in same page.
    My case, Search page is running fine if I select the values and click GO button page is refreshed without errors but I am unable to displays the records in ResultsTable.
    What I am missing?
    My Select Stmt:
    SELECT * FROM      
    (select wn.nid notification_id
    ,ou.name company
              ,I.PAY_GROUP_LOOKUP_CODE paygroup
              ,'AP' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,I.GL_DATE FROM_TO_DATE
    from ap_invoices_all i
    , po_vendors pv
         , hr_operating_units ou
         , per_all_people_f pf     
         , FND_USER FU
    , (SELECT trim(substr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),
    1,instr(substr(substr(WN.subject,(instr(WN.subject,'Invoice ') + 8),100),1,100),' for'))) inv_no
    ,notification_id nid
    FROM WF_NOTIFICATIONS WN
    WHERE WN.MESSAGE_TYPE = 'APINV'
    AND WN.STATUS NOT IN ('CANCELED','CLOSED')) wn
    where i.vendor_id = pv.vendor_id
    and i.invoice_num = wn.inv_no
    and i.WFAPPROVAL_STATUS = 'REQUIRED'
    and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
    and i.org_id = OU.organization_id
    AND OU.name like nvl(:company_name,name)
    and i.pay_group_lookup_code = nvl(:pay_group,i.pay_group_lookup_code)
    and exists (select ad.invoice_id
    from ap_invoice_distributions_all ad
    where ad.invoice_id = i.invoice_id
    and ad.accounting_date between nvl(:from_date,ad.accounting_date)
                                       and nvl(:to_date,ad.accounting_date))
    and 'AP' = nvl(:source,'AP')
         and i.created_by = fu.user_id
         AND fu.EMPLOYEE_ID = pf.person_id
         AND pf.full_name like nvl(:initiator, pf.full_name)
    UNION ALL
              select po_num.nid notification_id
              ,ou.name company
              ,ps.PAY_GROUP_LOOKUP_CODE paygroup
              ,'PO' source
              ,pf.full_name initiator
              ,pv.vendor_name supplier_name
              ,P.CREATION_DATE FROM_TO_DATE
         from po_headers_all p
         ,po_vendors pv
              ,po_vendor_sites_all ps
              ,hr_operating_units ou
              ,per_all_people_f pf
         ,(select trim(substr(wn.subject,24,instr(wn.subject,' for')-24)) po_no, notification_id nid
              FROM WF_NOTIFICATIONS WN
         WHERE WN.MESSAGE_TYPE = 'POAPPRV'
         AND WN.STATUS NOT IN ('CANCELED','CLOSED')
         and wn.subject like 'Standard Purchase Order%') po_num
         where p.SEGMENT1 = po_num.po_no
         and p.vendor_id = pv.vendor_id
         and p.org_id in(select organization_id
         from hr_operating_units
         where name like nvl(:company_name,name))
         and pv.vendor_name = nvl(:vendor_name,pv.vendor_name)
         and p.AUTHORIZATION_STATUS = 'IN PROCESS'
         and p.CANCEL_FLAG = 'N'
         and 'PO' = nvl(:source,'PO')
         and p.agent_id = pf.person_id
         and pf.full_name like nvl(:initiator, pf.full_name)
         and pv.vendor_id = ps.vendor_id
         and ps.org_id = ou.organization_id
         and ou.name like nvl(:company_name,name)
    and ps.PAY_GROUP_LOOKUP_CODE = nvl(:pay_group,ps.PAY_GROUP_LOOKUP_CODE)
         and trunc(p.creation_date) between nvl(:from_date,trunc(p.creation_date)) and nvl(:to_date,trunc(p.creation_date))
    In CO PFR Code:
    if (pageContext.getParameter("Go") != null)
    OAQueryUtils.checkSelectiveSearchCriteria(pageContext, webBean);
         String COMPANY = pageContext.getParameter("COMPANY");
    String PAYGROUP = pageContext.getParameter("PAYGROUP");
    String SOURCE = pageContext.getParameter("SOURCE");
    String INITIATOR = pageContext.getParameter("INITIATOR");
    String SUPPLIER_NAME = pageContext.getParameter("SUPPLIER_NAME");
    Boolean executeQuery = BooleanUtils.getBoolean(false);
    Serializable[] parameters = { COMPANY, PAYGROUP, SOURCE, INITIATOR, SUPPLIER_NAME, executeQuery};
    Class[] paramTypes = { String.class, String.class, String.class, String.class, String.class, Boolean.class };
    am.invokeMethod("initSearch", parameters, paramTypes);
    OAAdvancedTableBean table = (OAAdvancedTableBean)webBean.findChildRecursive("ResultsTable");
    table.queryData(pageContext, false);
    AM invoke Method():
    public void initSearch(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    WorklistFindVOImpl vo = getWorklistFindVO1();
    if (vo == null)
    MessageToken[] tokens = { new MessageToken("OBJECT_NAME", "WorklistFindVO1") };
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", tokens);
    vo.initQuery(company, paygroup, source, initiator, supplier_name, executeQuery);
    VO Code:
    public void initQuery(String company,
    String paygroup,
    String source,
    String initiator,
    String supplier_name,
    Boolean executeQuery)
    StringBuffer whereClause = new StringBuffer(500);
    Vector parameters = new Vector(5);
    int clauseCount = 0;
    int bindCount = 0;
    setWhereClauseParams(null); // Always reset
    if ((company != null))
    String companyname = null;
    try
    companyname = new String(company);
    catch(Exception e) {}
    whereClause.append("COMPANY= :COMPANY");
    whereClause.append(++bindCount);
    parameters.addElement(company);
    clauseCount++;
    if ((paygroup != null) && (!("".equals(paygroup))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("PAYGROUP = :PAYGROUP");
    whereClause.append(++bindCount);
    parameters.addElement(paygroup);
    clauseCount++;
    if ((source != null) && (!("".equals(source))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SOURCE = :SOURCE");
    whereClause.append(++bindCount);
    parameters.addElement(source);
    clauseCount++;
    if ((initiator != null) && (!("".equals(initiator))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("INITIATOR = :INITIATOR");
    whereClause.append(++bindCount);
    parameters.addElement(initiator);
    clauseCount++;
    if ((supplier_name != null) && (!("".equals(supplier_name))))
    if (clauseCount > 0)
    whereClause.append(" AND ");
    whereClause.append("SUPPLIER_NAME = :SUPPLIER_NAME");
    whereClause.append(++bindCount);
    parameters.addElement(supplier_name);
    clauseCount++;
    setWhereClause(whereClause.toString());
    if (bindCount > 0)
    Object[] params = new Object[bindCount];
    parameters.copyInto(params);
    setWhereClauseParams(params);
    if ((executeQuery != null) && (executeQuery.booleanValue()))
    executeQuery();
    } // end initQuery()
    Please let me know what I did mistake in my code?
    I am unable to find it what I missing and there is no errors but no records displayed in Results Table.
    Please it's urgent.
    Thanks
    Nag.
    Edited by: user635152 on Nov 19, 2008 4:43 PM

  • How to suppress vendor bank account for vendor types

    Hi
    I'll bet this has been asked a few times before but I'm struggling to find anything relevant in theforums. This really isn't a security issue as there is the option to suppress the bank account field in SPRO but I just wondered if anybody had found a work around or proper SAP standard S&A to resolve please?
    The perennial "We need to stop people seeing vendor bank account details for our employees but still can see the 'real' vendors' bank account details!" question has been raised, I've offered the suppress bank account details field (load blunderbus and fire option) but is there anything I can do to refine this?
    This is a fairly old 4.6D system due to be upgraded late next year and there's been no XK03 custom transaction mod made so far as I can see.
    Vendors have been define as EMPLOY,..., etc so the split is there if needed...
    Thanks for your attention - just wanted to see if this was possible?
    Regards
    David
    Edited by: David Berry on Oct 18, 2010 8:15 PM
    Edited by: David Berry on Oct 19, 2010 3:37 PM

    HI
    Well, it was worth a go ;-(
    SU24 in QAS = Check/maintain F_BNKA_MAN Banks: General Maintenance Authorization
    One role assigned to the test user with XK02 in it:
    Manually   Cross-application Authorization Objects                                                                               
    Manually   Banks: General Maintenance Authorization  
    5       Manually   Banks: General Maintenance Authorization 
              Activity                       03                 
    22.10.2010                    SAP trace analysis                                                                               
    Terminal           Task Type  V*              PID      
    Time       13:37:15 BST    Date       22.10.2010      Trans/Rep. XK02     
    user       ZTEST1          client     001             mode       1        
    Host       tauksap_tst     System     AT1                                                                               
    13:37:15.521.278 AUT 0 <- F_LFA1_GEN:ACTVT=02                            
    13:37:15.521.317 AUT 0 <- F_LFA1_GRP:KTOKK=OWDR,ACTVT=02                 
    13:37:15.521.349 AUT 0 <- F_LFA1_BUK:BUKRS=0100,ACTVT=02                 
    13:37:15.521.386 AUT 0 <- M_LFM1_EKO:EKORG=0100,ACTVT=02   
    I'll have a word with one of the developers to see if the program is working correctly
    Have a lovely weekend
    Cheers
    David

  • How to suppress a Security Notifcation for all users

    How can we suppress the notification If you open this document, anonymous usage data will be sent securely to this remote server: To learn more about what this means for you, please click on the 'Privacy and Security' button. check box - Allow collection of detailed usage data check box - Do not show again _________________________________________________________________________________________ __________________________________ I'm looking for a way to tick the box 'Do not show again' for all users perhaps through a registry setting that can be set via GPO? Thanks, Brian

    Well as a workaround you can create an email address/folder and provide this in SOCT and then from this mail folder , setup a rule to forward the mail to all receipients.

  • How to suppress warning in reports for indivdual queries

    Hi Guys,
    I have done some changs with multiprovider and on which there is one workbook has be defined already.
    Due to chagnes in the multiprovider , concern reports<which are attched into workbook> is also affected .
    I repaired this reports but still they are giving warning.
    1. I have tried to suppress into RSRT in message but I am not able to see relevant message number and descriprtion .
    2. I tried RSRT -> Execute + debug -> uncheck 'supress warnig '  --> even I tried generate option after that -->but if I again go and do same procedure in execute and debug -->' the option of 'supress warning ' is again get  checked automatically
    3. In query designer -> I opened releveant query --> Query property, I didn't find any supreess warninn option
    4. In Bex analyser we can do supress warning ,but this I have to make for all concern endusers ,which is not advisable.
    My question is could you please tell me the correct option and procedure step by step.
    1. How can I save setting in execute+dubug -> uncheck supress warning
    2. How can I find in query designer.
    Points will be rewarded.

    Hi,
    Open the work book, there in menu,"Business Explore"> Settings> , you will have "Supress warning messages" , check it and then save your work book and then execute and test.
    If you need further clarification please let me know.
    Assign points if it helps..

  • How to create current version variants for   report using RS_CREATE_VARIANT

    Hi experts,
                      When i am using RS_CREATE_VARIANT to create a variant for a standard report then a message is coming that the 'Created variant is not of current version'. .How should i avoid this. If i want to create a variant of current version then what parameters have to populated in the FM.

    Hi,
    try these..
    FASU_RS_CHANGE_CREATED_VARIANT change variant w/o selection screen - client dependent
    FASU_RS_CREATE_VARIANT         create variant (w/o selection screen) - client dependent
    Arunima

  • How to suppress extra form feed for character report printing using ORARRP?

    Dear All,
    We are using Oracle Application Server 10g (10.1.2.0.2) on Windows 2003 Server and most of our client PC's are Windows XP Professional machines. We are migrating our existing oracle application from 2-tier architecture to 3-tier architecture (6i to 10g). We have installed ORARRP utility for remote direct printing and to a limited extent we are successfull in getting the things work out for our system users, However, we are facing a problem using the ORARRP utility for which we are not able to find a solution till date.
    We have configured ORARRP utility on every user's PC and the printing of bitmap reports is working well. However, while printing CHARACTER reports using ORARRP utility, after the report gets printed, an EXTRA FORM FEED is issued by ORARRP to the printer and because of this the printer stationary skips one extra page and advances to the next page. Please note that this EXTRA FORM FEED happens only while printing a CHARACTER REPORT.
    Has anyone come across such a problem using ORARRP ? How can we avoid this extra FORM FEED from CHARACTER REPORT printing using ORARRP ? Is there any other tool which supports remote direct printing just like ORARRP?
    I shall be highly obliged if anyone could reply to my queries ASAP.
    Regards,
    KrishnaKumar S

    Please help ! I tried the "send_form_feed" and "postscript_dos_print" parameters without success. The extra form feed is always there. Thanks.

  • How to find latesh version available for ORACLE DB.

    Hi,
    Today i came across situation to suggest latest patchset available for 11G for my OS. How to find in systamatic way?
    like 11.x.0.y.
    Regards
    DBA.

    In general you need My Oracle Support (MOS) access https://support.oracle.com/CSP/ui/flash.html with a CSI linked to your support contract.
    Then you can access following docs:
    2. Oracle Database (RDBMS) Releases Support Status Summary [ID 161818.1] gives last patch set availability whateve the platform
    3. Release Schedule of Current Database Releases [ID 742060.1] give last patch set availabilty for each platform.

  • How do I turn off sound for mail notifications?

    Just got my first iPhone (I know, welcome to the 21st Century). I've had Android before this. I have it synced to my work e-mail, but I don't want a sound playing every time I get a work e-mail, because then my phone annoyingly chirps all day at work, when I already get an alert on my computer for the new mail. I only want to be able, when away from the office, to do a quick check and see that I have a new e-mail.
    In Sound, I selected "None" for New Mail, both for the Alert Tone and the Vibration. In Notification Center, "Mail" shows up in the "Do Not Include" list. Yet still, my iPhone plays a tone every single time a new e-mail comes in. What am I doing wrong?

    Settings > Notification Center > Mail > Select the mail account (if more than one) > Alert Sound > None

  • HT5961 How do you change phone number for keychain notifications

    Changing contact number

    Hi Traveling g,
    Welcome to the Support Communities!
    The article below may be able to help you with this.  Click on the link to see more information.
    Frequently asked questions about Apple ID
    http://support.apple.com/kb/HT5622
    Click on My Apple ID to access and edit your account, including telephone numbers.
    Cheers,
    - Judy

  • How to suppress zeroes in table control?

    friends,
        by default, i am getting the initial values (zeros 0.00 for qty. fields) for the fields that am displaying in table control...how to suppress the zeroes (fields for which no values are there) in table control? any option like we have in alv (no_zeros) avbl? thanks all

    u are getting 0.00  bcos these are the field properties , so u have to create a new field for ur requirement.
    check the field attributes in SE51,
    DICT = DEC Format.
    Program = No Check for leading ZEROS.
    Regards
    Prabhu
    Message was edited by:
            Prabhu Peram

  • How to get item field values for old versions?

    I need to be able to query old field values from previous versions of items in a SharePoint list. I can't execute code on the server (it needs to work with SharePoint Online/O365 for a start).
    So far the ONLY API I've that lets me do this is the lists.asmx GetVersionCollection SOAP call.
    This lets me specify a single field name and returns an XML structure with the values for the various versions, along with the modification time and who made the change - but NO reliable way of actually identifying *which* version (i.e. an ID or label). That
    is, if I know I need to fetch the Title value from version 512 ("1.0") of item 1 in list "Documents", I don't see how to reliably parse the results to determine which entry is version 512. While they may be returned in order, in many cases
    the entries are actually missing when there was no field value present (or perhaps when the field hadn't been created yet). I've tried comparing the Modified date to the Created date of the corresponding FileVersion item (which I can get via CSOM or REST),
    and while it works some of the time, it's not reliable. I've also looked at the output from the lists.asmx GetVersion API but I don't see how that's useful either, as the Created property for all versions always seems to be just the date the file was originally
    created.
    It does seem odd to me that there's not a neat way of doing this - if I need to return information for several fields but just for a single version, I have to make a whole lot of requests that return far more info than I need, and then I need to figure out
    how to parse the returned text in the case of, say, multiple-value taxonomy fields etc.
    Anyone tried doing anything similar here?
    Thanks
    Dylan

    try these links:
    https://support.office.microsoft.com/en-us/article/Track-and-view-version-information-for-SharePoint-list-items-2d69d936-fb0b-4c84-830e-11708e6ec317?CorrelationId=f87cf6ea-8cbf-446a-a4a0-e2c3a86b3425&ui=en-US&rs=en-US&ad=US
    https://social.technet.microsoft.com/Forums/en-US/e48ff216-7ed1-4b20-9f21-d496b1583eea/how-to-get-item-field-values-for-old-versions?forum=sharepointdevelopment
    http://sharepoint.stackexchange.com/questions/20019/get-meta-data-from-a-previous-version-of-a-document-through-webservice-in-moss-2
    http://sharepoint.stackexchange.com/questions/121594/getting-information-from-previous-versions-of-a-sp-list-using-csom
    Please mark answer as correct if it is correct else vote for it if you find it useful Happy SharePointing

Maybe you are looking for

  • Lightroom crash in Develop module with RAW files with sidecar files from ver 3

    The issue probably has to do with the differences in settings between the two versions but I figured I would document what I am experiencing.  I am using the 64 bit version of Windows 7. I imported a group of pictures with the XMP sidecar files gener

  • Error While generating Web Service Proxy using Web Service Action in MII 12

    Hi All, We are using the Web Service action block in BLS transaction to call a web service from an external legacy system. When we provide the WSDL in the action block configuration and click Next we can see the Port and Operation of the web service

  • Problem creating projectors in OS 10.6

    I working with Mac OS 10.6 and Flash in CS3 with 12g of RAM. Before upgrading my OS last year I could make swf files as well as IBM projectors (exe) and Mac projectors from my large Flash docs. However, in OS 10.6 I get an error message when trying t

  • CC Bridge -- Output modules installation not working

    (Had this in an "answered" response. Trying as new question.) Hi, I am having a problem with having the Output Module work as well. According to the instructions I have done everything correctly. Install Adobe Output Module I: Copy the Adobe Output M

  • False Duplicate Problem

    Out of the 1207 tracks in my iTunes library, 154 appear to have duplicates (show duplicates reveals 308 titles). However, it would seem that these are not actually duplicate files at all. If I pull up the info for a track and its "duplicate", they bo