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

Similar Messages

  • 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

  • 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.

  • 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.

  • PDF Not Sending via Outlook With Multiple Profiles

    Hello,
    I'm having an issue with the "attach to email" function under the file menu.
    When I choose “Attach to Email”, new message is created in Outlook. When the message is sent it does not appear in the Outlook “sent” folder. Nor does it save to “drafts” when closed and saved. Recipients of email do not receive the message.
    Everything works fine when having only a single profile in Outlook. Problem only occurs with more than one profile when the setting:
    "When starting Microsoft Office Outlook, use this profile:" is set to "Prompt for a profile to be used". There's no problem when having the setting set to "Always use this profile". So it seems to be getting confused about the profiles. The wierd part is that after removing a profile and setting the choice back to "always use..." the mail gets sent and the recipients receive the messages. So it's almost like after hitting, "send" Adobe or Outlook are hanging in the background until "always use..." is set, but I haven't noticed any processes popping up in task manager.
    Observations:
    “Attach to Email” works when having only one profile in Outlook.
    Problem occurs in Acrobat 9
    Problem occurs in Reader 9 and X
    Once profile is removed, messages are sent and received by recipients
    Thanks for any information or help!

    Hi,
    As per the description, I understand that it's an issue about CRM Online for Outlook.
    This is the forum to discuss questions and feedback for Microsoft Office client. To get better assistance, I would suggest you to post in
    Microsoft Dynamics CRM Forum, where you can get more experienced responses:
    https://community.dynamics.com/crm/f/117.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Workflows not triggered when documents are created in Doc Set via Content Organizer

    The following is my scenario:
    A document set (containing several documents) is created in Library A on Site A
    Using Send To, the Document Set is sent to the Drop Off Library on Site B (a different Site Collection)
    A Content Organizer rule then moves the Document Set and its documents to destination Library B
    In Library B I have defined a workflow (using Visual Studio 2012) that is triggered when new item is create
    When the Document Set arrives in Library B from the Drop Off library (i.e. when the Content Organizer moves the Doc Set to Library B), the workflow is triggered (and executes) on the Document Set, but it is NOT triggered on the documents within the Document
    Set.   How can I get the workflow to trigger on the documents within the set when they are created via the Content Organizer rule?
    The interesting thing is that if I manually add another document to the Document Set in Library B, the workflow is triggered on that document.  It just does not trigger when the documents are created via the Content Organizer.

    Hi,
    In edit Content Organizer rule page, I see there is an option as Automatically create a folder for each unique value of a property:
    However, unlike the drop down used in the property based filters above, this drop down *only* contains properties that are required by your content type. 
    This is done to prevent adding folders that have no values for a property. 
    If you need to put similar documents to the same folder, you could consider making use of this feature.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Notification User-Exit not triggered

    Hi all,
    We have configured the system to automatically create a notification when creating an order (Define Notification and Order Integration)
    However, when saving the order (without accessing the notification) we find that the Notification save user-exit (QQMA0014) is not triggered.
    Has anyone found a work-around for this?
    Also posted [here|http://www.sapfans.com/forums/viewtopic.php?f=7&t=328408]
    PeteA

    Pete,
    It is a common issue. The logic of not calling this exit being that it can prevent notification save and that is not desirable when created in conjunction with the order.
    No specific workaround that I know. Depending on what you exit does it might be possible to duplicate the logic into one of the order exits/Badis. Alternatively into a notification exits that is called - generally at create rather than at save - QQMA0025 for example.
    -Paul

  • Delivery date not getting recalculated while approving via outlook

    Hello,
    After creating a shopping cart and if we approve after say 3 days via SRM portal the delivery date gets recalculated and takes into reconsideration these days and this is the value that gets populated in the purchase order
    But if the approval is via "OUTLOOK", the delivery date is not recalculated and the old delivery date is sent into the PO.so sometimes the delivery date becomes in the past.
    Although BAdI takes into consideration delivery time+lead time calculation for SRM portal approved shopping carts it is not taking into consideration for OUTLOOK.
    Is there any solution for this
    Regards

    Hi JJ
    BADI BBP_DOC_CHANGE_BADI- BUS2201 . while creating PO try to validate them if you are in ecs mode
    i believe standard SAP dont recalculate delivery date while creation of PO.
    regards
    Muthu

  • RBDMANI2 Idoc Reprocessing IDOC Failure Notification

    Hi SAP Friends,
    I developed an inbound interface for LIV electronic invoice(MIRO) with basic type INVOIC02. At present everything going smooth.
    i scheduled a background job with the program RBDMANI2 to reprocess the failed IDOCS. i.e if any failed idocs required SAP side changes, users will complete the changes. Then the scheduled job will process the failed IDOC.
    IDOC will process if corrected data is satisfying else IDOC will fail again with Status 51.
    Now the failed IDOC notification we are not getting any notfication.
    If IDOC is failing first time idoc failure notification will come. At that point Object Type IDOCINVOIC & Event INPUTERROROCCURREDMM is triggering.
    When i am reprocessing through the scheduled job of program RBDMANI2 , i am not getting any failed notification.
    Can anyone help me out where i am missing the event. i need to activate any other event linkage for the reprocessing.
    I tried with SWELS, i did not get any event when i execting the program RBDMANI2.
    Appreciate your help and valuable inputs.
    Thanks & Regards,
    Srinivas Bhavanam

    Srinivas, per my understanding the failure event is only triggered once. You can attest this yourself by executing the associated workflow.  If you select the process option and all errors were not addressed, the current work item remains active ; eventually the error message will be changed in case the IDOC is now failing for another reason.  There is only one workflow instance for the same IDOC  ; the failed batch processing does not generate any new workflow or IDOCs, it only updates the current instances (workflow) and add an entry to the IDOC status table (EDIDS)

  • Error Removing SharePoint Task Attachments via Outlook

    Hello,
    I'm having some trouble with my SharePoint (2010) task list when handling attachments via Outlook (2007 SP3). I created a set of simple Outlook macros for updating SharePoint tasks. I can create and update the tasks without issue and even attach files to
    the task which successfully sync with SharePoint. The error comes when attempting to remove the attachment:
    Task 'SharePoint' reported error (0x80004005) : 'One or more items failed to copy. Changes that were made to their attachments are not compatible with the server. The failed items were moved to your Local Failures folder and replaced with copies from the server.
    If you need assistance troubleshooting items in your Local Failures folder, a Help topic is available at the following address: http://go.microsoft.com/fwlink/?LinkId=70300. For details, see the log file .'
    At first I figured it was my macros so I manually created a SharePoint task and attached a file in Outlook. When I manually attempted to delete the file I received the same error. Researching the error lead to two issues: uploading PDLs and Assigned SharePoint
    contact missing valid email. I checked for both and neither are the case.
    As info, the SharePoint list was connected to Outlook per the instructions found on other pages. Is there some limitation to removing task attachments in SharePoint? Any help you can give me would be appreciated.
    Best

    Hi,
    For your issue, it can be related with attachments in the task item. Please make sure attachments have subject that not ends with a dot.
    Reference:
    http://stackoverflow.com/questions/22472121/synchronizing-tasks-from-sharepoint-list-to-outlook-task-list
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Events not triggered

    Hi,
    We have created a custom workflow for notifcation purpose when shopping cart is fully approved. We are working on SRM 5.0 and classic scenario is implemented.
    To start this workflow we used event "FinishedApproval" of BO BUS2121. But this event is not triggered in system when shopping cart is fully approved.
    No events are registered in event trace too.
    when event is triggered using SWUE, workflow is started as desired.
    We are using N-step SC approval workflow and it is working perfectly fine. Notification workflow is desired to start after completion of approval workflow.
    Kindly provide some solution for this issue.
    Regards,
    Brajvir

    Hi Maksim,
    I meant none of the click events in the DOM are triggered while loading sap.m library as dependency via Component.js but works fine while the sap.m library is loaded via bootstrap.
    I supposedly think the events are bounded before the DOM is loaded but I m bit surprised with the behavior since there nothing changed in the structure apart from sap.m library loading from different location.
    Thanks,
    Ajain

  • Change in Quota at Exchange Server does not reflect in Outlook

    I have changed the quota for a database on the exchange server from the default 2 GB to Unlimited and even restarted the information store service. The user is able to receive emails and send them as well. However in Outlook the message still persists that
    users quota is 2 GB. Have restarted Outlook several times. Can anyone shed some light why this may be happenning. Also what is the default interval in which the information displayed by Outlok changes after a change at the exchange server?
    Ron
    Ron

    Hi RonMen,
    The change of mailbox quota will not reflect in outlook immediately,  the update occur every 30 minutes by default.
    Updates can be triggered either manually by the user or automatically.
    The following user actions will request the server to update the properties :
    1. Emptying Deleted Items
    2. Emptying a Folder (via the button in the ribbon’s folder tab or right-click on folder)
    3. Permanently deleting (shift-delete) an item
    4. Closing the Archive / AutoArchive dialogs
    There is a more detailed article for your reference:
    Mailbox Quota in Outlook 2010 - general information and troubleshooting tips
    http://blogs.technet.com/b/outlooking/archive/2013/09/19/mailbox-quota-in-outlook-2010-general-information-and-troubleshooting-tips.aspx
    If you have any further questions, please let me know.
    Best regards,
    Eric

  • Process chain notification gets triggered on Success?

    Hi,
    I have enabled the process chain failure notification for our key process chains. However we have noticed that the process chain gets triggered even if the process chain is run successfully.
    I am ONLY using the notification on ERROR message and NOT on success message.
    Any idea why the process chain gets triggered when the process chain is run successfully? am i missing something?
    Cheers

    Hi there,
    Why don't use another functionality of sending messages through the transaction RSPCM
    In there, you can add the chains you wish to monotorize and click on "Plan Monitoring (F7)" and schedule a job.
    With this method only chains with errors gets triggered.
    Diogo.

  • 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

  • Emails are only being delivered to the WebOutlook inbox and not my desktop outlook

    1.  Big Problem:  How do I get emails sent to my primary email address (name @ wealthblush dot com hosted by Go Daddy) to go to both the
    Outlook Web App inbox AND the inbox of my desktop Outlook 2013? They only go to
    Outlook Web App and not my desktop Outlook 2013.
    How is the email account configured in Outlook (POP3, IMAP or Exchange):
    POP/SMTP is for the user @ wealthblush dot com - this is the one where the email ONLY goes to the Outlook Web App, but not into Desktop Outlook 2013.
    IMAP/SMTP  is for the user @ charter dot net email. Emails go to both clients, but if I delete on one client it is not deleted on the other.
    Exchange/ActiveSync is the outlook.com email and it only goes to my desktop Outlook.
    I'm not getting any error messages. Mail is being delivered to the user @ wealthblush dot com, but only to Outlook Web App and NOT my desktop Outlook.
    2.  How can I change the inbox an email account puts incoming emails into? I read somewhere the way to do this is to create a search folder? This question is actually in advance of fixing
    question number 1 above.
    3.   I don't know how I should configure my emails with the new Outlook 2013 now being in the cloud:
        - I have an @ outlook dot com email I setup when MS came out with the free outlook dot com (hotmail), but I never used it because the reminders didn't work the same as in desktop outlook (not being able to snooze for a few hours
    or days or weeks if I remember right and the way we get the alerts too).
        - I also have an email with my ISP (@ charter dot net) which is a mix of personal and business emails. I've had this account for over 10 years.
        - Finally, I have a business website (www dot wealthblush dot com) hosted by GoDaddy with one real email @ wealthblush dot com. I've already setup the aliases for several other emails in my new office 365 account (support,
    sales, webmaster at wealthblush dot com) which are configured to pass into specific folders using Outlook 2013 Rules in my desktop outlook. I'm not sure if those rules are replicated into the office 365 account.
    I still want the aliases to go into those folders like before.
    4.  In the case of my outlook.com email, they do go to both inboxes (on the web and desktop), but when I delete an email from one place, shouldn't it get deleted in the other place as well? How do I get them to synch?
    5.   And then there's my existing .pst files. I have 4 of them with old emails I've saved over the years that takes up just over one GB. I save these .pst files to DVD everyday so I can go back to look at something if I need to (and for hard drive
    crashes). Does MS want me to import all that stuff to their servers and get rid of my .pst files? Does MS want me to put everything into one .pst file? It seems like it? If I do then I assume things need to be synchronized all the time between my file and
    your .pst file? The synchronization process is as close as you can get to real-time, right? Or does each individual change get sent as it happens?
    6.  I also have a skydrive account from a while ago too. Is this where I should put my documents so they're accessible when I'm not at my desk? Now, that would be a LOT of data (probably close to 80 GB). Or, is the intention for us users
    to only put certain current docs in this area. I assume these files can be synced with my desktop too, right? But I don't know how to. Do you keep old versions of the files in skydrive so we can recover them? I want to know if I can use your service to hold
    my files (they would ONLY exist on your system and you'll back them up and I can get old versions back when needed).
    7.  Is an option to keep everything on my desktop 2013 like I did in 2010 of Outlook, bypassing the cloud and MS mail servers all together?
    Sorry about all the questions, but I'm just getting the feel for your approach and need to decide how this all should fit together, do it, then go back to my business. I'm by myself at my company right now, but I'm planning on hiring a few people
    real soon too so I need to keep this in mind. I've worked with Outlook since it came out, and I've configured it, but mainly only for myself and my family.

    R1: Seems you didn't configure you email account in your Outlook client properly. please refer to the following KB article and try to create a new mail profile to configure your email account again:
    http://support.microsoft.com/kb/2758902
    R2: Do you want create subfolders under Inbox to category your emails? If so, we can just right click on Inbox > select New Folder... After that, we need to create rules to move or copy your emails to each subfoler. See:
    http://office.microsoft.com/en-us/outlook-help/manage-email-messages-by-using-rules-HA010355682.aspx
    Besides, in order to avoid confusion and keep track of troubleshooting steps, we usually troubleshoot one issue per thread in order to find a resolution efficiently. Concerning your other question, I suggest we create new posts for your other questions via:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=outlook
    Thanks for the understanding.
    Steve Fan
    TechNet Community Support

Maybe you are looking for