No. range skipping for leads and opportunities

Hello,
I have assigned an internal number range to leads and opportunity, which are own transaction types, i have created by copying standard ones, but it is surprising for me to see that the numbers are being skipped in random intervals.
Have any one of you have encountered this problem...what solution you applied?
Regards

Hi,
Go to trx. SNRO and change the object to no keep in buffer and select only one number.
Best regards,
Caíque Escaler

Similar Messages

  • Assignment of leads and opportunities by product

    Hello everyone,
    I need to assign leads and opportunities by product to selected personnel, is there anyway to detect more than 1 product in the lead or opportunity? This is because a lead and opportunity may have several products bundled together and it would be very repetitive for the sales person to create one lead\opportunity for each product they sell to the same customer.
    Any ideas on how to accomplish this? I was initially thinking of using Books, but it allows for only field comparisons of single values and not multi-picklists. So in the end the problem still comes back to having more than 1 product in a lead\opportunity.
    Hope you guys here have some suggestions. Thanks again!

    Hi Venky,
    Yes, the initial thought here is to use a multi-picklist; but unfortunately I don't think the assignment manager supports multi-picklists.
    And yes, I would like to make it accessible to multiple people, not only one.
    Basically, the process goes something like the following:-
    1) Marketing obtains lead and enters into the system
    2) Lead is channeled to a product manager
    3) Product manager reassigns the lead to a salesperson
    4) Salesperson converts the lead into an an opportunity - Product Manager should be able to view this opportunity
    My question here is would the product manager still gain access to the lead once it is reassigned (salesperson is not reporting to the product manager in anyway)? And how can the product manager be able to view all opportunities which have the product he\she is in charge of?
    My initial thought here is that we have to fall back on using Books?
    Thanks.

  • Duplication check for Lead and Contact

    Hi,
    Can i confirm that, there is no duplication check for Lead and Contact during the new reacord adding?
    I also realise that during the Lead convertion, CRMOD also never check for duplication even i have existing contact available?
    Is there anyway for us to activate the duplication check during the Lead convertion?
    Regards,
    SK

    SK,
    System can check duplicate if you add external id for record (Lead and Contact).
    For more information please refer topic 'About record duplicates and external ids' on page no.1303 of OnDemand help.
    Hope this helps.
    Santosh

  • Linking Surveys with Leads and Opportunities

    Hi,
    We have a survey associated with each lead and opportunity i.e when creating either a lead or an opportunity there is a tab on the GUI in which we can fill up the survey when creating the lead/Opportunity and then save the transaction. The survey goes to a different Infoprovider and leads and opportunity to their respectice Infoproviders.
    We now want to link the survey answers to lead and opportunities. I tried infosets and there doesn't seem to be any linkage between these two . Any ideas or has anyone linked surveys to leads and survey to opportunities. Fyi we are on CRM 4.0 and BW 3.5
    Thanks.

    The CRM Surveys are fed into the cube 0WS_C01. If you have set the correct setting in the transaction CRM_SURVEY_SUITE, the survey results are extracted to the datasource 0SVY_DATA_1. Through the appropriate GUIDs the answers to the survey from the table CRM_SVY_ANSW (do not exactly remember the name) can be linked to the header GUID in CRMD_ORDERADM_H. (May be through the link table CRMD_LINK)
    Doniv

  • Different segment in same document for leading and non-leading ledger

    Hi,
    Is it possible to have different segments derived in the same document for Leading and Non-leading ledgers.
    Is there an exit where we can substitute the segment originally derived so as to update only in one particular ledger
    Please suggest.

    Thanks Alex for your response.
    But would it be possible to update the segment only in one ledger, the other one carrying the default values coming from profit center?

  • CRM report combining leads and opportunities

    Hi,
    I have LEADS and OPPORTUNITIES data in different cubes which are getting data std datasources. Now how do i create a report which shows the list of leads converted to opportunities?

    Hi Madhu,
    If you are using DSO 0CRM_OPPH / Cube 0CRM_C04, you will find IO 0CRMPLEAGUI - GUID of Preceding Lead, which captures the Lead GUID, which I assume is only when a Lead is converted to an Opportunity. You can check your data to confirm such cases. If so, restrict on 0CRMPLEAGUI where not # in your query to report such cases.
    --Priya

  • Ranges declaration for integers "and" characters

    Hi All...
    Is there any way in which we can declare a ranges variable for both integers and characters???
    I want the ranges variable to check in between 10 to 13 and 30 to 33 and A to E.
    I tried as ranges BT 'A' and 'E'. That is, it should only accept values in [A B C D E].
    But the problem is, it is accepting the value [BETER] also.
    How can this be solved.

    That is fine. But the declaration occupies more space than actual code. Readability also counts!
    Any other suggestions?
    Thank u Vivek.

  • Date Range Calculations for gaps and overlaps

    Oracle version: 11.2.0.3
    Platform : Linux
    Empno       position    start_dt       end_dt
         1                X            01/01/2008  01/02/2010
         1                Y           01/02/2009  12/31/2012
         1                X           02/01/2012   04/01/2013    
         1                Z           5/01/2012    12/31/2012
         1                Y           05/01/2013  present         
    I need to find the exact time period the employee worked for the company in a particular position. The query should be able to calculate the overlap/gaps accordingly
    For example in this case the result should be
    Empno  position   days    Total_Days
    1             x              1156        2943
    1             y              1543        2943
    1             z               244        2943
    Thanks
    Kevin

    Hi, Kevin,
    Assuming you do have overlaps (and depending on what you mean by "overlaps") here's one way to handle them:
    WITH got_new_grp AS
       SELECT  empno, position, start_dt
       ,       NVL (end_dt, TRUNC (SYSDATE)) AS end_dt
       ,       CASE
                   WHEN  MAX (end_dt)
                             OVER ( PARTITION BY  empno, position
                                    ORDER BY      start_dt
                                    ROWS BETWEEN  UNBOUNDED PRECEDING
                                         AND      1         PRECEDING
                                  ) < start_dt
                   THEN  1
                   ELSE  0
               END  AS new_grp
        FROM   table_x
    --  WHERE  ... -- If you need any filtering, put it here
    , got_grp  AS
        SELECT  empno, position, start_dt, end_dt
        ,       SUM (new_grp) OVER ( PARTITION BY  empno, position
                                     ORDER BY      start_dt
                                   )  AS grp
        FROM    got_new_grp
    SELECT DISTINCT
              empno, position
    ,         SUM (MAX (end_dt) - MIN (start_dt))
                  OVER (PARTITION BY empno, position)   AS days
    ,         SUM (MAX (end_dt) - MIN (start_dt))
                  OVER (PARTITION BY empno)             AS total_days
    FROM      got_grp
    GROUP BY  empno, position, grp
    ORDER BY  position
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables involved, and also post the results you want from that data.
    Point out where the statement above is getting the wrong results, and explain, using specific examples, how you get the right results from the given data in those places.
    See the forum FAQ: https://forums.oracle.com/message/9362002

  • Number ranges skipping for travel expenses

    Hi,
    What could be the reason for missing numbers in the expense notes document range?
    Sometimes the gap between 2 numbers is 10.
    Thank you fro giving your feedback.
    Kind regards,
    Linda

    Hi,
    I have the solution:
    SAP reserves a buffer for the document numbers.
    Tcode SNRO - object RP_REINR.
    If the application server shuts down, the numbers which are in the buffer (not assigned numbers) are lost.
    This explains gaps in the number range.
    The buffer can be removed, but this could influence the performance.
    Kind regards,
    Linda

  • Remove leading and trailing puncation

    What's the best way to remove leading/trailing puncation from a word? Trim is good for leading and trailing whitespace but can I do anything for leading and trailing punctuation. I need punctuation that's in the middle of a word.

    one way would be to create an array of characters that include all the common punctuation marks. Then, using an iterative loop, compare each char in the file with each char from the array. If a match is found, then the file char is punctuation.

  • Performance of BAPI's to create Leads and Activities

    Hi,
    I'm using the BAPI's BAPI_LEAD_CREATEMULTI and BAPI_ACTIVITYCRM_CREATEMULTI to create Leads and Activities.
    The scenario is:
    1) The input file has 3 types of records coming in
       (a) Leads only
       (b) Activities only (Prospect Lead activities)
       (c) LEad + Activity (rescheduled activities)
    2) Depending on the type of record, I'm required to create the relevant order and if required link the lead and activity (scenario - C)(using the FM CRM_DOC_FLOW_MAINTAIN_OW).
    3) In addition to this, I'm also required to link campaign elements to both Leads and Activities (done within the BAPI's BAPI_LEAD_CREATEMULTI and BAPI_ACTIVITYCRM_CREATEMULTI in the doc_flow structure).
    ISSUE:
    The issue that I am facing is that it is taking a lot of time to create these. I'm basically running a custom conversion program for LEads and Activities. The rate is almost 6-8 secs for each record, and we have about 500,000 records to be converted.
    Also, I'm having to use the following function modules after the creation of Leads and Activities:
    1) CRM_MA_ACT_SAVE - to set the status of the activity to OPEN or IN PROGRESS. This is being done after the creation of an activity because the BAPI BAPI_ACTIVITYCRM_CREATEMULTI seems to always default the status to OPEN.
    2) CRM_ORDER_CHANGE_STATUS - to set the status of the LEad to OPEN or IN PROGRESS. This is being done after the creation of an activity because the BAPI BAPI_LEAD_CREATEMULTI seems to always default the status to OPEN.
    3) BAPI_LEAD_ATT_CHANGE - to set the STATUS SINCE field for a Lead. This is being done because I'm unable to set the STATUS_SINCE field using the BAPI BAPI_LEAD_CREATEMULTI.
    The logic being used within the code is to process a batch of records (500/1000 records - value is an input selection parameter) from the input file in one go, and then commit all of them after their creation. After this, the next batch of records is again processed and committed.
    We've also tried to create LEads and Activities record by record and not in batches... but the performance still remains the same.
    I'm not sure what is slowing down the process. If whether it is all the commits, or if it is the additional use of the FM's to change the 'status' and 'Stauts-since' values after having committed the leads and activities.
    When we look at the LEads and Activities that are created, everything looks fine. It is only that the performance is really slow.
    Thanks for all your patience and suggestions,
    - Akarsh

    In order to improve the performance you could use several processes. Just start you conversion-program with several variants at the same time.
    Last time I converted 80.000 contracts it took me 6 hours with 5 processes.
    Hopes this helps.

  • Performance of BAPI's to create Leads and Activities in CRM

    Hi,
    I'm using the BAPI's BAPI_LEAD_CREATEMULTI and BAPI_ACTIVITYCRM_CREATEMULTI to create Leads and Activities.
    The scenario is:
    1) The input file has 3 types of records coming in
    (a) Leads only
    (b) Activities only (Prospect Lead activities)
    (c) LEad + Activity (rescheduled activities)
    2) Depending on the type of record, I'm required to create the relevant order and if required link the lead and activity (scenario - C)(using the FM CRM_DOC_FLOW_MAINTAIN_OW).
    3) In addition to this, I'm also required to link campaign elements to both Leads and Activities (done within the BAPI's BAPI_LEAD_CREATEMULTI and BAPI_ACTIVITYCRM_CREATEMULTI in the doc_flow structure).
    ISSUE:
    The issue that I am facing is that it is taking a lot of time to create these. I'm basically running a custom conversion program for LEads and Activities. The rate is almost 6-8 secs for each record, and we have about 500,000 records to be converted.
    Also, I'm having to use the following function modules after the creation of Leads and Activities:
    1) CRM_MA_ACT_SAVE - to set the status of the activity to OPEN or IN PROGRESS. This is being done after the creation of an activity because the BAPI BAPI_ACTIVITYCRM_CREATEMULTI seems to always default the status to OPEN.
    2) CRM_ORDER_CHANGE_STATUS - to set the status of the LEad to OPEN or IN PROGRESS. This is being done after the creation of an activity because the BAPI BAPI_LEAD_CREATEMULTI seems to always default the status to OPEN.
    3) BAPI_LEAD_ATT_CHANGE - to set the STATUS SINCE field for a Lead. This is being done because I'm unable to set the STATUS_SINCE field using the BAPI BAPI_LEAD_CREATEMULTI.
    The logic being used within the code is to process a batch of records (500/1000 records - value is an input selection parameter) from the input file in one go, and then commit all of them after their creation. After this, the next batch of records is again processed and committed.
    We've also tried to create LEads and Activities record by record and not in batches... but the performance still remains the same.
    I'm not sure what is slowing down the process. If whether it is all the commits, or if it is the additional use of the FM's to change the 'status' and 'Stauts-since' values after having committed the leads and activities.
    When we look at the LEads and Activities that are created, everything looks fine. It is only that the performance is really slow.
    Thanks for all your patience and suggestions,
    - Akarsh

    In order to improve the performance you could use several processes. Just start you conversion-program with several variants at the same time.
    Last time I converted 80.000 contracts it took me 6 hours with 5 processes.
    Hopes this helps.

  • Book of Business and access to Accounts, Contacts, and Opportunities

    We have a question about access and Books of Business...
    We have an account with a book of business. The account has 20 contacts and each contact has 2 opportunities associated with it. If a user has access and can see the account, will they be able to see the details of 20 contacts and 40 opportunities associated with the account without adding the books of business to those contacts / opportunities, or for a user to access all the records, all records need to have a book of business associated?

    Thanks for the clarification. The user still cannot actually open the contact or opportunity that is tied to an account even though the account record has a book of business. I played with the related information section for the Account Record type and the still received errors when they click on a contact or opportunity.
    I then update the contact and opportunity with the book of business and they were able to click and see the details.
    I guess this is telling us that a book of business is required on accounts, contact, and opportunities if other users would like to see the details for contacts and opportunities related to an account.

  • Opening for Lead Web Programmer in IT Security and allied services at Mumbai

    Currently we are looking for Lead Web Programmer with US based leading organization engaged in IT Security and allied services at Mumbai.. Here are the job profile as well the company profile.
    Job Profile ::
    We are looking for an experienced high-level programmer to join our growing team. This position will be to manage a portfolio of client web-sites and the server platform it resides on. The candidate will be the primary point of for the clients and will collaborate with other team members while reporting directly to the Operations Manager. We are looking for a true “team player” to join our growing organization. THIS POSITION IS LOCATED IN OUR MUMBAI/BANDRA, INDIA OFFICE.
    Job Location : Mumbai – Bandra(West)
    Company Profile ::
    It is a Data Security and Compliance Consulting company, headquartered in California for over 16 years.
    It consults, recommends, deploys and maintains an array of IT solutions. It works with a wide range of commercial, financial, health-care, banking, education and state government entities. It is committed to developing leading-edge technological solutions for our clients’ business problems, and it has been recognized for our innovative approach to listening to our clients and providing true consultation to resolve real business problems with tried and true technical solutions.
    This is an opportunity for a Lead Web Developer/Programmer to enhance and further develop their current advanced skills, in a challenging work environment with responsibility for sophisticated and complex special projects on an on-going basis.
    Summary ::
    We are looking for an experienced high-level programmer to join our growing team. This position will be to manage a portfolio of client web-sites and the server platform it resides on. The candidate will be the primary point of for the clients and will collaborate with other team members while reporting directly to the Operations Manager. We are looking for a true “team player” to join our growing organization. THIS POSITION IS LOCATED IN OUR CLIENT’S MUMBAI/BANDRA, INDIA OFFICE.
    Requirements:
    BS in Computer Science/Engineering or equivalent
    10+ years Experience required in programming PHP + MYSQL + MSSQL + .NET, HTML + JAVA HTM L, Java script
    10+ years Experience required in IIS & Apache Environment
    5+years experience working with various CMS (ex:Word Press)
    5+years experience of CSS
    Experience working with Web Hosting Management Tools (ex: c Panel, Parallels),preferred but not required
    Experience managing large portfolio of web-sites, preferred but not required.
    Excellent English communication skills.
    Ability to work effectively in a team-based environment and a demonstrated
    willingness to support team on all levels to get the job done.
    Working Hours : NIGHT HOURS for PERMANANT BASIS.
    If you are interested for this profile, kindly send your updated resume on [email protected] with Current CTC & Expected CTC.
    Click here for more details
    Regards,
    TheindiaJobs.com
    Like us on Facebook
    Follow us on Twitter

    Please note the name of this board "LabVIEW Job Openings", not general IT or programming openings. While there are people who's skill sets might overlap your requirements and those of a LabVIEW programmer, the vast majority coming to this board are looking for LabVIEW specific jobs, which is what the board is set up for.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • SAP buffer for Customer Account Group (number range skipping)

    Dear Experts,
    When creating new customer for Account Grp = TRDL for my company, I find out that the number range always skip and this problem continues. Someone told me to check it out if the problem might comes from buffer. In Tcode = SNRO (Object = DEBITOR) I find out that buffer setting = 5.
    The Question is how can I check if this buffer rate is compatible with my SAP environment? or which rate is more compatible and help solve the problem of number range skipping?
    If anybody have some suggestion please feel free to contribute it.
    Thank you very much

    Hi,
    in SNRO, take out the flag for
    "Main memory buffering".
    SAP recommends:
    Dependencies
    When buffering number intervals, gaps may result in number assignment. Buffering is therefore not possible for applications, which require continuous number assignment.
    What happens is that the system loads consecutive numbers into the buffer, in your case these are five consecutive numbers. When you create customers and do not use all the numbers already in the buffer, the numbers remain open. Example: You start XK01 for customer creation, create three customers and then logoff. You have two open numbers remaining. Numerical example: 1, 2, 3 have been used, 4 and 5 have been reserved, but are open.
    When invoking XK01 again after subsequent log-on, the system pulls the next five numbers into the buffer. Since 1,2,3,4,5 were already taken (for the previous buffer), the next buffer goes from 6 to 10.
    Numbers 4 and 5 will never be used, the practical consequence of that are the number gaps that you have noticed.
    Hope this helps.
    Rudolf

Maybe you are looking for