Need to Archive more than 5000 CP's in CRM.

Hi All,
I need to archive more than 5000 Contact Persons in CRM system
As many of these contact persons are having relationships in CRM which also have replication to R/3 system and contains the R/3 ID , Also these Contact Persons have the open CRM documents like Opportunities, Actitivies and Leads.
Can anyone guide me how to delete the relationship of the all Contact Persons in one shot or groups like 100 or 200 which are not having any CRM Documents present.
and please let me know the way to delete the role attributes of these contact persons which have been assigned to them in R/3 system as after deleting these roles only the relationship can be deleted.
Best regards,
Jatin Goel
Edited by: Jatin Goel on Jan 11, 2009 1:54 PM

I have find out the way myself.

Similar Messages

  • I need to display more than 5000 rows by JClient JUtableBinding

    I need to display more than 5000 rows by JClient JUtableBinding. is it possible not to get PassivationError and display it?

    FYI,
    In a future release, BC4J will also allow VOs that use oracle-database ROWNUM features to fetch only a range full of rows rather than the entire set of rows. For queries that return thousands of rows and you want to display them in a table or pages, this option on the VO should come in handy.

  • How to export more than 5000 SharePoint items to excel?

    Need a solution on how to export more than 5000 share point items to excel file.

    Hello Chitra,
    Option
    suggested by soni is valid you can increase threshold limit through CA as well
    as you can disable list threshold using PowerShell.
    $web =Get-SPWeb
    "URL"
    $list =$web.Lists[“BIG_LIST_NAME”]
    $list.EnableThrottling= $false
    But disabling threshold cause performance issue, so as per best practices manage threshold limit according to your requirements
    from CA.

  • I an getting an error with photo merge in PS cc . It gives me a code tmp00000001 using from photoshop and if I try from bridge it tell me that I need to select more than one image. It is not recognizing the photos I am selecting in bridge. please help. my

    A new problem with CS5 forced me to download PScc but the problem is still there.  I am getting tmp00000001 in photo merge when importing multiple files from inside PS and if trying from bridge I am getting a pop up box telling me I need to select more than 1 file. Photoshop potomerge is not recognizing my selections from bridge..!! please help.. my knowledge of computers is a 3 on a scale of 1-10

    if i run this particular code
    ( SELECT
    AccountDetails.CUSTOMERNUMBER, AccountDetails.ACCOUNTNUMBER, CUSTOMERDETAILS.CDTITLE, CUSTOMERDETAILS.CDFIRSTNAME, CUSTOMERDETAILS.CDLASTNAME, AccountDetails.ACCOUNTTYPE,
    AccountDetails.ORIGINALCONTRACTENDDATE, AccountDetails.CONTRACTTERM, AccountDetails.CONTRACTENDDATE, AccountDetails.BRANCHAREA, AccountDetails.PRODUCTTYPE,
    AccountDetails.HOUSEBANKACCOUNT, AccountDetails.CARMODEL, AccountDetails.CARLICENCE, AccountDetails.ARREARSBALANCE, AccountDetails.CODEBTOR, AccountDetails.GUARANTORNUMBER
    FROM AccountDetails
    JOIN CUSTOMERDETAILS ON AccountDetails.CUSTOMERNUMBER = CUSTOMERDETAILS.CUSTOMERS1
    WHERE EXISTS
    ( SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    AND DebtEpisodes.DCASentDate IS NULL
    AND Dcaaccountallocation.ACCOUNTID = AccountDetails.ACCOUNTNUMBER
    AND DebtEpisodes.DCAORLAWYER = 'DCA'
    This returns 1 row of data
    However if i run a small part of the above code...
    SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    It returns a lot of rows with a status of 2
    Now i presume what I am going to do is to ensure that all the fields provide satisfactory requirements, with regards to the above code. Although I have many records in all the stated tables already.
    :(

  • I need to connect my iPad to a projector and USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    I need to connect my iPad to a projector and have USB ports. What do I need to do this and where can I get the suitable fittings? I really need to have more than one USB connection port. Help

    You can connect via a cable or wireless using an Apple TV.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    Connect an iPad to a Television or Projector
    http://www.everymac.com/systems/apple/ipad/ipad-faq/how-to-connect-ipad-to-tv-te levision-projector.html
    Connecting iPad iPhone or iPod to TV or Projector
    http://www.disabled-world.com/assistivedevices/computer/ipad-tv.php
    iPad Accessories: Connections for a TV or Projector
    http://www.dummies.com/how-to/content/ipad-accessories-connections-for-a-tv-or-p rojector.html
    You may be interested in AirPlay on the Apple TV:
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    http://support.apple.com/kb/ht4108
    If your location does’t have wifi to use with the Apple TV, use a portable router.
    Portable routers http://compnetworking.about.com/od/routers/tp/travel_routers.htm
     Cheers, Tom

  • Using Sharepoint Client Object Model with large libraries (more than 5000 elements)

    Hi,
    i have issue with acccessing large list with more than 5000 elements. I use a Sharepoint Client Object Model. 
    It worked till yesterday when in the list was less than 5000. Now there is in the library more than 5000 elements. I have changed in the Central Administration limit for list from 5000 to 10000, but it helped only for list views. Script returns now 0 records.
    var clientContext = new SP.ClientContext.get_current();
    var currentListId =_spPageContextInfo.pageListId;
    oList = clientContext.get_web().get_lists().getById(currentListId);
    var camlQuery = new SP.CamlQuery();
    camlQuery.set_viewXml('<View Scope=\"RecursiveAll\">'+
    '<Query>'+
    '<Where>'+
    '<And>'+
    '<Eq><FieldRef Name=\"ContentTypeId\"/><Value Type=\"Text\">'+contentTypeId+'</Value></Eq>'+
    '<And>'+
    '<Eq><FieldRef Name=\"_x0040_Client\" LookupId=\"TRUE\" /><Value Type=\"Lookup\">'+client+'</Value></Eq>'+
    '<Eq><FieldRef Name=\"_x0040_Company\" LookupId=\"TRUE\" /><Value Type=\"Lookup\">'+organisation+'</Value></Eq>'+
    '</And>'+
    '</And>'+
    '</Where>'+
    '</Query>'+
    '<ViewFields>'+
    '<FieldRef Name=\"ID\" />'+
    '</ViewFields>'+
    '</View>'+
    '<RowLimit>100</RowLimit>');
    camlQuery.ViewAttributes = "Scope='RecursiveAll'";
    listItems = oList.getItems(camlQuery);
    clientContext.load(listItems);
    clientContext.executeQueryAsync(Function.createDelegate(this, onQuerySucceeded), Function.createDelegate(this, onQueryFailed));
    Please advice how i can resolve this issue. Thanks a lot!!
    from MSDN forum...

    Thanks you, friends!
    That to resolve my issue, i made next things:
    1) turn off a limit items for my list
    2) used SPQuery.ListItemCollectionPosition
    property,
    3) and corrected little mistake in my CAML Query.
    May be a punkt #2 will be enough, don't you :)
    from MSDN forum...

  • Issue on Dashboard 4.1 Export as .SWF file while retrieving more than 5000 rows.

    Hi Experts,
        We  have a BO Dashboard (version 4.1) that displays the treasury information on cash flows across various countries and regions.
         The dashboard is built on Universe and  has large number of components (like filter, aggregation, glow region) with some third party Centigon add on for Google Maps. - GMaps Plugin for SAP BusinessObjects Dashboards provides an interactive map design solution for enterprise dashboards components).
         When trying to add more source content to the existing dashboard (and exceeding more than 5000 rows ) and trying to export the dashboard as .SWF file , we are getting a run-time error as below.
         But when we minimize the number of rows manually in data mapping (<=4500 rows) we are able to export the .SWF file.
          Seriously couldn't arrive at any conclusion or it is a tool limitation.
         Please help us in this issue.
    Regards,
    Prasana Ravichandran

    Justin
    I partially agree with you, When I say condition I was talking about LOAD when clause in ACCESS PARAMETERS not where condition of select clause
    When you use load condition with a byte range is checked before parsing the row , So to skip a row you can use something like this (seee example below)
    CREATE TABLE ext_employees
    (employee_id NUMBER(4),
    first_name VARCHAR2(20),
    last_name VARCHAR2(25),
    job_id VARCHAR2(10),
    manager_id NUMBER(4),
    salary NUMBER(8,2),
    commission_pct NUMBER(2,2),
    department_id NUMBER(4),
    email VARCHAR2(25)
    ORGANIZATION EXTERNAL
    TYPE ORACLE_LOADER
    DEFAULT DIRECTORY ext_dir1
    ACCESS PARAMETERS
    records delimited by newline
    LOAD WHEN ( 1:5) != '*****'
    badfile ext_bad_dir:'empxt%a_%p.bad'
    logfile ext_log_dir:'empxt%a_%p.log'
    fields terminated by ','
    missing field values are null
    ( employee_id, first_name, last_name, job_id, manager_id,
    salary, commission_pct, department_id, email
    LOCATION ('empext.dat')
    REJECT LIMIT UNLIMITED
    This may solve his problem
    Santhosh

  • Need to concatenate more  than 10 fields

    Hi All
    in Mapping need to concatenate more than 10 fields , is there any way to make it short can concatenate all in one stretch, instead of using mutiple conctenate statements
    please help me
    Thanking you
    Sridahr

    If this is a one time activity, better to go for using concatenate function multiple times.
    Regards,
    Prateek

  • How to display more than 5000 rows in JClient JUTableBinding?

    I have to show more than 5000 rows by JClient JUTableBinding? on that I get PassivationError, I use JDev 9.0.2. Is it possible?

    FYI,
    In a future release, BC4J will also allow VOs that use oracle-database ROWNUM features to fetch only a range full of rows rather than the entire set of rows. For queries that return thousands of rows and you want to display them in a table or pages, this option on the VO should come in handy.

  • Need to maintain more than one address for single customer.

    Dear All,
    I need to maintain more than one address for single customer, Is it possible? If so how can I maitain kindly send the details.
    Rgds
    Srinivasan.K.R.

    Dear Srinivasan,
    I don't think you can maintain the more than one address for single customer as per the standard.
    You can this options
    1.You can create different ship to parties as per the addresses.
    2.You can change the address manually while creating sales order for single customer.
    I hope this will help you,
    Regards,
    Murali.

  • Need to transfer more than 150 employees from one company code to another company code

    Dear Sir/Madam,
    I am new in SAP HCM . We need to transfer more than 150 employees from one company code to another company code due to some business requirement. Please suggest the process of transfer from one company code to another company code considering the other element like gratuity , leave entitlement, Bonus , Exgratia   etc.
    Your quick response will be highly appreciated.
    Thanks & regards,
    Babuna Ray
    Mob:- 9007295305
    [email protected]

    Dear,
    do not transfer employee from one company code to another issues are as under.
    1. Employees Form 16 you will get wrong value as per I Tax law because of company is having different PAN & TAN.
    2. Form 24 Q annual return data will not get properly/easily from SAP because of form 24 Q will run on Payroll area base/ company code base
    3. PF number is different for these 2 company codes then you are unable to submit annual return.
    4. If employee will get hike after the transfer case then system will post expenses period wise means if employee is having 2 different cost center related 2 different company codes posting will done as per this scenario is it accepted to Account Depatment? it is reflected in FICO through KSBB how can they manage expenditure which is related to previous month?
    Like this many points are there you have to study it and then suggest to your client.
    Regards
    Subhedar
    9158881202

  • Datatype which takes more than 5000 characters

    I want to have a column which can take more than 5000 characters. Which datatype can I have ? varchar2 is not working.
    Please help me.

    Pradeep_Warangal wrote:
    I want to have a column which can take more than 5000 characters. Which datatype can I have ? varchar2 is not working.
    Please help me.Varchar2 can have 32000 chars in PL/SQL. Are you looking for an SQL datatype? Then CLOB ist the answer.

  • I need to authorize more than 6 computers.

    How do I authorize more than 6 computers?

    Adobe provides an extra activation each year but that will not solve your problem.
    Why do you need to authorize more than 6 computers with the same ID? Allowing this would essentially defeat the DRM system because every person on Earth could use the same account for purchasing books and therefor end up with access to all of the books, which is the opposite of what the DRM system is there to protected against.

  • How to save more than one Contact Person in CRM

    Hi experts,
                     How to save more than one contact persons in CRM opportunity Application?
    I am using following Function Module...
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_partner        = lt_partner_com
        CHANGING
          ct_input_fields   = lt_input_fields
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
    I am giving the input field name as 'PARTNER_FCT', 'PARTNER_NO', 'DISPLAY_TYPE', 'NO_TYPE', 'MAIN_PARTNER' and 'RELATION_PARTNER'.
    The problem is it is saving only one contact person, not more than one.
    Please help me how to save more than one contact persons.

    In SPRO partner processing this needs to be configured.

  • Can we query more than 5000 library items in Sharepoint online library using CSOM?

    I am writing a console application to fetch all documents from the SharePoint Online Site. I am worrying what happens if library items grow beyond 5000 items. In my earlier experience from SP2010, I will raise the threshold limit from Central Admin Site
    and then perform my CAML query operation. In SharePoint Online Site, is this possible ? If not, is there any alternative to get all the documents above 5000 limit ?

    At the moment I wouldn't advise it without using folders.
    You can, definitely, add more than 5k items in Office 365 lists. If you design them well and add indexes before you go over the threshold then it should be fine.
    HOWEVER, once you go over the 5k threshold you lose the ability to change all the items in the list at once. Which means you can't add indexes to columns, can't add new columns, can't remove columns or perform any large admin task.
    Incidentally CAML queries and upping the threshold are either/or options in on-premises installs. CAML is the way forward and can be used without increasing the threshold in the vast majority of cases.
    In terms of support the MS documentation is unhelpful:
    http://office.microsoft.com/en-gb/office365-sharepoint-online-enterprise-help/sharepoint-online-software-boundaries-and-limits-HA102694293.aspx
    There it states that MS only support 5k items in a site list/library.

Maybe you are looking for