Help Req for Rounding Rule,

Hi All,
Can some one tell me what r the steps to be created in rounding rule of Absence Quota.
Regards,
Vinod.

Define Rules for Rounding Counted Absences
In this step, you set rounding rules for absence and attendance counting.
If you specify an hours or day multiplier for counting attendances and absences, the values determined can have several places behind the decimal point. It is difficult to use these values for quota deduction and payroll. In this step, therefore, you set rules for rounding the values.
You use concrete numbers for the rounding rules and can specify whether you want:
Only values within the specified interval to be rounded or the interval to be rolled
The specified upper and lower limits to be included in the calculation
You can specify several subrules for a rounding rule and number them sequentially. The system runs through the subrules in sequential order until it finds one that applies.
Example
For absences, you use a counting rule that is counted using an hours multiplier of 80%. You want whole numbers (full hours) to be determined in counting.
Define a rounding rule
With a lower limit of 0.5 (inclusive)
With an upper limit of 1.5 (not inclusive)
With a target value of 1
You want the rule to be rolled, that is, to apply also to the following intervals:
1.5 - 2.4 (rounded to 2)
2.5 - 3.4 (rounded to 3)
and so on.
Standard settings
The standard system contains sample rounding rules.
Activities
1. Define a rounding rule.
2. If you want to specify several subrules, number them sequentially.
3. Enter the upper and lower limit of the rounding interval.
If you select the Incl. field, the value of the specified upper or lower limit is included in the rounding (greater than/equal to or less than/equal to).
4. Enter the target value to which you want the value to be rounded.
5. If you want the rounding rule to be rolled, select the Roll. field.
Further notes
You can also use the rounding rules you define here for other purposes, for example, to round quota entitlements that have been generated automatically.

Similar Messages

  • Help req for screen exit in migo

    Hi guys,
                 I am using badi MB_MIGO_BADi to design an header screen i am facing following issues
    1) It should be active for a particular plant. Now which badi/exit shld be use to export the value of plant
    to badi to make it visible or invisible. IF its invisible does it also make it inactive??
    2) to save the data from the screen into an z table. i put a break point in exit MB_CF001 but its not executing when
    clicked on save while creating GRN against a PO.

    Hi,
    rearding the capturing of transit loss, I guess you can use the field 'Qty in Delivery note" to capture the Qty claimed to be delivered and capture the actual qty in the qty in Unit of entry field.
    The difference would the transit lodd.
    You can build reports on these.
    Hope this helps.

  • Help req for loop

    Hi All,
    I am retriving values from database and then writing it to a file...The code for this is
    String query = "SELECT Project_Master.proj_name,Project_Master.proj_desc,Project_Master.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type FROM Project_Master INNER JOIN folder_navigation ON Project_master.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";
    ResultSet rs = stmt.executeQuery(query);
    int maxcols = rs.getMetaData().getColumnCount();
    while(rs.next())
    System.out.println("proj_name::"+rs.getString("proj_name"));
    System.out.println("proj_desc::"+rs.getString("proj_desc"));
    System.out.println("proj_location::"+rs.getString("proj_location"));
    System.out.println("nav_name::"+rs.getString("nav_name"));
    System.out.println("cont_name::"+rs.getString("cont_name"));
    for(int i =1;i <=maxcols;i++)
    myData.add(new Tags_Define(rs.getString("proj_name"),rs.getString("proj_desc"),rs.getString("proj_location")));
    I get output of this as
    <name>data1</name>
    <desc>data2</desc>
    <path>data3</path>
    this data is repeated 6 times as there are 6 colomns in my table
    If i comment out for loop i get the above data 2 times
    But I want data to be retained row wise
    What should i do?
    Please help
    Thanks in advance

    First of all, when posting code, click the code button.
    Is the for loop meant to be nested in the while or is it supposed to come after it? It is impossible to tell as you did not include the closing brace.
    Also this code:
    String query = "SELECT Project_Master.proj_name,Project_Master.proj_desc,Project_Master.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type FROM Project_Master INNER JOIN folder_navigation ON Project_master.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";is much longer than it needs to be. Are you sure it executes without errors? Why don't you use a table alias instead?
    String query = "SELECT PM.proj_name,PM.proj_desc,PM.proj_location,folder_navigation.nav_name, content_document.cont_name,content_document.cont_type
    FROM Project_Master PM INNER JOIN folder_navigation ON PM.proj_id=folder_navigation.proj_id INNER JOIN content_document ON content_document.nav_id = folder_navigation.nav_id ";also, you have not specified folder_navigation or content_document in the from clause, I presume these are also tables? Also, what is myData? We do not see it declared anywhere.

  • Help req for check customer table maintenance with XD02 if not throw error

    hello ABAP GURUS,
    check customer of the table maintenance with XD02 if not throw error i have given the codition for passing the values in the table but before that it has to check whether the customer i am passing in to the table is a customer from xd02.Here whatever no i am passing it is accepting it should not happen, but when i give the customer which is not a customer it should not accept but it has to throw the message as 'customer does not exist.Its urgent please help me
    TYPES: BEGIN OF TY_KNVI,
    KUNNR TYPE KUNNR,
    TATYP TYPE TATYP,
    TAXKD TYPE TAKLD,
    END OF TY_KNVI.
    DATA : VALIDFROM TYPE GUEBG,
    VALIDTO TYPE GUEEN.
    DATA : IT_KNVI TYPE STANDARD TABLE OF TY_KNVI,
    WA_KNVI TYPE TY_KNVI OCCURS 0 WITH HEADER LINE.
    DATA : V_NAME TYPE SYUNAME.
    SELECT KUNNR
    TATYP
    TAXKD
    FROM KNVI
    INTO TABLE WA_KNVI
    WHERE KUNNR = YYV_CFORM-KUNNR
    AND TATYP = 'ZCST'
    AND TAXKD = '1'.
    V_NAME = SY-UNAME.
    YYV_CFORM-ENTEREDBY = V_NAME.
    IF SY-SUBRC NE 0.
    MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'.
    ENDIF.
    I have used the following code to enter the data into the table maintenance it is working fine and throwing the error when the tax type is not the one which i have given in the select statements but the problem is when i have given the customer no which is not there in the XD02 tcode, it is accepting and showing the error message as MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'. now i have to check the customer no from XD02 and if it is existing in that tcode it should allow to save in the table maintenance otherwise throw a message as the 'Customer no does not exist, this I am unable to write so how can i check please help me .
    thankx in advance.
    Edited by: soni khadary on Apr 22, 2008 7:55 AM

    Hi Kelly,
    I guess <wa_tab>-handle_style is of type lvc_t_styl therefore you can do the following:
    ls_edit-style = cl_gui_alv_grid=>mc_style_enabled.
    "I assume you know your non-key fields' names so you can use subrotuine to perform update on each of them
    ls_edit-fieldname =  'First field name' .
    PERFORM update ls_edit.
    ls_edit-fieldname =  'Second field name'.
    PERFORM update ls_edit.
    ls_edit-fieldname = 'Third field name'.
    PERFORM update ls_edit
    FORM update USING fs_edit type lvc_s_styl.
    field-symbols: <style_tab> type lvc_t_styl,
                         <style_wa> type lvc_s_styl.
    LOOP AT <tab> ASSIGNING <wa_tab>.
       if e_row = sy-tabix .
         "get you style table
         assign component 'HANDLE_STYLE' of structure <wa_tab> to <style_tab>.
         "as <style_tab> is typed fully you can read the row you are interested in
         read table <style_tab> assigning <style_wa> with key fieldname = fs_edit-fieldname
         if sy-subrc = 0.
           "update this entry
            <style_wa> = fs_edit.
    *        modify table <style_tab> from <style_wa>. 
         endif.
       endif.
    endloop.
    endform.
    Note!
    Though, this should work, the use of RTTI as Uwe suggested would be best practise approach as far as dynamic programming is concerned. Anyhow it is still up to you which one you pick.
    Regards
    Marcin
    I noticed now that this line is not necessary
    modify table <style_tab> from <style_wa>. 
    as we simply are working with field symbols, so changes made to <style_wa> are already visible in that table <style_tab>.
    Edited by: Marcin Pciak on Mar 15, 2009 12:44 PM

  • Help Req for creating tool tip for value

    Hi ABAPers,
    I have created the search help for material.
    In search help output screen ,
                           I have the column contain a long text with the output lenght as 40 char that is displayed and once i put the mouse on it the entire  long text  should apears.
    Kindly help.
    Thanks & Regards
    Sachin Yadav

    If it is a input text field... i think not possible.
    This is only possible for buttons on toolbar (as far as i know)

  • Help Req for fresher

    I am new in this area. Pls send me some documents and reading material at [email protected] Points awarded.
    Thanks
    Murali

    Hi Murali,
    Maybe the SAP Online Documentation can help you on this.
    http://help.sap.com
    There you will find all the necessary informations on PLM issues for your used release.
    Best regards,
    Chrisoph

  • Help req. for IS-T

    Hi all,
             My new assignment is come under IS-T (Telecommunication).  I am working as a MM consultant. Can any body give me some idea about IS-T customization path or Tcode or useful link. This there any special setting required for IS-T.
          Thanks in advance ( if you have any useful document then send me on sk_deo at the rate lycos dot com )
    regards
    Sanjay

    http://help.sap.com/saphelp_telecom472/helpdata/en/5F/B82C368CAE9167E10000009B38F839/frameset.htm
    Master Data Details:       
    Business Partner  :: BP
    Contract Account  ::  CAA1,2,3.
    Regards,
    Shiva

  • BDC help req for MM02??

    hi
    I made a BDC pgm for MM02,to update the Purchasing Group filed for a matnr,based on Plant.
    But i am facing an prob that,when in a Matnr views,my curcur is coming to  Purchsaing View ,it update the EKGRP filed,but  when it directly comes to MRP 1,its given an error,that MARC-EKGRP not exits.
    Moreover I had done only recording for Purchaing View,not for MRP 1 view,but not able to understand why its going there in MRP 1 view,some time for some materials.
    Can any one tell me,how to rectify this prob?
    Regds.

    Hi,
    This problem occurs because,
    Different materials have different types,
    so this view will not be same for all,
    so if you have done recording for 4th tab ,than for next material at 4th tab some other thing will be there,
    to rectify this problem,
    do the recording for basic data 1 (it will be present for very material ) and then goto the required tab,
    i hope  it fits to your requirement,
    Regards,
    Talwinder

  • Test Rounding Rules

    Dear all,
    Would like to know are there any tools we can use to test the rounding rules.
    It is too difficult for me to dry run the rule setup by someone else.
    Regards
    Bill

    Hi all,
    I think that's mean there are no tools to help test the rounding rules.
    Anyone will have any tips on rounding rules testing?
    Regards
    Bill

  • SAP ISU- Can you help on Invoice Rounding steps at company code level,

    Dear Friends,
    Can you help on SAP ISU Invoice Rounding steps at company code level,
    Client requirement is: - for one company code they need round the Invoice and other company codes they does not required the round option.
    We have configured some steps, which are given below,
    Contract Accounts Receivable and Payable - Basic Functions - Postings and Documents
    1.     Define Rounding Rules for Currencies
    2.     Define Accounts for Rounding Differences
    3.     Accounts for Rounding Gross Amounts (IS-U)
    4.     IS-U: Define Acct Assignment Data Relevant to Transactions
    a.     (Main Transaction 0010 and Sub Transaction 0040)
    SAP Utilities u2013 Invoicing
    1.     Define Basic Settings for Invoicing
    2.     Define Invoice Rounding Rules
    Please provide the solution; I will be appreciating for earliest answer...
    Thanks and Regards,
    Prudhvi

    Hello Christiane,
    Thanks for your quick reply, and valuable information,
    But we have u201CNo roundingu201D option available at client level, path has given below, 
    SPRO u2013 SAP Utilities Invoicing u2013 Basic setting u2013 Define Basic setting for invoicing
    We are not authorized to change any configuration at client level,
    If you can able to guide me at company code level that could be great,
    Thanks for the support
    Thanks and Regards,
    Prudhvi

  • Tax code rounding rule not working in FTXP

    Dear Experts,
    I have configured new condition type for a new tax code to generate a seperate line item routed to a G/L account. The rounding rule in the condition type is commercial. Everything is looking proper up to this, but when I simulate an entry using this tax code, the seperate line item that is generated is passed in paise. I am not sure why this is happening eventhough the rounding rule is commercial. Someone please give an idea if something is missing.
    Regards
    Harika

    Hi Madhu,
    can u help me on this too please which seems close to Harika issue
    http://scn.sap.com/message/14071745#14071745
    sorry Harika,
    Thanks,
    Hamid

  • Different rounding rule by customers

    Hi all,
    I have a quiestion about rounding rule.
    Is there any way to change rounding rule to total price after tax by customers?
    I understand rounding rule can be controled by condition type. However, I am looking for a way to apply a different ronding rule in each sales by customers.
    For example, for a sales order from a customer A,  I'd like to have its total price after tax to be applied "commercial" rounding rule.
    but for a sales order from a customer B, I want it to be "round up".
    Both customers maintain a same pricing procedures and everything. Only different should be its rounding rule as I prefer.
    I truely appreciate for your help.
    Thank you very much.
    Misaki
    Edited by: Misaki Nagaya on Jul 30, 2010 10:43 AM

    Hi Rajesh,
    IMG  Personnel Time Management  Time Data Recording and Administration  Absences  Absence Catalog  Absence Counting  Rules for Absence Counting (New)  Define Rules for Rounding Counted Absences
    V_T559R
    In this step, you set rounding rules for absence and attendance counting.
    If you specify an hours or day multiplier for counting attendances and absences, the values determined can have several places behind the decimal point. It is difficult to use these values for quota deduction and payroll. In this step, therefore, you set rules for rounding the values.
    You use concrete numbers for the rounding rules and can specify whether you want:
    Only values within the specified interval to be rounded or the interval to be rolled
    The specified upper and lower limits to be included in the calculation
    You can specify several subrules for a rounding rule and number them sequentially. The system runs through the subrules in sequential order until it finds one that applies.
    Example
    For absences, you use a counting rule that is counted using an hours multiplier of 80%. You want whole numbers (full hours) to be determined in counting.
    Define a rounding rule
    With a lower limit of 0.5 (inclusive)
    With an upper limit of 1.5 (not inclusive)
    With a target value of 1
    You want the rule to be rolled, that is, to apply also to the following intervals:
    1.5 - 2.4 (rounded to 2)
    2.5 - 3.4 (rounded to 3)
    and so on.
    If you have any query's on this pls ask me.
    Thanks and Regards,
    Revathi.

  • India Witholding Tax - rounding rules

    We have come across a legal requirement for our India branch where WHT should be rounded
    up.
    For example:
    Even if the witholding tax amount is Indian Rs. 10.01 this would get rounded off (up) to the next rupee to become
    Rs. 11.00.
    Also this is used for- Tax Deduction at Source scenario.
    I am not a fico configurer however I am covering for a colleague. I would greatly appreciate some help with this change., as soon as possible.
    I believe its actually a fairly small configuration in the extended witholding tax section of SPRO.
    Please can you kindly send me detailed Step by Step instructions on how to configure the above request?
    Thanks very much,
    Warm Regards
    Edited by: Jays77 on Dec 21, 2010 4:48 PM

    Hi,
    If you are using the Extended WHT
    GO SPRO>Financial Accounting -> FA Global Settings> Withholding Tax> Extended WHT> Calculation ->  WHT Type -> Define Withholding Tax Type for Invoice Posting and Define Withholding Tax Type for Payment Posting (For Payment)
    There you need to select under Rounding rule tab Rounding w/tax amount Up tab.
    Regards,
    Kishore

  • ECM - Rounding rule

    Hi,
    Once we use PECM_CHANGE_STATUS to post the compensation planning values from IT0759 to infotypes 0015 and 0008, we need to add a rounding rule that will add as specified (00 or .05 Rappens) for Swiss.
    Example:
    -> If the monthly amount posted in IT0008 is 8790.18, it must be rounded to 8790.2. (this rule is already working for wage type 1001 Pay Period Salary through V_T511 parameters but is not respected when the ECM post is done).
    We are not using any EHP. I know that this function is available on EHP4.
    Should I use a badi to add this rule or is there any other "standard" way to do this?
    Thanks!
    Daniel Kiel

    Indeed, the activation program does not apply rounding rules. It is therefore important to apply the rules via MSS during the planning->approval process. Rounding rules are also not available manually via PA30. Please check question 3 in OSS note 879720.
    I'm not sure if the activation program from EhP4 onwards has the rounding functionality since I'm also on a lower version. Maybe, someone can confirm?
    Hope this helps.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

Maybe you are looking for

  • Database export stops with the following warnings.

    Hello, I am doing a Database Export/Import Activity. My DB is MS SQL server 2000 and SAP R/3 (4.6C SR2 , 4.6D kernel). When i try to do a DB export with option split STR and EXT files, my export stops abruptly without giving any erorrs but with a who

  • Cost Estimate using Commercial Price 3 of BOM item

    Dear Experts, I am trying to create a cost estimate for certain materials using ABC costing variant. The objective is that the cost estimate should pick up Commercial price 3 from the material masters of the BOM item and then calculate cost estimate

  • Why is InDeisgn so (memory) hungry?

    Hi there. I am working on a document that is 16 pages long, with only text- no graphics, but Task manager says that Indesign is eating up 421MBs of Memory. I have 2 other documents open, but they are both one page long, with only a bit of text. Whene

  • While creating quotation/sales price an error occur

    hi experts i have done cost planning using ECP , i have created inquiry and also assigned DIP profile to inquiry and Project Definition as well. Now , when i am creating sales price/quotation thru DP81 iam getting an error message." Error during mate

  • IOS 7 upgrade problem

    I have a iPhone 5 after I upgrade to iOS 7 I'm having problem with my networking I keep loosing my AT&T logo and it keep searching and also I have lots of miss calls I restore my Iphone grime iTunes also and it didn't help