Linking payroll area with number range

Dear Freinds
I am looking for a solution of linking various payroll areas (defined under a single compan code) with the number ranges (more than 1). Please give a solution as to how we can attach one particular number range with a particular payroll area.
Thans in advance
Raghavendra Jyoti

Try to find out if payroll area is an attribute in NUMKR feature

Similar Messages

  • Business Area Wise Number Ranges

    Hi All,
    Can you please guide me  how to maintain Business Area wise Number Ranges for Vendor and Cust Payment , FI Invoices and other Fi documents.
    Regards,
    Javed

    Hello,
    Number ranges cannot be maintained per business area.
    Number ranges are created at company code level. Please see transaction code FBN1
    You can create number ranges year dependent or year independent
    You can create number ranges external or internal
    You assign the number ranges to document type in OBA7
    One document type can have only one document number ranges. Whereas, a single number range can be assigned to one or more than one document type.
    Regards,
    Ravi

  • Is it possible to differentiate one payroll area with different currency under same company code

    Hi experts ,
    MY client wants to pay in yemen currency for the employees who working in yemen, but it was comes under same company code created for india.we have differentiated yemen under different payroll area wise . so is it possible to  differentiate one payroll area with different currency under same company code.
    thnx,
    vamshi keshavapatnam

    Hi Vamshi,
    I don't think so what you have done is correct. It seems like Global Employment functionality. As I understood you have some EEs which are Indian but working in company branch of Yeman.
    If this is the case you should define a new company code for Yeman branch and use Global Employment functionality. By this you can make decision to pay in home currency or traget country currency.
    Regards,
    Omid

  • Maintenance dialog with Number Range Object

    Hello Experts,
    i want to create a maintenance dialog with some fields for maintain a db table. In this field i have a id. This i should increment automatically like a Number Range Object. How can i do this.
    E.g.
    id    name
    1    manfred
    2    steve
    When i will write a new name i only want to write the name not the id. The id should be the 3 in this case automatically. Can anybody say how i can do this?
    Regards
    Chris

    I would guess you can create a number range object and then use the NUMBER_GET_NEXT FM to get the next number as part of your event (before saving like event 01 or other events as per your requirement) ...
    Check out the following links which talks about making field READ only
    HOW TO MAKE FIELDS AS READ ONLY IN TABLE MAINTAINANCE
    and also the wiki entry on table maintenance
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609

  • ARE 1 Number Range

    Dear Experts,
    Am having a problem in generation of are1 number range.
    Am having 3 series groups for exports, for a one plant. Where as we will maintain number range for are1 wrt Series group.
    but here the client requirement is they want only one continuation number range for a plant. they dont want wrt series group.
    For creation of excise invoice they want 3 series group but for creation of ARE1 they want only one series group. Pls let me know how to habdle this or is there any user exit is there for are1 number range generation.
    And one more problem am facing is i have to attach 2 excise invoice to one are1 form in that system is not allowing me to attach because two excise invoice are belongs to different series group. Pls let me know how to handle this series group issue in ARE1 Generation.
    Regards
    Nagesh

    Hi,
    You can make use of the user exit J_1I7_USEREXIT_EXCISE_BEF_SAVE..
    You need to maintain a custom number range with single series group through SNRO T.code .
    Call function Number_get_next Fm to get the new number from the defined number range object.
    overwrite the excise invoice number with new excise number in the above mentioned user exit.
    Regards,
    Sai

  • In which Infotype ,we link Payroll(India ) with time Management

    Hi Expert,
    Can you explain , in which infotype ,we link Payroll with Time management?
    Can you Expalin the procedure

    It should be through different infotypes
    For Eg   IT0008  taking capacity utilisation  and Work hours/period from infotype 0007 ( capacity utilisation level and Employment percent)
    For absence valuation in payroll the absence types will have to mention (IT2001)
    check this link
    Where is link between 0007 and 0008 infotype

  • ARE-3 Number Range

    Hi,
    I have maintained number ranges for ARE-3 in SNUM object J_1IARE3 but when we save ARE3 document it is picking up diferrent number range i.e from J_1IINTNUM Internal number so kindly guide me how to proceed.
    Thanks&Regards
    Suneel puranam

    Hi
    Kindly check once did you maintain both  the cases Same number ranges because if it is deemed exports system should fetch from based on the series group but coming to internal number it is not based on any excise and series gorup
    so kindly check once
    Regards,
    prasanna

  • Dealing with number range gaps with grouping?

    What i am trying to do is get a query of data that gives me a start year and end year. I can't use min and max as there could be gaps in the year.. 1999,2000,2002
    i am missing 2001 .. so i need 1999/2000 and 2002/2002
    here is a bigger example.
    Table layout
    year,color
    1998,red
    1999,red
    2001,red
    2002,red
    1997,blue
    1998,blue
    2001,blue
    2000,green
    2002,green
    2003,green
    2005,green
    Desired Output to find year ranges, accounting for gaps also.
    1998,2001,red
    1997,1998,blue
    2000,2000,blue
    2000,2000,green
    2002,20003,green
    2005,2005,green
    Anyway via SQL or PL/SQL to get this?
    The real data i'm using is a bit more complex (nothing major tho) but this is basically what i'm drilling it down to.

    Hi,
    Yes you can do that in SQL; no need for PL/SQL.
    WITH     got_grp_start  AS
         SELECT     year
         ,     color
         ,     CASE
                   WHEN  year > 1 + LAG (year) OVER ( PARTITION BY  color
                                                                ORDER BY        year
                   THEN  1
              END     AS grp_start
         FROM    table_x
    ,     got_grp          AS
         SELECT  year
         ,     color
         ,     COUNT (grp_start) OVER ( PARTITION BY  color
                                           ORDER BY      year
                               ) AS grp
         FROM     got_grp_start
    SELECT    MIN (year)     AS start_year
    ,       MAX (year)      AS end_year
    ,       color
    FROM       got_grp
    GROUP BY  color
    ,            grp
    ORDER BY  color
    ,            grp
    ;The solution above will work even if there are duplicates (2 or more rows with the same color and year).
    If there are never any duplicates, and the difference between adjacent years in the same group is always exactly 1, then there's a shorter, cuter way:
    WITH     got_grp        AS
         SELECT     year
         ,     color
         ,     year - ROW_NUMBER () OVER ( PARTITION BY  color
                                             ORDER BY         year
                               ) AS grp
         FROM     table_x
    SELECT    MIN (year)     AS start_year     -- Main query is the same as earlier
    ,       MAX (year)      AS end_year
    ,       color
    FROM       got_grp
    GROUP BY  color
    ,            grp
    ORDER BY  color
    ,            grp
    CPSteven wrote:...
    year,color
    1998,red
    1999,red
    2001,red
    2002,red
    1997,blue
    1998,blue
    2001,blue
    2000,green
    2002,green
    2003,green
    2005,green
    Desired Output to find year ranges, accounting for gaps also.
    1998,2001,red
    1997,1998,blue
    2000,2000,blue
    2000,2000,green
    2002,20003,green
    2005,2005,greenAre there some typos in the data or output?
    Edited by: Frank Kulash on Sep 4, 2009 6:06 PM

  • Link business area with cost centers

    hi sap guru's
    my doubt is we have 4 business areas and 60 cost centers how to link this
    Regards
    A.soma
    Please, avoid asking basic questions

    Through the business area entry in cost center master data

  • Number ranges are in the Inactive mode.

    Hi friends,
    I am getting a problem with number ranges. When I am at Number ranges screen the options display only in active mode. change intervals and enter intervals are not in the active mode. How can I set this number ranges to be active and can be used. The same problem I am facing with the document number ranges. Please anybody help me in this regard. Thank you in-advance

    Hello,
    It would be authorisation issue. please use TCode SU22 and find if you have authorisation for object "S_NUMBER"
    Regards
    Lavanya

  • Different number range for different  sales area but same order type

    i have 2 different sales area but i have assigned same sales order type for 2 different sales area,
    but i need the number range different for different sales area for that same sales doc type,
    is that there is any user exists for number range? if so how can i find the user exists

    Hi,
    You can surely have a different number range per Sales Area. For this you will have to make use of a User Exit (which would surpass the standard SAP functionality). Try USEREXIT_NUMBER_RANGE.
    Maintain the desired range in VN01 with the respective Range Keys.
    Make a custom table comprising of Sales Area and Number Range keys (same keys which you maintained in VN01).
    Now everytime, the system will check which sales area is used and accordingly, it will fetch the Number Range Key~Sales Area combination from the custom table, and will pick up the number range from VN01.
    Coding should done by a good technical guy to make this work nicely.
    Hope this helps you.
    Regards,
    Vivek

  • Controlling Area Number Range Goup

    Hi,
    We have 3 Clients at Development. 1.Golden Client 2. Unit Test Client 3. Sand box. i have maintained Controlling Area and Number range at Golden Client. i have assigne Groups to Conrolling area like COIN, RKU1 ect.
    When i am assigning Groups at Unit Test and Sand box but its not showing Groups.There is not any list at Non-assigned.
    We have not transport number range to other clients.
    regards
    Cheers

    Hi
    You have to do this action for every client seperately, as they are client dependant settings.
    Rgds
    JeVe

  • Maintenance Order Number Ranges.

    Hi Gurus,
    I am working on the configuration of the Maintenance Orders for my client. I am trying to create 5 different number ranges for the five different order types to be used for five different processes. I have created the number range groups but strangely enough the groups are not visible in the list. Can you please suggest what should I do and where am I going wrong? I am creating the groups ( which are visible when I try to create new ones) from menu bar--> groups and insert.
    Thanks in advance.
    Anoop

    Hi Anoop,
    As per the referred case, what the system does is that the number range interval created while creating the new number range group gets assigned to an already existing number range group because there are several number range groups already defined, having no number range interval assigned to them so whenever a new number range interval is added, the number range interval gets linked with the already existing groups despite assigning the number range interval to the newly created group. The system does not even create the new number range group. For this you can change the text of existing groups or else assign each group with an interval and then start creating new groups with the desired number ranges other wise it would not create the group but the number range interval would definitely be created.
    Regards,
    Muhammad Usman Kahoot
    Edited by: Usman Kahoot on Nov 8, 2011 6:28 PM

  • Error: Number range  for object RESB does not exist

    Hi
    I'm trying to convert a planned order (to purch requisition) partially via trxn code MD04. Upon saving I get the above error msg. The complete text of msg is as  follows. I've maitained the number ranges of all the objects specified in this error msg. Can somebody explain on how to overcome this problem?
    Many thanks
    BE
    Error Msg Text:
    Number range  for object RESB does not exist
         Message no. 61501
    Diagnosis
         The system cannot create a document for an MRP element if no number
         range or interval has been maintained in Customizing of MRP or if t
         number range you have maintained is not allowed.
         Below is a list of MRP elements that are affected:
         Number range object  MRP element
         PLAF                 planned order (operative oder simulative)
         EBAN                 purchase requisition
         RESB                 dependent requirements
         MDSM                 simulative dependent reqmts (long-term plannin
         MDTB                 MRP list
    Procedure
         Check the number ranges in Customizing. If you do not have the necessa
         authorization, please get in touch with your systems administration.

    Hi
    Thanks for the reply. But I have maintained the number ranges for matl. reservations/dependant requirements at OMI2. Here is the screen shot..Do find anything wrong with it? Pl advice.
    NR Object                             MRES/DREQ
    No.                          From Number            To Number          Curr Number          Ext
    01                           0000000001               8999999999           380                    blank
    02                           9000000000               9500000000           blank                  checked
    RB                          9500000001               9999999999           blank                  checked
    Number ranges for the plants are assigned to 01 (0000000001 to 8999999999).
    thanks
    BE
    Edited by: Brian Elfie on Jan 10, 2008 11:27 AM

  • Number Range Object

    Hi
    During data extraction im getting the following error message
    "Error calling number range object ZMATNO for dimension D2"
    pls help me out.. how should i proceed from here...
    Thanks in advance,
    Sowdha.

    Hi Sowdha,
    First any way you have to correct the number range interval using RSRV. If it reports error with number range interval for this particular dimension.
    (RSRV should report error when you check the dimension)
    The reason(s) for the error could be:
    1. The number range interval for this dimension is "Buffered"
    2. There are not many "Dialog processes" available in the system
    To avoid such error:
    1. restrict the number of parallel processes while loading the data using the option
        "PSA and then into Target"
    2. or make sure that sufficient number of dialog processes available at the time of  
        loading
    Check the note "708297" for details why the error occurs though it is not directly pointing to Dimension ID number ranges, the explanation suits your problem also.
    Assign points if this helps.
    thanks
    sarma

Maybe you are looking for