Query on Counting Rules for CL

Our customer has the following requirement regarding Casual Leave (CL). If the CL days are BOTH prefixed & suffixed by OFF days and/or holidays then ONE extra day of CL is to be counted. E.g. Assume an employee takes one day CL on 5-Mar-12, 6-Mar-12 and 4-Jan-12 is his weekly OFF and 7-Mar-12 is a holiday. Then CL days days have to be counted as 2+1 = 3 days (one day extra).
However, if CL days are only prefixed or only suffixed with OFF days or holidays, then the actual CL days have to be counted. E.g. employee takes CL on 8-Mar-12 and 7-Mar-12 is a OFF day or holiday. Then only ONE day CL (Actual) is to be counted. Similarly, if employee takes CL on 9-Mar-12 and 10-Mar-12 is a OFF day or holiday, then also only ONE day Cl (actual) is to be counted.
Please guide me on how to configure the counting rules for the above scenarios.
-Kalpana

Hi,
Check all the week days, Allholiday class, All the DWS class,  conditions for day selected in countingrule.
With same counting rule number with other grouings i.e ESG grouping for Time quotas, PSG grouping for Time Quotas with different cobination having any collution. in case of employee subgroup changes it may reflect.
Eventhough everything is fine then already updated employee master again you need to save the masterdata with change mode through PA30.

Similar Messages

  • Writing a query to count entries for all tables

    I'd like to write a query to count the number of rows in every table for a given database. For example, if I have two tables in a database called TEST1 and TEST2 with 20 and 30 rows respectively, I'd like the output of the query to be
    TABLE_NAME          ROW_COUNT
    TEST1               20
    TEST2               30
    Any ideas?

    or justin,
    How about this
    SQL> ed
    Wrote file afiedt.buf
      1  declare
      2  t_count number;
      3  begin
      4    dbms_output.put_line('table_name          Num_rows  ');
      5    dbms_output.put_line('----------         ---------- ');
      6   for i in (select table_name  from user_tables) loop
      7    execute immediate 'select count(*) from '||i.table_name into t_count;
      8    dbms_output.put_line(i.table_name||'       '||t_count);
      9    end loop;
    10* end;
    SQL> /
    table_name          Num_rows
    EMP_TEST         0
    BOOK            2
    MONTH           36
    BOOK_SALES           65
    CURRENCY          2
    EMP          18
    BONUS          0
    DEPT          5
    SALGRADE         0
    PLAN_TABLE         0
    PL/SQL procedure successfully completed.

  • Counting Rule for employee Group

    Dear Experts,
    I want to make new counting rule like If Employee takes Casual Leave on Friday and on Monday he do Sick Leave that Saturday and Sunday Should be treated as Earned Leaves. Saturday and sunday should be deducted from earned leaves.
    REgards
    Jazib Tariq

    Dear Jazib,
    Please look into this
    http://help.sap.com/saphelp_46c/helpdata/EN/c1/d32fe48435d111950d0060b03c6b76/content.htm
    Regards
    Qazi Raheel

  • Query regarding Overtime Rules for India

    Hi,
    I am not clear about how to configure the statutory overtime rules (as per Overtime act) for India. I am not sure how many OT hours per week/month/quarter is allowed. Also, I am aware that some of the extra hours worked by the workmen can be considered as "Additional Hours", but not sure how exactly these things are computed. Can anyone help me please?
    -Shambvi

    Generally according to factories act, the max no of working hours per week is 48, with a max working time of 9hrs per day. Any thing above this is treated as overtime. This over time should not exceed 50 hrs per quarter, and can be extended to 72 hrs with a written permission of the factories inspector.
    The rate at which over time is paid is twice the normal daily wage of the employee.
    Hope this helps
    Raghu

  • Counting rule doesnot exist.

    Hello,
    When I try to enter time I'm getting thefollowing error after I press enter "counting rule 08/2/00/.. doesnot exist".
    In Data Entry Area I'm entering the details for Activity type, Rec. order, Attendance/Absence Type and the hours for the week i.e. Monday, Tue etc..
    Can anyone help me where I'm missing with the Configuration. This is an urgent issue please help.
    Thanks & Regards,
    Padmaja.

    Hi Raghu,
    The employee who is getting error has ESG 1, and he is bookong time for Attendance type, i m not getting where to maintain the counting rule for attendance type. as under the counting rule for attendance it is already maintain.
    Thanks in advance,
    Padmaja

  • Purpose Assign Deduction Rules To Counting Rules

    Hi experts
    I have a few question to ask:
    1. What is the purpose of assign deduction rules to counting rules. For example, I have create counting rule for sick leave.
       After that, I have created deduction rule for absence quota to allow quota for sick leave using this rule. That's I understand.However, I quite confusing to assign deduction rules to counting rules.This is because there are two fields to key in :
         i. Within entitlement
         ii.Over entitlement
    What does these 2 fields means. Why we should config this.
    2. I want to create new leave type. This leave however have no quota. Should I create a new rule or can use the same counting rule available. I'm quite worry to use same counting rule because the current rule has been assigned by deduction rules (fields within entitlement). If I want to create new counting rule, is it possible to create it without create deduction rules for absence quota
    Thanks in advance

    1 - Your employee has a "Sick Leave Quota" of 4 days left.  Will you allow her to go "Over her entitlement" and take more than 4 days of "Sick Leave Absences", or do you restrict the use of "Sick Leave Absences" by what is "Within her entitlement"?
    2 - Look at all the absences that have been set-up in your system.
      - A Paid Sick Leave Absence should not reduce paid hours but it should reduce Sick Leave Quota.
      - A Paid Special Leave Absence should not reduce paid hours but may not be linked to any Quota.
      - An Unpaid Leave should reduce paid hours but may not be linked to any Quota.
      ... and you may have many other examples in your system.

  • Can I use a OID rule for a Query SQL Lov of BIP?

    Hi. Can I use OID data (rules) for a query sql lov in BIP? Ex. filters users/store.
    Thank you.
    R.

    Hi,
    I didn't look at the example, but if you want to secure your application then you should use container managed security. Read this .
    Anyway, you could add this before return "good"; in your login_action()
    FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put("username", user);Then, you can access this from anywhere in the application by using #{sessionScope.username}.
    Pedja

  • Query to count ACTIVE records for each month

    All,
    I have a requirement to count the number of active customers for each month of an year. Let's say, we have 3 fields in the table:
    ID               ActiveStart             ActiveEnd
    1                 1/1/2014               11/30/2014
    In this scenario, the member with ID was active for all the months (Jan-November) EXCEPT, December. So, the result set I am expecting for the Month of January to December is like below:
    Month       CountOfMembers
    Jan            1
    Feb           1
    Mar           1
    April          1
    May           1
    June          1
    July           1
    August      1
    Sept          1
    Oct            1
    Nov           1
    Dec           0 (Since, the member was NOT active in this month)
    Similarly, if you have another member whose start date is 1/1/2014 and termination is '5/31/2014', then, I would need to add 1 for months of January till May, the member WON'T be counted for the rest of the months. So, in this case, the count will be come
    "2" for months January till May, it will remain "1" for June till November and still "O" for December.

    >>I have a requirement to count the number of active customers for each month of an year. Let's say, we have 3 fields [sic: columns are not fields] in the table [sic: tables have names]: <<
    Please follow basic Netiquette and post the DDL we need to answer this. Follow industry and ANSI-ISO standards in your data. You should follow ISO-11179 rules for naming data elements. You should follow ISO-8601 rules for displaying temporal data. We need to
    know the data types, keys and constraints on the table. Avoid dialect in favor of ANSI-ISO Standard SQL. And you need to read and download the PDF for: 
    https:--www.simple-talk.com-books-sql-books-119-sql-code-smells-
    There is no magical universal “id” in RDBMS, tables have names and columns have constraints and types. Most of the work in SQL is done in the DDL. Here is a possible schema. 
    CREATE TABLE Duty_Roster
    (member_nbr INTEGER NOT NULL PRIMARY KEY,
     duty_start_date DATE NOT NULL,
     duty_end_date DATE NOT NULL,
    CHECK (duty_start_date <= duty_end_date),
    INSERT INTO Duty_Roster
    VALUES 
    (1, '2014-01-01', '2014-11-30'),
    (2, '2014-01-01', '2014-05-31');              
    >> In this scenario, the member with ID was active for all the months (Jan-November) EXCEPT, December. So, the result set I am expecting for the Month of January to December is like below: <<
    A month is a temporal measurement that makes no sense without a year. But if you knew the ISO temporal model, you would see that you have what is called an INTERVAL data type. T-SQL does not support it yet. 
    Since SQL is a database language, we prefer to do look ups and not calculations. They can be optimized while temporal math messes up optimization. A useful idiom is a report period calendar that everyone uses so there is no way to get disagreements in the DML.
    The report period table gives a name to a range of dates that is common to the entire enterprise. 
    CREATE TABLE Month_Periods
    (month_name CHAR(10) NOT NULL PRIMARY KEY
       CHECK (month_name LIKE  '[12][0-9][0-9][0-9]-[01][0-9]-00'),
     month_start_date DATE NOT NULL,
     month_end_date DATE NOT NULL,
      CONSTRAINT date_ordering
        CHECK (month_start_date <= month_end_date),
    etc);
    These report periods can overlap or have gaps. I like the MySQL convention of using double zeroes for months and years, That is 'yyyy-mm-00' for a month within a year and 'yyyy-00-00' for the whole year. The advantages are that it will sort with the ISO-8601
    data format required by Standard SQL and it is language independent. The pattern for validation is '[12][0-9][0-9][0-9]-00-00' and '[12][0-9][0-9][0-9]-[01][0-9]-00'
    SELECT M.month_name, COUNT(R.member_nbr) AS member_cnt
      FROM Month_Periods AS M,
           Duty_Roster AS R
     WHERE M.month_start_date 
           BETWEEN R.duty_start_date AND R.duty_end_date
       AND M.month_end_date 
           BETWEEN R.duty_start_date AND R.duty_end_date;
    We had no business rules about partial months, so I guessed. 
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Sql statement substituion - any special rules for formatting the query?

    Hey,
    I was wondering - are there any special rules for formatting the query that is to be substituted?
    I am asking, as somehow I am unable to make the DSP substitute my query. I took the basesql from the server console (to make sure that I have the correct version), configured a query substitution, and well, nothing happens.
    I've tried to substitute it with a modified version of the original query (where NVL(,0) is changed to NVL(,-9999)), then also with select * from dual (which I hope would generate some error), but DSP is ignoring everything...
    The query is rather big (400 lines), so maybe I need to format it somehow? I've noticed that in the docs (http://edocs.bea.com/aldsp/docs25/admin/server.html#wp1049919) that the query used in the example has all leading spaces removed. I've tried that, but DSP is still not doing any substitution...
    Any suggestions welcomed...
    Thanks,
    Leszek

    Michael,
    I am doing everything as in edocs, retrieving from logs the basesql (so with place holders). I've removed all new lines (so the query is now in a single line) and all excessive blanks (so all double/more blanks replaced with a single blank). Still the DSP is like ignoring the substitution. I've tried to do it even with a simple query, like:
    SELECT t4."PRODUCT_ID" AS c1, t4."PRODUCT_NAME" AS c2 FROM {DB}.{SELECTION} t1 JOIN {DB}.{CUSTOMER_FACT} t2 ON (t1."VAL" = t2."CUSTOMER_ID") JOIN {DB}.{CUSTOMER} t3 ON (t3."CUSTOMER_ID" = t2."CUSTOMER_ID") JOIN {DB}.{PRODUCT} t4 ON (t4."PRODUCT_ID" = t3."PRODUCT_ID") WHERE ((? = t1."SESSN_ID") AND (t1."NAME" = 'CUSTOMER_ID') AND (t3."DELET_DATE" IS NULL) AND (t3."PRODUCT_TYPE" = 11))
    am I missing something here? do I need to remove/add something , to make it work?
    I've tried removing blanks around = signs (which from the DSP pov results in a different query), sitll with no results.
    Edited by xnts at 06/24/2008 7:37 AM

  • I see people from different ages at my work and every month I need to count how many people from each age I've seen that month. How can I do to give the entries to numbers in a single cell and make numbers count them for me?

    I see people from different ages at my work and every month I need to count how many people from each age I've seen that month. How can I do to give the entries to numbers in a single cell and make numbers count them for me? The final result would be a spreadsheet telling there were 8 people from 20 to 39 years old, 14 peolple from 40 to 59 and so on...

    jpqcampos wrote:
    This appears to be an 'input form' using 'Radio Buttons' to select the category. Neither of these features are supported in Numbers '09.
    You can input the data on one table and summarize it on a second table, but the input table will continue to hold data for each event.
    And by using the Reorganize button, you can hide all but two rows of that table to approximate the appearance and performance of an input form.
    Here are the two tables, Data on the left and Summary on the right. Notes below.
    The grey-filled columns in both tables are 'working' columns, and may be hidden (as shown in the image below).
    Data table:
    D1 contains the word "TRUE" (in capital letters). (This row is always shown.)
    D2 is empty, or may contain any value except "TRUE" (This row is always hidden under the Reorganize rule.)The rest of Row 2 of this table requires the data shown: a number outside the range to be counted (999), and two checkboxes, both checked.
    D3 (and filled down the rest of column D):   =AND(OR(B2,C2),NOT(OR(B3,C3)))
    The formula returns TRUE only for the first unused row in the table (ie. the first row for which neither checkbox has been checked)
    Summary table:
    Column A contains labels for the age ranges to be counted.
    Column B contains the same information in the form necessary for the formulas in columns C and D. They need a numeric value, and that value must be the largest acceptable value in the range to be counted.
    C2 (and filled right to column D, then both filled down to row 5):
        =COUNTIFS(Data :: $A,"<="&$B,Data :: B,TRUE)-SUM(C$1:C1)
    Two changes from the previous example:
    COUNTIFS is used to separate the Native and Foreign counts as well as the age range to be counted.
    The amount subtracted from each result is the SUM of the earlier results, and includes the text value in the first cell of the column (which is interpreted by SUM as a zero).
    See note below regarding my earlier formula.
    When the greyed columns are hidden and the checkbox in the Reorganize pane is checked, the two tables will appear as shown below:
    Close the reorganize pane, and the 'data entry form' is ready to use.
    To use, enter the age first, then check one of the boxes.
    As soon as one box is checked, the row will be hidden, and the next (unused) row will be shown.
    Regards,
    Barry
    Note regarding formula in my earlier post:
    The earlier formula will give erroneous results as it subtracts only the count directly above it from its count of persons in the age range 0-n.
    In E2 of that table, replace "-E1" with "-SUM(E1:E$1)
    Fill down to E8.
    Ignore the instructions (in that post) following "Fill down to E8."
    B

  • What Are the Exact Basic rules for Replying a Thread...... -:)   @};-

    Hi Experts,
    After Looking into the forums many days I had a small conclusion about forums,
    SAP Forums are better place I have seen for getting a goo dhelp & Knowledge...
    Why can't we make it a BEST Place.
    This is just a small doubt which I would like to clear myself first,
    I have seen many users In the forums asking for a Basic Questions
    When cleared, But still they want to have a Spoon feeding with a Sample Code.
    When Sample Code Given they will provide the original code and requests for Modifications.
    These always looks to me as crazy.
    I have seen somelong time agin by moderators posting that In SCN there will be no SPOON FEEDING.
    I am not sure whether if still this Rule AVAILABLE or NOT.
    Ok if the task is really difficult let them ask again and again,
    And it was not replied, let them repost, I agree with them.
    And How about a User Registered in SDN very long back and asking for a silly question in below thread,
    [Sendin Email to the recipent list -Need correct FM |Getting the address from shipto partner of Bil. item not directly from C.ma]
    This is one more example, really funny, The thread poster needs the solution at any cost, he doesn't require and Suggetions,,, {He Only needs Solution}
    [Radio Buttons |Radio Buttons;
    [Turning Off Debugger |Turning Off Debugger;
    [Regarding Amount in words|Regarding Amount in words;
    There are 100's of threads like this....Everyone knows this facts.
    Check this who answered this one and who replied correct answer, who copied, finally who was rewarded...!
    [how to validate POsting period |Re: how to validate POsting period]
    Now My Real Problem is....!
    User is always intelligent, Only the weakness is in Contributor, trying to help them,..,
    And I openly say that Someone requesting for basic help is not DUMB, But the Contributor replying forgets
    the basic rules " Why Contributing ?"
    According to me It's not the Requestor to see Rules & Requlations before posting the threads,
    But its responsibilty for the Contributing person to see th Rules & Requlations before replying the threads,
    If we follow the rules and stand on a single word or rule or anything there will be Good Result.
    Major Problem is in US not anyone else.
    Example Some one saying search in the forum,,, then please no replies after that...
    But we are very pity hearted again we post the solution,,,
    But it is not at all enough(for cintribtor's)... they will copy the solution and post again by slight Modifications,
    And Some users are having 500,600,700,800 Posts with 0 points, registered long long back.
    They are completly dependent on forums,,, As they goto office and as they eat, The same they open forums and ask Queries...
    They will never realize what they are doing,, and we will never let them improve better...
    Finally Lets Discuss About this and Correct & Suggest me if I am wrong,
    Is my thoughts are going in the right way or not I am not even sure... Please Aslo Correct me if I did any mistakes.
    Thanks & regards,
    Dileep .C
    Edited by: Dileep Kumar Chinnaiah on Apr 29, 2009 12:33 PM
    Title Changed Form
    "What to do when someone asking for Basic Questions" to "What Are the Exact Basic rules for Replying a Threads...... "

    Hi Stephen,
    Very useful Information,
    First tell me a little something about my self...
    After completion of my certification(as a fresher) I was down the streets hunting the job,
    with the insufficient knowledge and being a non-experienced person, I never got one.
    And mean while when I got my "S-UserID", I used to be proud, To say frankly, I registerd in SDN & SAP all at a time, without even knowing what I can do there..,
    When I got a job afterwords I was doing the job and never seen SDN page for many months,
    when I came to know that of we have doubts we can post at SDN. then started requesting help,
    I posted only a little, I didnot got the proper response. on that day I decided,
    still there are some places where we cannot get help on time and there will be people waiting to get help,
    Why cant I put some of my efforts to help others.
    Then I searched some topic by Topic in SDN topic by Topic I used to read threads just for knowledge.
    when I feel my self comfort for contributing, I started contibuting...!
    If you haven't read it, take a look first, so you can understand where things are now.
    I dont know where things are now. But these in this thread I mentioned clearly what I seen from the day I started contributing.
    I searched with the terms of 'Rules for replying', The results are not as I expected, and this link has subject as
    "O SDN, where art thou?" So it dosent hit my in the list.
    Like everybody until a certain stage I am also rushing for points.
    But I most cases I never tried to copy paste answers. If I done some then that is just to point it myself some day,
    I have no hopes or no intrest on the points...! This was discussed with Rob & Matt, at my inital contribution where my points are 36.
    From that day till date I have changed a lot to myself.
    Everyone cannot change like me because they are not like me & And I dont even expect that...!
    I will be online almost 6-8Hrs a day, Not even getting intrest to see the forums just because of the co-contributors.
    My only point is I am just requesting to a co-contributor,
    Clearly In a example : Lets say contributor has replied to a thread, and if you know that is a correct solution,
    please dont reply any more, If you have a better solution than that, then only reply,
    Even there is one reply in the thread not a matter, if correct answer leave that query.
    If still error persists, Show up with your Idea's...
    Dont let down the contributor, by copying his reply and editing and pasting(edit only if incorrect).
    I am just looking for this one exactly to circulate between ourselfs.
    For this we a little support from moderators to circulate(may be as a rule or may be as a mail to them)
    You may say again how many mails we have to send, It dosent matter, one mail to one person one time,
    and +ve factors will show up definetly.
    A real contributor always understand what I am talking about, but some one who hunts for points will never.
    I am really sorry if I am troubling with my doubts & requests,
    If so, Pleae forgive me,,
    Thanks & regards,
    Dileep .C

  • How can i get a query to count a number of strings?

    I want the query to count for me how many holidays there are to the USA in my table. But im not sure how to get it to retreive the result of a string or varchar2 datatype. This is what i have tried so far.
    select count(COUNTRYVIS) <<this column contains all the countries visited
    from "IT220_HOLIDAYDETAILS" <<this is the table where the column is
    where COUNTRYVIS = "USA" << this is the result i want it to count
    ORA-00904: "USA": invalid identifier <<this is the error message im getting, is there a way to count strings?
    Thanks in advance!

    This has nothing to do with APEX. Please post basic SQL questions on the +{forum:id=75}+ forum.
    In any OTN forum, alll code should be posted wrapped in <tt>\...\</tt> tags as described in the FAQ:
    select count(COUNTRYVIS) -- this column contains all the countries visited
    from "IT220_HOLIDAYDETAILS" -- this is the table where the column is
    where COUNTRYVIS = "USA" -- this is the result i want it to countYou appear to be struggling with the distinction between identifiers and text literals. Hint: One uses double quotes, the other single quotes.
    Note that quoted identifiers are generally not a good idea.

  • Help required in configuring counting rule

    I have limited experience in SAP-HR configuration. Kindly help me quota configuration. The client has only absence type u2013 Earned Leave. The leave rule is the same for all the employees. The leave rules are:
    1.     The employees are credited with earned Leave on Jan 1 every year, for the attendance days put in during the previous calendar year.
    2.     The employee is eligible for Earned Leave only if he has attendance for at least 240 days during the previous year. If the employee has joined the company during the middle of the previous year, then he should have attendance for at least 2/3 of the remaining working days during the year.
    3.     The employee should be credited with 1 day EL for every 20 working days. If the employee, for example, has worked for 268 days during the year then he should be credited with 13 days EL (268/20=13, with 8 days as remainder). The remainder days, if any, should be carried forward to the next year and considered at that point as added to the number of working days. E.g. employee has worked for 268 days in year 2010. He will be credited with 13 days EL on 1 Jan 2011. Assume he has worked for 256 days in year 2011. Then while creating the absence quota for EL on 1 Jan 2012, the system should consider working days as 256 (from year 2011) + 8 (remainder from year 2010) = 264. Hence the employee should be credited with 13 days of EL on 1 Jan 2012 (264/20 = 13 days; 4 days remainder).
    4.     Leave carry forward rules: The employee is allowed to carry forward the EL balance to the next year. However, after carry forward the total balance should not go beyond 30 days. Any thing in excess of 30 days will get lapsed, if it is not encashed.
    Kindly let me know how to configure the counting rule & the deduction rule for the above scenario.

    Hi
    Configuring of EL need PCR Calculation and Standard Configuration with time Types
    000010            D VARSTCURMO
    000020 **           COLOP*
    000030 04         D VARSTFDYPP
    000040 04 N
    000050 04 Y       D HRS=0     HRS=FR11C HRS?300
    000060 04 Y *
    000070 04 Y <     D HRS-300   HRS*-1    ADDDB9509 ADDDB9558 HRS?15
    000080 04 Y < *   Z HRS=0     HRS=M9500 GCY ZAC2
    000090 04 Y < <   Z GCY ZAC3
    this when u go for GCY ZAC2
               D HRS?10
             D HRS/10    ROUNDH<60HHRS?CELACR
    *        D HRS-CELACRHRS?0
    * *        HRS*-1    ADDDB9501
    * >        HRS=0     ADDDB9500ZADDMB9500ZADDDB9501ZADDMB9501Z
    >          HRS=0     ADDDB9500ZADDMB9500ZADDDB9501ZADDMB9501Z
    <            HRS=0     HRS=CELACRADDDB9501 HRS=0     ADDDB9500ZNEXTR A
    <        A   ADDMB9500Z
    This when u click ZAC3
    000010            D HRS=0     HRS=M9500 HRS?10
    000020 *            HRS/10    ROUNDH<60HADDDB9557 HRS-D9509 ADDDB9556 NEXTR A
    000030 *        A D HRS*-1    HRS?0
    000040 * *          COLOP*
    000050 * >          ADDDB9501 HRS=0     ADDDB9500ZADDMB9500ZADDDB9509ZNEXTR A
    000060 * >      A   ADDMB9509Z
    000070 <            HRS=0     HRS=M9509 ADDDB9501 HRS=0     ADDDB9500ZNEXTR A
    000080 <        A   ADDMB9500ZADDDB9509ZADDMB9509Z
    This PCR is for EL with 300 Limit
    Regards
    Raja Sekhar

  • Creating rules for other mailboxes

    Hi there,
    I couldn't seem to find this question anywhere so I'll just post it. Is there a way to create a rule for IMAP mailboxes? Here is my situation: I have two gmail IMAP accounts in Mail in addition to my .Mac IMAP account. Now sometimes I can't always get to my computer to check for mail so I've been using the webmail on apple.com. However, to make things more convenient for me I've made gmail forward all my messages to [email protected] I want my gmail accounts on my Mail app because then I can send messages with my gmail account instead of my .mac account. I just want to be able to use the .mac account as a kind of grouping station. I also want to use the push mail function when MobileMe becomes available.
    My question is, I know that on Mail I'm going to get duplicate messages in my Gmail IMAP accounts, because they are also being forwarded to [email protected], but is there any way to create a rule so that I won't see the "unread message count" on my gmail mailboxes? Or is there a way to make Mail not check for new messages in my gmail accounts? Or something to that effect?
    Thank you all so much,
    R.

    Does anyone have an answer?
    thank you

  • Automatic Clearing Rule for Customers

    Hi,
    I have a query regarding Automatic clearing rules for the Customers.
    I want to clear all the debit balances against all credit balances for each customer (irrespective of the assignment). The exact amounts are not matching though.
    Can this be configured for Cusomers in 'Automatic Clearing Rules'?
    Please Advise.
    Thanks in Advance,
    Safi

    Hi,
    You can use the transaction code F-32 to clear debit and credit items of a customer account. You can only clear open items from one account. You can use this function to clear debits and credits that balance to zero (for example, invoices and payments that have already been entered into the customer account).
    Reward points if it is helpful.
    Thanks
    Ram

Maybe you are looking for

  • How do i duplicate a file that is on acrobat. com?

    The duplicate file function is there if the document is in my documents. But it is not there if the file is saved on acrobat.com

  • Need Urgent Help plz

    Actually i have problem that i dont know how to parse an xml file. Is there any class method in which the xml file name is passed as an argument. then if i want to modify any node's attribute value in the xml then i can be done. i have stdudied JDOM

  • ADS : Soap runtime exception when using MEDRUCK_PO

    Hello, I want to use standard PDF form MEDRUCK_PO instead of Sapscript MEDRUCK for editing PO for output type NEU. I have make changes in NACE for Application EF/Output type NEU : Program  : SAPFM06P FORM routine : ADOBE_ENTRY_NEU PDF Form : MEDRUCK_

  • Creating weird filenames

    Hi all, After I read this article, http://www.dwheeler.com/essays/fixing-u - names.html (with which I actually agree in most points), I wondered how one can create files with such weird names. I tried a lot, but did not succeed in it. I am interested

  • HT201272 download previously purchased music to your iTunes

    My issue is how do I get my past purchases to show on my iTunes purchase area???? This is where I have my problem???