How to assign customer master number ranges

hi,
sap gurus,
can i know the transaction codes for
all the number ranges which are available in std sap r/3.
can any body help me on this
regards,
balaji.t
09990019711

Dear balaji
Following are the number ranges which you can see in SNUM or SNRO.
VN01     -     SD Number Range
FBN1     -     FI Number range
XDN1     -     Customer Naumber Range
CO82     -     Production Order Number Range
MMNR     -     Material Master Number Range
Excise related Objects
J_1IARE1         ARE1 Doc No object based on Series Group
J_1IARE3         ARE3 Doc No object based on Series Group
J_1IBOND        Excise Bonding: Bond number object
J_1ICERT         Withholding Tax Certificates (India)
J_1ICHLNNO    Internal number range for challans
J_1ICONPLA    Consolidated PLA serial no. generation
J_1IDEPINV     Excise Invoice Number for Depot Invoices
J_1IEXCEXP    Export excise invoice number range
J_1IEXCINV     Excise invoice number
J_1IEXCLOC    Local excise invoice number range
J_1IEXCTST    Excise invoice with intervals
J_1IEXINEX     Excise invoice number for export
J_1IINTNUM    Internally document number to be generated
J_1IINTPR2     Despatch serial number
J_1ILIC           Excise Bonding: License number object
J_1IPLA2        PLA part II number range object
J_1IRG1          RG1 Number range object
J_1IRG1_T       No. Range for RG1 - Excise group / Material
J_1IRG23A1     RG23A part 1 no. range object
J_1IRG23A2     RG23A part II number range object
J_1IRG23C1     RG23C part I number range object
J_1IRG23C2     RG23C part II number range object
J_1IRG23D       Folio Numbers for RG 23D
thanks
G. Lakshmipathi

Similar Messages

  • Jump in Customer master number range

    Hello  friends,
         Earlier i had a jump in my Customer master number range.Since it had a buffer of  5 Nos set in the number range object  debitor.Now i have removed the  buffer .
    Is it possible for me to  use the unused numbers ie;Create new customer codes with the missed out numbers.I couldnt ge the list of unassigned numbers in XDN1.In the drop down menu that option is greyed and i couldnt select it.
    Pls let me know whether it is possible to use the unassigned numbers.If yes how.
    Regards,
    K.Vivek

    Ram Ki,
    Thanks for u reply.This is a internal number range.The same has been assigned to the account group.If you can go and Check XDN1.In the menu bar --->Intervals There is a option to view the unassigned numbers and option for reorganising.But those menu items are greyed out.I would like to know the possibility to use thatand take corrective action.
    Regards,
    K.Vivek

  • Plant specific customer master number range

    HI Friends,
    Is their is any option available in SAP for assigning plant specific number range to customer master record ?
    Regards,
    Chetan.

    Dear Chentan,
    No you cannot maintain Plant specific number ranges. WHat you can do is create seperate Customer account groups (SH, SP, BP, PY) for each Plant & assign unique number rages to eacg group.
    But the above is recomended only if you have couple of plants say 2 or 3 plants. If you have multiple plants then it would to confusions. Also the standard system would not give Customer's outstanding Plant-wise & it can only give company code wise.
    Thus having seperate Customer's number range for each plant does not seems to be much beneficial...
    Hope the above helps.. .
    Reward if useful...
    Thanks,
    Jignesh Mehta
    Mumbai
    98700 10230

  • Customer Master number range enhancement

    Hi All,
    The problem is customer no. range in SAP is 10 digits and also we can give int or ext.
    now i need ext no. range with 11 digits - i.e DEFH0000032
    HOW ?
    PL HELP
    REGARDS

    drop a zero...
    no way beknownst to me to extend the length of KUNNR without wrecking the DDIC.
    you could maybe use internal numbering, extend KNA1 by a Z-field (or misuse an existing one) to hold a longer external number and then create a search help to find the internal KUNNR for a given external number.
    Cheers
    Thomas

  • How to create customer master data for walking customer in retail

    hi experts !!!!!!
    for retail industry e.g books trading industry
    how to create customer master data for walking customer in retail
    its dummy or one time customer
    if i create one time customer then same customer number can i use for every new order and every new customer how ?????
    thanks

    Dear Hanumant,
    As per my view,,
    You can use one time customer functionality to full fill your requirement.
    When you create sales order with one time customer system take you to the customer data maintanence screen through that you can maintain the one time customer data.
    Same one time customer number you can use for every new order through maintaining different data.
    I hope this will help you,
    Regards,
    Murali.
    Edited by: Murali Mohan.Tallapaneni on Dec 19, 2008 6:08 AM

  • How to control Held documents number ranges

    Hi Gurus.,
    pls tell me How to control Held documents number ranges.,
    its urgent .one of my client asking separate number ranges for held documents
    with regards
    ramesh

    Dude,
    I understand you are refering Hold Document not Park document. Becoz Park document use the same number range which is used for normal document posting. However, for Hold Document Number ranges, i advice you to liaise with your Abaper for BADI/Exit/ or etc etc.....for maintaing a specific number range or validation of number given.
    pls assign point if useful

  • How to find out the Number range object for Incident number

    How to find out the Number range object for Incident number ?
    CCIHT_IAL-IALID
    regards,
    lavanya

    HI, an example.
    data: vl_num type i,
          vl_char(6) type c,
          vl_qty type INRI-QUANTITY,
          vl_rc type INRI-RETURNCODE.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = '01'
        OBJECT                        = 'ZRG0000001'
       QUANTITY                       = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
    IMPORTING
       NUMBER                        = vl_num
       QUANTITY                      = vl_qty
       RETURNCODE                    = vl_rc
    EXCEPTIONS
       INTERVAL_NOT_FOUND            = 1
       NUMBER_RANGE_NOT_INTERN       = 2
       OBJECT_NOT_FOUND              = 3
       QUANTITY_IS_0                 = 4
       QUANTITY_IS_NOT_1             = 5
       INTERVAL_OVERFLOW             = 6
       BUFFER_OVERFLOW               = 7
       OTHERS                        = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    vl_char = vl_num.
    write vl_char.
    Regard

  • How to assign  custom rdf report as  stylesheet PO communicator

    R12 :How to assign custom rdf report as stylesheet PO communicator

    Are you trying to have the table where the lines are always be the same size no matter how many lines are present?
    If so, you some choices:
    1) If your lines are always the same height, you might get some ideas on what to do from this article:
    http://oracle.anilpassi.com/xml-publisher-developing-reports-printed-on-pre-printed-stationary.html
    2) If your lines vary in height, then you should look into a PDF template. This will give you a pre-printed stationary look in which the drawing of boxes and lines is not affected by the data content.
    3) Other less attractive options are a) making the report in XSL-FO, and b) making a bitmapped RDF report
    There is currently no solution that I am aware of for a pre-printed stationary look using an RTF template in which the data lines are of variable height.

  • How to set custom master page for social/sites.aspx in sharepoint 2013

    How to set custom master page for social/sites.aspx in sharepoint 2013.?
    File path is
    C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\TEMPLATE\FEATURES\SocialDataStore\SocialDataStoreList\sites.aspx
    Thanks in advance

    Hi,
    You could open the sites.aspx in Notepad or SharePoint designer, and set the master page to your own master page directly via editing:
    <%@ Page language="C#" MasterPageFile="~masterurl/custom.master"      Inherits="Microsoft.SharePoint.Portal.WebControls.FollowedContentWebPartPage,Microsoft.SharePoint.Portal,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c"
    %>
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to find - Customer Master IDoc was created Manually or by Change pointe

    Hi all,
    I have an IDoc(Customer master) number (which I have taken from the payload in SXMB_MONI).  I would like to know whether this has been created by a user manually(BD14) or by a change pointer.
    Please help.
    Cheers
    danus

    Hi Vardharajan,
        Yes I agree with you. What I mean by IDoc created by change pointer is - 'IDoc generated because a change(pointer) is tracked by the system', in other words, due to some change made to the data.
    As you know, the other option of creating IDoc is by BDxx transaction. This option is usually used to push (unchanged) data.
    So in essence, what I am interested to know is , has the IDoc been generated because someone made a change using say, VD02 / XD02 or pushed the data manually.
    Please do ask, if anything is not clear.
    cheers
    danus

  • I have to customized the number range from 0000000A0000 to 9999999Z9999

    Dear all
    I have to customized the number range from 0000000A0000 to 9999999Z9999 internally but in tran. MMNR system throws error enter numerical value only.is it not possible to enter alfa numerical number range.Pl. help me.
    Reg-AJIT

    hi,
    Internal No. range can be only numeric and external no. range can be numeric, alphanumeric or alphabetic.
    Regards
    Priyanka.P

  • Material Master Number Range - Very Urgent

    Hi ,
    My client is having existing material codification as below :
    all material types for e.g. ROH, HALB, FERT will be starting their material code with 00 or 01 or 02 etc. sine the first two digits denotes the year , which will vary from material to material. The characters used will be from minimum 8 to maximum 14 - Alphanumeric.
    for e.g. my material code will be
    for ROH - 000040101F0101
    for FERT - 00801000101
    for HALB - 013000101C
    here for all materail type first 2 digit are for year and next will be prod. code , then assy , then sub assy , if forging applicable it will be F , if casting then - C
    How this can be mapped in SAP as one series for all material types, is it possible for system to identify the material type, what is advantage & disadvantage of the same.
    Pl. help
    Thanks & Regards,
    Vikas Mayekar.

    Hi
    Using Standard SAP for Material number ranges may not be able to map your requiremnts.
    But you can use the SAP enhancements available for the Number ranges determination & so onj...
    Please use the User exit in CMOD or SMOD
    You can use enhancement MGA00002 (for industry) or enhancement MGW00002 (for retail) for this.
    For more information, see the documentation for the following components assigned to these enhancements:
    Industry
    EXIT_SAPLMG02_001
    EXIT_SAPLMG02_002
    Retail
    EXIT_SAPLMG72_001
    With the exception of the transfer structure, this function is identical to customer enhancement MGA00002 for material number assignment for the material master for industry. Please see customer enhancement MGA00002 for more information and for sample coding.
    EXIT_SAPLMG72_002
    With the exception of the transfer structure, this function is identical to customer enhancement MGA00002 for material number assignment for the material master for industry. Please see customer enhancement MGA00002 for more information and for sample coding.
    EXIT_SAPLMGNK_003
    Please take help of ABAPer's for implementing the same
    Thanks & Regards
    Kishore

  • Exit for assigning mat doc number range in MIGO

    TCode MIGO
    I want to assign number range for material document on the basis of Plant and the same is not availabe via standard customizing.
    Can anybody suggest any user exit  or BADI for the same

    the following user exits and badi's mite help
    'BADI_MATERIAL_REF'
    user exit
    MGA00001 - Material Master (Industry): Checks
    and Enhancements
    MGA00002 - Material Master (Industry): Number
    Assignment
    regards
    navjot
    reward points for helpfull
    MGA00003 - Material Master (Industry and
    Retail): Number Display
    Message was edited by:
            navjot sharma

  • Asset master number ranges

    Hi Guru's,
        I am using number ranges as08 1,2,3,4 serious.when i create asset master for which asset class system taking which serious how we can know that where we can assign for

    Happy !!
    While creating Asset..Asset Class is must !!
    Number range is defined in Asset Class. So, system identify the successive asset number as per the number range in asset class.
    Regards,
    Hari.

  • Swtiching  Group in the material master number ranges

    Can any one please tell me how to switch the group for the material master numbers ranges..We are in the sandbox.We already in the midway .
    Thanks
    JJ

    go to the MMNR tcode
    hit change group
    keep cursor on the material type and go to
    Menu - Edit-select element
    it will turn in blue
    than select your group adn from ment edit-hit assign element group
    this will assign new group

Maybe you are looking for

  • All Update options are greyed out in RH11

    Hi.  I just reinstalled TCS5/RH11 to get rid of a missing .xpj file issue.  Then I imported an FM book and created a glossary in RH11.  I then edited my FM book and came back to my RH11 and tried to update the project with the changes in my FM book. 

  • Mac Mini Server (2010) & Windows Server 2008

    Hi, Would it be possible to boot, install and run Windows Server 2008 on the Mac Mini Server, replacing Snow Leopard Server OS? I assume I need the SuperDrive or similar DVD drive to realize this scenario. Regards, sb

  • Error in consolidation logic

    Hey Experts I am running consolidation logic and getting the error as shown below: RUN_LOGIC:Member "A1" not exist Failed A1 is the member from Group dimension and I am converting USD to A1 Any guess!

  • What to Backup now?

    My external hard drive is partitioned into two drives. One is for the time machine backup, and the other contains a bootable backup of my internal hard drive. I noticed today for the first time, that in the time machine preferences, I am backing up t

  • Unable to send ussd requests in my iphone 5 after updating to the latest ios 7.0

    Apdating to the latest ios 7.0 I am unable to complete USSD requests. It was working very well with ios 6.1.4. It tries to make a call instead of performing my request and says that the number is not valid.