Can you do a rule on "flagged" status?

For instance, I'd like to automatically delete old mail (>30 days), but don't want to delete some messages I'm procrastinating on. However, "flagged stats" isn't an option in the Rules. Is there a workaround? Am I missing something?
Thanks,
Heidi

See if this helps. http://www.methodshop.com/gadgets/ipodsupport/diagnosticmode/index.shtml

Similar Messages

  • Can you require settlement rule in Production order !

    Hello,
    i am FICO. one of our processes is to fabricate complex tools that will be capitalized and depreciated when completed.
    while the tools is being fabricated, we would like to settle regularly the production order to a capital order (AUC) and track the budget for the fabrication.
    in this production process we want to require the user to enter a capital internal order in the settlement rule of the production order master data..  this way when Prod order is settled we dont have issues.  can you make settlement rule entry as required during production order creation?
    any input is appreaciated on the issue. Thanks
    Andy

    Hi Francois,
    I would suggest you to ask the PP user to create production order without Material using transaction CO07.
    Here the user can maintain the settlement parameters in the "maintain settlement rule" screen. The account assignment should be "Order - ORD" and can input the internal order number to Settlement reciever feild.
    If you need the final product to be delivered then in the component overview add the material number and the quantity in negative qty. System assumes this as byproduct.
    Hope this helps.. you. Reward your points if so,
    Regards,
    Prasobh

  • Can you change the ruler color of grey to be an actual color?

    So in Illustrator, Photoshop and InDesign, can you change the rulers to be something other then the boring grey. I mean can you change it to actual be a color? If yes, how? If no, Adobe really needs to implement this. I think to have the rulers be in a color would help greatly for visibility.
    Thanks for any help. Thought perhaps there may be an easter egg or trick possibly to do this.
    Jeff

    In my pages the shapes are green with a black line. Yo can change it by clicking on the format bar. See image. You can also change it in the Inspector palette > Graphic tab > Fill
    You could create a document with all the shapes int the right colour and save as a document or template. Then you can use it by "copy and paste" the shapes into a new document

  • Can you sync access rules between BM servers

    Hi,
    I think the answer to this is NO, but just in case, I thought I would check out if it is possible.
    I have been asked if I can sync the access control lists on 2 BM servers (one here and one at a remote office), the idea being that when a change is made in one, it is automatically done on the other server.
    Are there any "simple" ways of doing this (or is there a commercial product that can)?

    smithp2,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Can you do this in Photoshop.......ITS ABOUT RULERS!!

    Can you make a ruler line that is at any-other Degree other then 0-90? I want to know!
    Any and all Replys are greatly appreciated!

    I want it to Determine a length that is at another angle. So I can Acurately Place objects at the correct distance from other objects Regaurdless if its above it or below it , or anywhere around it.  that might not make since sry. I have Illustrator , I just have not learned how to use it yet ( if you know any good websites let me know)
    I am un aware of Scripts , so i dont think i would be able to figure that out , I was just hopeing there was like a hot-key for Rotateing the Ruler to whatever Angle i desired.
    if there is a ruler tool , where is it in photoshop? and can you manipulate it anyway you would like? or is that also only 0-90?

  • Can you help me interpret the following lines in UPDATE rule?

    Hi,
    Can you help me interpret the following lines in UPDATE rule?
    1. What is the role of role of u201CCHANGING RESULT.u201D and u201CCHANGING lc_local_value.u201D?
    2. What is the role of the CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY', in particular the Exporting and Importing parts?
    3. Can I say that u201CCOMM_STRUCTURE-ORDER_VALu201D in the subroutine is passed to u201Clc_document_valueu201D in the u201CFORM loc_curr_convertu201D; and further passed to u201Cforeign_amountu201D in the u201CCALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'u201D?
    4. Finally, what becomes of my original u201CActual Goods receipt quantityu201D( 0GR_QTY ) which I am writing the routine for? I donu2019t see any where in the code that it is being referred to? Do any of these codes affect the value of 0GR_QTY?
    5. Also, if there are 3 different subroutines in the INCLUDE and I am making the change described in #4 above, how do I know which of the 3 subroutines to call?
    ===============================
    ===============================
    So I am reviewing a transfer routine in for u201CActual Goods receipt quantityu201D and routine an INCLUDE statement: INCLUDE RS_BCT_MM_UPDATE_RULES.
    The update rule also includes the following properties to run the following subroutine in the Include:
    IF u2026..
    perFORM LOC_CURR_CONVERT
               USING    COMM_STRUCTURE-ORDER_VAL
                        COMM_STRUCTURE-DOC_DATE
                        COMM_STRUCTURE-ORDER_CURR
                        COMM_STRUCTURE-LOC_CURRCY
                        COMM_STRUCTURE-EXCHG_RATE
               CHANGING RESULT.
    I verified in the INCLUDE (RS_BCT_MM_UPDATE_RULES) and the subroutine is as follows:
    FORM loc_curr_convert
      USING    lc_document_value
               lc_date
               lc_document_currency
               value(lc_local_currency)
               lc_rate
      CHANGING lc_local_value.
    conversion of lc_rate from floating-point to decimal. Necessary for *
    call of CONVERT_TO_LOCAL_CURRENCY.
    data lc_rate_dec type p decimals 5.
    lc_rate_dec = lc_rate.
      IF lc_document_currency = lc_local_currency
      no conversion necessary -> Main case 1
        AND NOT ( lc_document_currency IS INITIAL
               OR lc_local_currency IS INITIAL ) .
        lc_local_value = lc_document_value.
      ELSEIF NOT ( lc_document_currency IS INITIAL
      OR lc_local_currency IS INITIAL OR lc_date IS INITIAL ) .
      conversion necessary with lc_date -> Normally not possible
        CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
          EXPORTING
            date                 = lc_date
            foreign_amount       = lc_document_value
            foreign_currency     = lc_document_currency
            local_currency       = lc_local_currency
            rate                 = lc_rate_dec
          IMPORTING
          EXCHANGE_RATE        =
            local_amount         = lc_local_value
          EXCEPTIONS
            NO_RATE_FOUND        = 1
            OVERFLOW             = 2
            NO_FACTORS_FOUND     = 3
            NO_SPREAD_FOUND      = 4
            DERIVED_2_TIMES      = 5.
        IF sy-subrc NE 0.
      message a802 with lc_date lc_document_currency lc_local_currency
                        sy-subrc.
        ENDIF.
      ELSE.
      if conversion not possible -> assign target values
        lc_local_value = lc_document_value.
        lc_local_currency = lc_document_currency.
      ENDIF.
    ENDFORM.

    HI,
    Thanks so much the explanations.
    I just verified again on our dev system and the update rule for 0GR_QTY (Actual goods receipt quantity) include the following:
        perFORM QUANTITY_CONVERT
           USING    COMM_STRUCTURE-CPQUAOU
                    COMM_STRUCTURE-po_UNIT
                    COMM_STRUCTURE-base_uom
                    COMM_STRUCTURE-numerator
                    COMM_STRUCTURE-denomintr
           CHANGING RESULT
    Now, in the include, I also found:
    FORM QUANTITY_CONVERT
      USING    QC_SOURCE_VALUE
               QC_SOURCE_UNIT
               VALUE(QC_TARGET_UNIT)
               QC_UMREZ
               QC_UMREN
      CHANGING QC_TARGET_VALUE.
    i.  Does it mean it actually does quantity conversion?
    ii. If you have access to the INCLUDE I will appreciate some hints on what the subroutine QUANTITY_CONVERT is doing. It does not appear do to be saying anything about quantity conversion; but it is supposed to be doing something with the parameters being passed from the update routine.
    iii. In your response to #5, after all the computation in the INCLUDE, what comes back to the Update rule  i.e. what comes back to become the value of 0GR_QTY?
    Is it the u201CRESULT.u201D in the update rule or u201CQC_TARGET_VALUE.u201D in the subroutine in the INCLUDE.
    iv. So, am to create an Update rule for 0PSTNG_DATE and the source is BUDAT; and I need to write a routine using the include INCLUDE RS_BCT_MM_UPDATE_RULES.
    I looked through the INCLUDE and identified all the subroutines in this INCLUDE as follows:
    QUANTITY_CONVERT
    LOC_CURR_CONVERT
    GET_WEEK
    WEEK_DAY
    QUARTER_DAY
    --Does it mean that to use this subroutine, I can only use the USING parameters of one of these listed subroutines?
    --Also, does it mean that because 0PSTNG_DATE is a date, I can only use one of
    GET_WEEK
    WEEK_DAY
    QUARTER_DAY
    --Or, are there other includes to be used for 0PSTNG_DATE
    Thanks

  • Can you download a FormsCentral response as a pdf without having non-selected skip logic rules saved/viewed?

    Can you download a FormsCentral response as a pdf without having non-selected skip logic rules saved/viewed?

    Hi,
    Unfortunately, it is not possible to convert the response to pdf without the non-selected fields.
    As a workaround, you can hide a particular column and then convert the response to pdf.
    Regards,
    Nakul

  • HT1277 Can you use Apple Mail program Rules and Gmail filters together?

    Can you use Apple Mail program Rules and Gmail filters together? Does the gmail filtering override the Mail Rules?

    Mail > Window > Previous Recipients

  • Can you tel me the exact status values for TBTCO table

    Hi Experts,
    Can you help me any one to know about "Status" field in TBTCO table.
    what is the meanings of this status values.
    1.P.
    2.S.
    3.F.
    4.R
    5.Y
    6.A.
    7.Z
    Can you tell me any function module to find status for the program and for the jobname.
    Thanks.
    Sailu

    Hi,
    Just used the where used list and found INCLUDE LBTCHDEF.
    Check it. seems clear
    btc_running       LIKE tbtco-status VALUE 'R',
      btc_ready         LIKE tbtco-status VALUE 'Y',
      btc_scheduled     LIKE tbtco-status VALUE 'P',
      btc_intercepted   TYPE btcstatus VALUE btc_scheduled,
      btc_released      LIKE tbtco-status VALUE 'S',
      btc_aborted       LIKE tbtco-status VALUE 'A',
      btc_finished      LIKE tbtco-status VALUE 'F',
      btc_put_active    LIKE tbtco-status VALUE 'Z',
      btc_unknown_state LIKE tbtco-status VALUE 'X'.
    Regards

  • Can you deploy Oracle Business Rules to the other App servers

    Can you deploy Oracle Business Rules to the other App servers such as Websphere and Jboss

    Yes. Please see the Appendix C in the documentation at:
    http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28965.pdf
    For WebSphere, updated instructions will be released soon that allow all RuleAuthor features to be used.

  • Can You DISPLAY the Remodeling Rule in BW QA System ??

    Hi all,
        Can you Display the Remodeling Rule (BI 7.0 feature) in QA system, PLEASE ???
        The TCode for 'Remodeling' is RSMRT.
        Select any 'Remodeling Rule' from the look-up and try to DISPLAY it.
         You could find all the Remodeling Rules in RSCNVCGHEADER Table also.
        Thanks in advance.
    Regards,
    Venkat.

    Hi Subash Balakrishnan,
        I am getting the following when I try to DISPLAY the Remodeling Rule in QA system which is transported from Dev system:
      'Namespace '/BIC/' must be set to 'changeable' (transaction SE06)
    Message no. R7063.
      Basis team says to open the CLIENT in QA system.
       Did you try to display it QA system without any problem, PLEASE ???
    Thanks,
    Venkat.

  • Hi-I am trying to email photos from iPhoto and I keep getting a flag that says "the server does not recognize the username/password combination.  Can you help me to reset it?

    Hi…I am trying to email photos from iPhoto and I keep getting a flag that says "the server does not recognize the username/password combination.  Can you help me to reset it?

    Thank you very much for the quick reply and it was so easy.  Make my life much easier now
    Thanks so much

  • Its our national day today. Can you make an emoticon for our flag Brunei Darussalam please?

    Dear apple software team,
    Its our national day today, Can you make an emoticon for our flag country Brunei Darussalam please?
    Thank you for making this possible.  

    Not talking to Apple here, only other users like yourself.
    If you want to make a suggestion to Apple you need to use their feedback forms, Apple - Feedback
    good luck

  • For the javascript content I am developing, the "hide status bar" option needs to be enabled; how do I access this option for FF4? If I cannot enable this option, can you provide tips on how I might get the page to run?

    I am working with datango producer (see datango.com) which depends on JavaScript to set up the training player that runs simulation content. Datango's browser check recognizes that I am running FF4.0, but indicates I should change the setting to hide the status bar, yet I cannot access that setting under Options > Content > Advanced JavaScript Settings. I could suggest an update to the preflight checks, but am not sure what to tell them. Can you help?

    https://support.mozilla.com/en-US/kb/what-happened-status-bar

  • Can you help me understand these 2 update rule lines

    Hi,
    ODS1 has field1, field2 with data. Field1 and field2 have also been included in ODS2 and I see the code which reads from ODS1 to fill ODS2: i.e. in the startup routine for ODS2 I see:
    Data: begin of i_logxxx occurs 0,
    Field1 like /BIC/AAlogxxx00-Field1,
    Field2 like /BIC/AAlogxxx00-/BIC/Field2
    end of i_logxxx.
    1. I know that developer was bouncing from screen to screen copying
       /BIC/AAlogxxx00-Field1 to paste in the code.
       I can’t seem to find where this was copied from.
        I double clicked on Field1 and by going through the maintenance screen of this infoobj, the closest I find is /BI0/MField1.
    2. Also, why is it that in the case of Field2, it is not
    AAlogxxx00-Field2 but AAlogxxx00-/BIC/Field2  
    (trying to understand the format)
    3. Can you explain the significance of these BIC, AALOG, AA and 00 in the following:
    /BIC/AALOGODS100
    4. Also, does logxxx in i_logxxx necessarily have a relation to same in
    /BIC/AAlogxxx00-Field1
    1
    Thanks

    Hello Amanda,
    1.Data: begin of i_logxxx occurs 0,
    Field1 like /BIC/AAlogxxx00-Field1,
    Field2 like /BIC/AAlogxxx00-/BIC/Field2
    end of i_logxxx.
    1. I know that developer was bouncing from screen to screen copying
    /BIC/AAlogxxx00-Field1 to paste in the code.
    I can’t seem to find where this was copied from.
    I double clicked on Field1 and by going through the maintenance screen of this infoobj, the closest I find is /BI0/MField1.
    When you want to see the tables of the ODS ,
    Goto SE11 or SE16 and give /BIC/A<ODSTechName>00
    Actually there are 3 tables Activation Queue (/BI0/A(ODSTechName)40), Active table (/BI0/A(ODSTechName)00) and Change log table (/BI0/B<10 digit number>)
    The above will be the same for customized except /BI0/ it will be /BIC/.
    2. Also, why is it that in the case of Field2, it is not
    AAlogxxx00-Field2 but AAlogxxx00-/BIC/Field2
    (trying to understand the format)
    Normally when its a generated code it will be like BaseTable-Field Name so the field can be used with /BIC/ or without also since you are giving the base table first.
    3. Can you explain the significance of these BIC, AALOG, AA and 00 in the following:
    /BIC/AALOGODS100
    As I said in BIC, C stands for Customized Object. AALOG refers to the change log table which will be used for delta loads. AA and 00 denotes the Activation table, if its 40 instead of 00 then its activation queue.
    4. Also, does logxxx in i_logxxx necessarily have a relation to same in
    /BIC/AAlogxxx00-Field1
    i_logxxx is an internal table where they have taken few fields from ODS1 and here /BIC/AAlogxxx00-Field1 is a field of the internal table i_logxxx.
    Hope its clear.
    Thanks
    Chandran

Maybe you are looking for

  • Grand Total on the same line. See Output requirment.

    Env:Oracle 9I Report Writer If I have a Table with the flwg data: TableA Col1   Col2  Col3   Amt 1                   10 2                   20 3                   30 4                   40How can I get the report output in the format below: ....     

  • Count of 0TOTALSTCK

    Hi all I'm struggling with a count issue which i hope you can help me with. On IC_C03 i need to count the number of entries where 0TOTALSTCK = 0. As 0TOTALSTCK is non-cumulative i don't know the value of each row until query runtime. As such i can't

  • Sap tax nature

    can any one explain the tax nature in sap when using third party tool for calculating the tax

  • Histogram behavior in CS6

    Hi, I prefer leaving my histogram in Photoshop CS6 in RGB mode, yet everytime I close the program and re-open photoshop, it defaults to Colors when I open a new document. Does anyone know how to get it to retain the RGB readout as a default? John

  • When Printing Flash Paper from Acrobat Professional, Flash paper is not able to search!

    When I try to print a flash paper file from adobe acrobat professional, it prints, and it creates the flash paper file. The flash paper file is no longer search-able though, when I try searching, it just says "not found". The original PDF is search-a