How to change number range in solution manager

Hi all,
Recently we had upgrade of ST patch, after that our support message sequence got changed and now support messages are getting created starting from 1. We want to change the sequence(number range).
how/where can i change the sequence of the support messages(number ranges).
Thanks & Regards
Nick Loy

Hi Prakar,
Thanks but as you told above, i am not able to change the number range 01 to 02 in SNRO.
System is not allowing me to chagne the existing one.
now my system has the details as below:in SNRO>>>>CRM_SERVIC>>>>
01     0000000001     0000999999     780
02     9999000000     9999999999     0         External
I want to change the message sequence starting from 9999000001 which is in extenal number range.
And one more thing, where can i find the number range which is being used for particular transaction?
can you help me how to change?
Thanks & regards
Nick Loy

Similar Messages

  • How to change Number range to Contact Person in Customer Master Record

    Dear all,
    We are maintaining contact person details under contact person tab in customer master record.
    Currently contact person is being created using VAP1 transaction.
    Can we automate this contact person creation by entering the data in contact person itself?
    and where can we change the number range of contact person.
    I have searched a lot to find the solution for this. Please help me to resolve this issue. Your suggestions will be highly appreciated.
    Best regards
    Venkat

    Hi Venkat,
    To your first question: "Can we automate this contact person creation by entering the data in contact person itself?"
    Yes, you can enter the contact person directly in the customer master in the contact person tab. A number is generated automatically.
    To your second question, go to transaction SNUM, and there use object "PARTNER". Here you can configure number range for contact persons.
    Hope this helps,
    Regards
    Nikhilesh

  • How to change number range for document type ?

    Dear All
    Experts
    How to change the number range for document types for entry view? I am trying to change the number range for all document type as per defined ranges in FBN1, but at the time of saving document type and number range the system is throwing error message as 
    Doc. type C1: Number range 07 is used for ledger L6 with doc. type AE
    Message no. FAGL_LEDGER_CUST093
    I have defined a leading ledger in system too with these settings
    1)     Define ledger for accounting.
    2)     Defining currencies for it.
    3)     Defining ledger group for the same.
    4)     Defining accounting principles
    5)     Assignment of principles to leading ledger.  
    Are there any extra settings required for leading ledger settings?
    I have some doubts those are :-
    How document types defined at ledger level?
    How to define them at leading ledger level?  (Like my case)
    Focus on this will be appreciable.
    Regards,
    Sharvari Joshi.

    hi ,
    The document numbers in the leading ledger and the non leading ledgers should be in sync, they should not have any differences, so incase you are trying to change the number range for C1, the  number range 07 is already been assigned to doc type AE. i guess you have cant use 07 for C1. may be you can try out with an other number range. check this and let me know if you are able to do this.
    coming to
    1.How document types defined at ledger level?
    2.How to define them at leading ledger level? (Like my case)
    Ans 1. please try defining document types for entry view in a ledger.
    path : SPRO- financial accounting new -financial accounting global settings new - document -document types -define document types for entry view in ledger.
    upon prompt enter the ledger and go ahead creating the number ranges for the document types.
    Hope this helps.
    Regards
    amrutha

  • Number range in Solution Manager 3.2

    Hi ,
    we are using solution Manager 3.2 with oracle 9i and Bi 7.0 (development)
    While we  raise Solution Manager Ticket from BW Development system,it is
    not mainatainig the proper sequence number(number range).Rest all other systems are maintaining it properly.Recently we have upgraded the Support Pack for that BW Development system.its seems like  issue is happening after the SP upgrade.
    Please guide us to resolve this issue
    thanks in advance
    George Varghese

    Hello George,
    The best possible thing for you now ( assuming that everything was working absolutely fine before the upgrade and that you now continue to have no issues with raising tickets in other satellite systems ) would be to find out the side effects of the SP applied..... or may be look for notes resembling your problem.....
    SAP Marketplace is one the one you must look upto.....In the meanwhile just raise an OSS for the same..
    Inspire ppl by rewarding..
    Regards,
    Anand.....

  • How to change number range from internal to external?

    Hi Experts,
    I have changed the number ranges for accounting document for company code (A1) external to internal and posted one accounting document using the tr.code FBN1. Now i need to revert back the changes for the number range from internal to external. i am not able to cancel the accounting document as its cancellation accounting document? please let me know any other way to change the number range from external to internal?
    Thanks & Regards,
    Raj

    Hi Siva,
    Thanks for your reply. But my expectation is any other way to change the number range from internal to external instead of going new number range (By taking any technical help)?

  • How to create Number Range

    Hi All Sap Experts
    Please tell me How to create Number Range
    I tried with the Transaction Code " SNRO "
    But Im getting The following error
    Dialog box title : " Buffering Methods ".
    Message in the Dialog box is :
       -Numbers may be lost!
       -Do not use for Financial accounting Documents!!
    ?. Do you want set this Buffering method?
    And another error is :
    Dialog box title : " Transport number range intervals "
    Message in the Dialog box is :
         The number range intervals are not included in automatic customizing changes.
         Transport all changes made within range interval maintenance must be  
         triggered manually.
         In the initial screen for range interval maintenance function
    <b>      Interval</b>              -->      <b>Transport</b>
         Please note the information that you get when transporting intervals.
    So please tell me the solution for this error.
    Thank you
    Basu
    Another is

    hi,
    Create number range object using OYSN.
    Then call the following function modules.
    FORM get_next_id CHANGING p_discrep.
      DATA: last_id LIKE zrecaudit-discrep,
            quant   LIKE inri-quantity,    "dummy
            code    LIKE inri-returncode.  "returncode
      CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'
           EXPORTING
                object           = 'ZRECAUDIT'
           EXCEPTIONS
                foreign_lock     = 1
                object_not_found = 2
                system_failure   = 3
                OTHERS           = 4.
      IF sy-subrc = 0.
        CALL FUNCTION 'NUMBER_GET_NEXT'
             EXPORTING
                  nr_range_nr             = '01'
                  object                  = 'ZRECAUDIT'
             IMPORTING
                  number                  = last_id
                  quantity                = quant
                  returncode              = code
             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.
        CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'
             EXPORTING
                  object           = 'ZRECAUDIT'
             EXCEPTIONS
                  object_not_found = 1
                  OTHERS           = 2.
      ENDIF.
    ENDFORM.                    " get_next_id
    <u><i><b>refer the links</b></i></u>
    http://www.sap-img.com/ge003.htm
    http://www.sap-basis-abap.com/sapmm009.htm
    http://www.erpgenie.com/abap/code/abap33.htm
    http://www.kabai.com/abaps/z26.htm
    Rgds
    Anversha

  • How to customize  solman_workcreate  screen in solution manager

    Hi all,
    i have a requirement as below.
    i need to change  solman_workcreate service in solution manager.
    1)i need to replace new message link under incident management with notif_create (tcode screen).
    2)provide search link to search solution database
    can you please tell me
    1)how to find out the standard application used by solman_workcreate service ?
    2)can we replace new message link with Notif_create tcode?
    3)how to call search solution database functionality(is there any standard application or TCODE available)?
    Regards,
    VANI

    Hi
    What is the error you are getting when you are adding the tcode.
    Have you checked the role of the system.....if not then
    in solar01 goto sap menu
    Business blueprint->sytem role...choose the appropriate system role
    In addition have you generate the Project IMG in the satellites system using solar_project_admin tcode  under system landscape tab
    check this guide
    https://websmp210.sap-ag.de/~sapdownload/011000358700002006042008E/HowTo_Impl_Bus_Proc.pdf
    Let me know further if this doesnt solve ur prb
    Regards
    Prakhar

  • How to check the messages in solution manager?

    hai experts !
    how to check the messages in solution manager?
    in which transaction do we see them?

    Hi Kiran,
    From what I gather from your brief question, you are perhaps looking for CRM_DNO_MONITOR that would display all queries created from Satellite/SolMan system itself, as support messages.
    If you are looking for Notifications underlying those messages, please look for DNOTIFWL.
    For more specific answers, please provide more description of what you are looking for.
    Trust this helps.
    Regards,
    Srini

  • How to change the range in numbers?

    how to change the range on graph from .0000 to .0 or .00 and ther range on thr graph from 2's to .5

    Hi,
    Click on Graph Properties icon->Scale Tab -> Click on Vertical axis and specify your range.
    Regards,
    Dpka

  • How to download support packs from solution manager

    Hi Experts ,
    Please tel me the process for down loading support packages from solution manager.iam very new to this process
    How can get an approval in solution manager to down load support packages in step by step process
    Regards

    Please check: http://service.sap.com/solutionmanager -> SAP Solution Manager in Detail -> Maintenance Optimizer -> Links and Downloads.
    Kind regards,
    Mark

  • How to add a system into Solution Manager directory.

    Hi!
    Can anybody tell me how to add a system into Solution Manager directory before generating license key for ECC installation .
    Also,
    How to connect the XI in same box with SolMan and ECC in defferent server to SolMan 3.2 .
    I am going to install SolMan and than XI in and box and after that ECC in a seperate box.
    AM I right?
    regards,
    Pratip Bhattacharyya

    Hi Bratip Bhattacharyya,
    SolMan 3.2 needs SLD only for automatic data gathering of the sap landscape; you can choose between SLD and LIS in transaction SMSY_SETUP (which simply uses the TMS-domain controllers for information gathering).
    XI needs SLD, but XI needs also a netweaver04 (s) system (Abap WAS 6.40). SolMan 3.2 isn't a netweaver04 system (Abap WAS 6.20). So you have to install XI as an own central instance (Abap + Java) on the same windows server, if you like. In this case you have to install for XI an own SLD. Different SLDs can create bridges between themselves. Please look at the SLD configuration guide (quicklink /netweaver -> installation guides).
    But don't ask me how to install two sap systems on one server on windows (on Linux it's easy I have done so); basically it will have an own SID and own "service" numbers (which means own tcp port numbers).
    If you can't dedicate to XI an own server, it's only a question of hardware sizing. For the different combinations of netweaver components you should study the master guide for netweawer.
    Bye
    Message was edited by: Riccardo Escher

  • How to transport number range group Configuration in Material Master

    Hi,
    I have this query regarding how to transport number range group in material master from one server to another.
    Problem: There was no number range assignment done for a particular material type. So, i assigned the particular mat. type to a group which had some number range intervals with the help of T-Code MMNR.
    But when i want to transport this config. to other sever, it is only transporting the interval but not the assignment done to that group. In the menu bar only Interval transport option is there.
    Can anybody help me with this I hope the query is clear.
    Regards
    Vivek

    Hi,
    Number range objects can be transported using Workbench requests.
    Thanks
    Kishore

  • How to configuration Maintenance Optimizer in Solution Manager 4.0?

    Hi All,
    Can any tell me How to configuration Maintenance Optimizer in Solution Manager 4.0?
    If any one having the document for same then please give me.
    My mail id is : - <email address removed by moderator>
    Thanks a lot,
    Harshal

    Hello Harshal,
    Please go to service.sap.com/solutionmanager, click on the "maintenance optimizer" link, then a step-by-step guide is available there.
    Another document is attached in Note 990534.
    If you have further issues, Note 1024932 might be a good starting point.
    Best regards,
    Victor

  • How to configure satellite system in Solution manager

    Hi,
    Please advise me how to configure satellite system in solution manager.
    Regards,
    Asif

    Hi,
    can you check this installation guides
    [ http://service.sap.com/solutionmanager][http://help.sap.com/saphelp_smehp1/helpdata/en/b7/07e4cf1a364a0482e29122c329b7d3/frameset.htm]
    Regards,
    Muralidhar

  • Question: How to assign number ranges to the Official Excise Document Numbe

    Question: How to assign number ranges to the Official Excise Document Number
    Field name is: EXNUM, table name: J_1IEXCHDR
    SAP CIN
    Dear expert,
    I will briefly explain the scenario:
    I have created return po.
    Process MIGO w.r.t. return PO- Material document generated.
    Process: J1IS - excise invoice other movement create.
    --> Now I want to print the document --> I m trying with T-code J1IP --> entered all the required data --. Used out put type - J1I0
    But I am not getting the list of document for printing and even print is not coming.
    There is no print document getting for a printing.
    When I checked in an above said table (mentioned in question), I found that for transaction type OTHR, there is no number ranges defined for official document no.
    And because of this reason I m not getting any document in the print.
    Can you Pl extend Ur help and Pl suggest me where (path or transaction) the number ranges can be maintained for the official excise document No.
    Thanking you all n advance and expecting your earliest response.
    Regards
    om

    Dear Friend,
    J_1IEXCHDR this table stores the all the excise documents created while excise transactions are done ,
    for that Goto j1i9 or SNRO  in these transaction you maintiane the number ranges  for the
    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
    like these  lot of objects are there  for them u maintiane the no. ranges
    Regards
    Pramod

Maybe you are looking for

  • How to get coordinates of a ROI in an image in Labview

    Hi, I have a question regarding image processing in NI-IMAQ. I have Ni-IMAQ module available, soon I may acquire NI-Vision too. I have an image file and I would like to draw a rectangle as Region of Interest (ROI) and be able to get the coordinates o

  • Interactive Forms and NWDI

    We are having difficulty finding answers on how to control code management and promotion for our Interactive Forms by Adobe projects. We have tried to load our projects into the DTR and are having some issues, but we haven't even found anything that

  • The operation couldn't be completed. (OSStatus error -61.)

    I just purchased Quicktime for Mac to merge videos but I keep receiving the above error.  It would be nice to have some kind of reference as to what this error means so can someone help me with how to resolve it?

  • OSX 10.4.6 Update give great problems with Intel

    This my first time on apple discussions. Y work with OSX almost a month and today I sign up to upgrade 10.4.6 Terrify. Y have needed to restart the computer out of extensions by recomendation of the shopper. The shopper says that this upgrade dont´wo

  • How to turnoff backlight ON in win7,8 startup?

    each time that I starting win8 on my macbook pro, I must turnoff backlight keyboard manually. how can I disable turning on backlight in bootcamp startup? Is there any script(vb,js) to fix this problem? for example: -add sendkey function in script to