CRM 2007 - Installed Base - Sold to Party per Product

Hi Gurus
I'm working through Best Practice guide C13 Service Master Data.
For the Installed Base I'm using, for each product I have on the system I must assign each Business Partner (Sold-to Party) to that product.
For me this is a Maintenance nightmare, if I have 100 Products and 100 Customers I have 10,000 entries to make.
Is there a simpler way of completing this?
We are running a Standalone CRM System
Many Thanks
Panduranga

Did you create IBase for the system from where you create message?
If so, Did you mention Sold-to Party for that system IBase?
If not, First create IBase for the system, then assign Sold-to Party for the system IBase.
To do this use DSWP, Select the solution of the system and choose option "Initial Transfer to IBase" from menu.
So that solman system will automatically generate IBase for that satellite system. No need to create IBase for the satellite system explicitly by using IB52.
Once "Initial Transfer to IBase" is done, then go to IB52 and select the IBase of that system as well as client and assign the Sold-to Party by using menu "Go To"->"Partners". It important to assign the Sold-to Party for the working client. i.e. from which client of the satellite system the messages are created.
Hope this solves your problem.
If not, Go to SPRO and check the partner determination rule for Sold-to Party. It should be from IBase.
^Sanjai

Similar Messages

  • SD customer replication from CRM 2007 in ISU

    Hi Experts,
    I am creating a Business partner in CRM 2007 in role sold to party which is getting replicated in ISU system(Entry is saved in table BUT000) also the entry for SD customer gets saved in table KNA1; however system can not retrieve sales area for customer (No entry in table KNVV).
    Sales area has already been maintained for Reference customer and required configuration is also in place.
    Please let me know if anyone has faced similar kind of issue.
    Regards,
    Amit Gupta

    Hello Amit,
    As far as I know the reference customer is used when your business partner is created in ISU only.
    If you create your business partner in CRM you will have to add your sales area manually, or via "mini-templates" for example... but the reference business partner won't be used (check the relevant cookbook: ref BP is used for data transfer from ISU --> CRM but not from CRM --> ISU).
    Kind regards,
    Nicolas.

  • CRM To ECC Sold to party Communication Details Not populated in ECC

    Hi All
    i have one problem when we create sales order through crmd_order we need to give sold to party and ship to party numbers suppose like
    8000002166 for both and status i keep as order created and in partner tab i i seem all partner funtions(sold to, ship to ,bill to, payer)with 8000002166
    in header overivew i given posting date as feature date like 30-09-2013 then i try to save this order.
    the order generated sucussfully but problem is i am not getting sold to party details in ECC when i check VA03 And open cretaed order in CRM and clicking on sold to party and i seem details for this but i am not getting communication details like telephone number and email id extension number.
    for this sold to party we already maintained all communication details in CRM.When i open this sold to party BP i am able to see all details
    didnt understand why these details not replicated to ECC?
    We implemented one custom class there we implemented badi.
    IF_EX_CRM_DATAEXCHG_BADI~CRM_DATAEXCH_AFTER_BAPI_FILL
    i am not getting BAPI ADDRESS Table values into  CT_BAPIADDR1
    how can i send communciation details to ECC For sold to party?
    The code part we follow like below
    TYPES : BEGIN OF t_otc,                                                        " Type to create a table with the given columns.
              bpid            TYPE bu_partner,                                       " variable of store processed business partner ID's
              otcid           TYPE bu_partner,                                       " variable of store processed OTC ID's
              otcguid         TYPE bu_partner_guid,                                  " variable of store processed OTC GUID's
              address         TYPE bapibus1006_address,
              tel1_numbr      TYPE ad_tlnmbr1,
              tel1_ext        TYPE ad_tlxtns1,
              e_mail          TYPE ad_smtpadr,
              END OF t_otc.
    *&                             V A R I A B L E S                         &*
      DATA : lv_bp_payer      TYPE bu_partner,                                       " Variable To Cast the payer Id into BU_Partner data type.
             lv_partner_fct   TYPE crmt_partner_fct,                                 " Variable To Store Partner Function Number.
             lv_partner       TYPE bu_partner,                                       " Variable To Store Current Business Partner ID.
             lv_process_type  TYPE crmt_process_type,                                " Variable to Store process type.
             lv_sales_org     TYPE crmt_sales_org,                                   " Variable to store sales org. name of order
             lv_dis_channel   TYPE crmt_distribution_channel,                        " Variable to store distribution channel of order.
             lv_division      TYPE crmt_division,                                    " Variable to store division of sales org. data.
             lv_role          TYPE comt_partner_parvw,                               " Variable to store retrieved role from FM.
             lv_role_value    TYPE parvw,                                            " Variable to store the role value of Partner Functions.
             lv_otc_guid      TYPE bu_partner_guid,                                  " Variable to store OTC GUIDs for the OTC ID.
             lv_otc_id        TYPE kunnr.                                            " Varaible to OTC ID revocered from Table.
      DATA: lv_busspartner           TYPE bapibus1006_head-bpartner,
            lw_central_data          TYPE bapibus1006_central,
            lw_centraldata_person    TYPE bapibus1006_central_person.
    *&                             W O R K A R E A S                         &*
      DATA : lw_address       TYPE bapibus1006_address,                              " Work Area to store address recovered for BPID.
    *Start of code change for Defect 904 Fix
             lw_tel           TYPE bapiadtel,
             lw_email         TYPE bapiadsmtp.
    *End of code change for Defect 904 Fix
    *&                          INTERNAL TABLES                              &*
      DATA : li_otc           TYPE TABLE OF t_otc,                                   " Internal Table to Store the OTC IDs and BPS.
             li_values        TYPE          zconst_values_t,
    *Start of code change for Defect 904 Fix
             li_tel           TYPE STANDARD TABLE OF bapiadtel,
             li_email         TYPE STANDARD TABLE OF bapiadsmtp.
    *End of code change for Defect 904 Fix
    *                       F I E L D - S Y M B O L S                         *
      FIELD-SYMBOLS: <f_orderadm>      TYPE bad_orderadm_h_mess,
                     <f_otc>           TYPE t_otc,                                   " Field-Symbol to Read the OTC TABLE data.
                     <f_partner>       TYPE bad_partner_mess,                        " Field-Symbol of Partner Table For Looping.
                     <f_bapiparnr3>    TYPE bapiparnr3,                              " Field-Symbol to Store The Row of BAPIPARNR3.
                     <f_bapiaddr1>     TYPE bapiaddr1,
                     <f_orgman>        TYPE bad_orgman_mess,                         " Field-Symbol to Read the ORGMAN table.
                     <f_values>        TYPE zcr_const_values.
    *&                             C O N S T A N T S                         &*
      CONSTANTS :  lc_program_name     TYPE progname      VALUE 'ZOTC',
                   lc_param_payer      TYPE paramname     VALUE 'PAYER',              " Constant to Store Payer Parameter name.
                   lc_ref_kind         TYPE crmt_object_kind VALUE 'A',
                   lc_req_1            TYPE zrequest_no VALUE '1',
                   lc_req_2            TYPE zrequest_no VALUE '2'.
    * Retrieving the general and Common Data for a Order.
      READ TABLE it_bus_trans_msg-orderadm_h INDEX 1 ASSIGNING <f_orderadm>.
      IF sy-subrc EQ 0.
        lv_process_type = <f_orderadm>-process_type.
      ENDIF.
    * Reading the Orgnisation Details from ORGMAN Table.
      READ TABLE it_bus_trans_msg-orgman WITH KEY ref_kind = lc_ref_kind ASSIGNING <f_orgman>.
      IF sy-subrc EQ 0.
    *   Storing the Sales Organisational Data to find the OTC_ID.
        lv_sales_org = <f_orgman>-sales_org.
        lv_dis_channel = <f_orgman>-dis_channel.
        lv_division = <f_orgman>-division.
      ENDIF.
    * Retrieving the partner function number for the payer by giving requirement no 2 and rule no 1.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_2
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Reading the value for the constant with the name as PAYER.
      READ TABLE li_values WITH KEY param_name = lc_param_payer ASSIGNING <f_values>.
      IF sy-subrc NE 0.
        RETURN.
      ENDIF.
    * Retrieving the Partner ID for the PAYER.
      READ TABLE it_bus_trans_msg-partner ASSIGNING <f_partner> WITH KEY ref_partner_fct = <f_values>-constant_value.
      IF sy-subrc EQ 0.
    *   Storing the current partner ID.
        lv_bp_payer = <f_partner>-ref_partner_no.
      ENDIF.
      REFRESH li_values.
    * Retrieving the Partner Function Number which are to be checked for replacing with the OTC ID with request no 1 and rule no 01.
      CALL FUNCTION 'ZCRAN_GET_CONSTANT_VALUES'
        EXPORTING
          pi_program_name = lc_program_name
          pi_req_no       = lc_req_1
        IMPORTING
          po_const_values = li_values.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * Transferring the constant value to our table for Partner Fucntion.
      LOOP AT li_values ASSIGNING <f_values>.
    * Read Partner table for Header data and the reference partner function retrieved.
        READ TABLE it_bus_trans_msg-partner WITH KEY ref_kind = lc_ref_kind ref_partner_fct = <f_values>-constant_value ASSIGNING <f_partner>.
        IF sy-subrc EQ 0.
    *     Storing Current Partner Function.
          lv_partner_fct = <f_partner>-ref_partner_fct.
    *     Storing Current Partner No.
          lv_partner = <f_partner>-ref_partner_no.
    *     Retrieving the Partner Role (R/3) for the current partner function of CRM.
          CALL FUNCTION

    The problem is in the Lotus Notes security level, not in SAP.

  • Installed Base(ibase) data for segmentation/maintaining customer marketing

    There is a need to use Installed Base(ibase) data for segmentation/maintaining customer marketing attributes e.g. whether customer on active support agreement(yes/no), product line, version no., etc.
    So if the ibase data is updated, the changes should flow back to segmentation/marketing attributes of the business partner/
    Please help with any approach which can be useful in this scenario.
    Edited by: ankitarora on May 4, 2011 12:42 PM

    Please find the reply for your query,,,,,these are the related information
    LIST OF DATA SOURCE
    CRM IBase Transaction Data
    0CRM_SRV_IBASE_TRAN
    CRM IBase Master Data  
    Technical name: 0CRM_SRV_IBASE_ATTR
    Installed Base Category - DataSource for Texts  
    Technical name: 0CRM_IBTYPE_TXT
    Characteristic for IBase or Component - DataSource for Texts   
    Technical name: 0CRM_IBFLAG_TXT
    GUID of Installed Base/Component - DataSource for Texts  
    Technical name: 0CRM_IBAKEY_TXT
    IBase Text Component - DataSource for Texts  
    Technical name: 0CRM_IBTEXT_TXT
    DSO:
    CRM Service - Installed Bases and Components  
    Technical name: 0CRM_IBCO
    QUERYS
    Installed Base Analysis by Location  
    Technical name: 0CRM_IBCO_Q0101
    Installed Base Analysis by Business Partner  
    Technical name: 0CRM_IBCO_Q0104
    Analysis of Products in Installed Bases  
    Technical name: 0CRM_IBCO_Q0102
    Analysis of Individual Objects in IBase Components  
    Technical name: 0CRM_IBCO_Q0103
    More information
    http://help.sap.com/saphelp_nw70/helpdata/EN/ef/c4e1edcb84fa4abd6ddd00130de600/frameset.htm
    For more information, see the CRM documentation under mySAP Business Suite à mySAP Customer Relationship Management à CRM Enterprise à Analytics à Service Analytics.
    Regards
    Srini

  • BAsic settings needed in system crm-2007 in newely installed

    HI all
      I have small quesry here.i Have a system newley installed crm-2007
    can you all please tell me what settings do i need to do to start working with..either marketing or service.
    as per my knowledge what i know is...navigation bar profiles,business roles,organisations etc....
    but i dont know how to do all those..is there any document for this..or else pls guide me for this..

    Hi Ram
    Refer to SAP Note 1229931, this is the main note for CRM 2007.
    It would be very difficult to put down everything you are required to do in a response, work through the attached note with guidance from the SAP Best Practice Building Blocks as specified.
    Regards
    Arden

  • Party-Relationships in Installed Base

    Hi,
    Can anybody highlight on purpose/uses/advantages of setting party relationships in Installed base.
    What can be acheived by creating these relationships?
    Regards,
    Mohammed

    hi,
    You need to assign partner determination procedure to install base. First define partner determination procedure. Then assign it to your install base category. You can do the same in spro crm> master data> install base.
    Now, after assigning pdp to install base category, when you will create install base and click on goto partner, you will get partner whose partner function you have used in partner determination procedure.
    Best regards
    Pankaj Kumar

  • Import data external system in PCUI SAP CRM install base Object fact sheet

    I want to import data from third party system to Object fact sheet of install base. Please let me know the possible way to do so. Do I need to import data in BI and then to Object fact sheet?

    Hi Pankaj,
    If you have seperate BI server also alongwith the CRM system as back end.Then IU can create two seperate iviews of the two fact sheets hitting different servers e.g.if this is telecom perspective then In one pcui screen you can give two iviews one will fetch data from CRM server and populate 360 degree view of the customer whereas the BI iview will have multiple line level display of the last bills generated which we can see in detail also by hitting the same iview.
    Regards,
    Priyadarshan

  • Install base based on ship to and sold to

    Hi ,
    How i can find install base from table level based on
    1. Sold to party
    2. Ship to party
    Thanks ,
    Nitin

    Hi,
    Check whether you have entered proper BP Guid in the FM Structure I_PARTNER-->Field PARTNER_NO.
    Or try using FM:CRM_IBASE_PARTNER_SEARCH
    Regards,
    PePe
    Edited by: PePe on Jan 14, 2009 5:13 PM

  • Serial number in CRM installed base

    How do I insert a serial number in a CRM installed base record?  We will not be downloading this information from ECC so it begins in CRM.  The serial number does not currently reside in SAP but is part of historical data.  Therefore, we need the ability to enter a number in the installed base record that did not previously come from ECC.
    Thanks!

    I have created the set types and attributes and assigned them to the material types FERT and HALB.  But, I am still not clear on where the attributes (serial number) are maintained.  There is only one field in the material master for a product and as we know, there are many serial numbers per product. Where are they maintained?
    I am trying to create an installed base record and record the serial number in the individual objects view.  The problem I have is that if I create 2 IB records and use the same object ID (material number), the system wants to delete it from the first IB record to insert it in the second record.  This is not what I need. 
    Questions:
    1) Is the Equipment record (from ECC) created as an individual object using the Product Maintenence functionality?  Each new piece of equipment is a new master data record created by COMMPR01?
    2) If it is not, how would the serial number that is unique to each install base (but not unique across a material number) be recorded? 
    Thanks!

  • CRM orders with error "Do not enter a business agreement for sold-to party"

    Dear SDN'ler,
    after creating orders in SAP CRM via ISA (CRM 4.0) and uploading them to R/3 all orders are created successfully in R/3 but an error message is sent back to SAP CRM in case of ALL orders.
    Error message is the following:
    "Do not enter a business agreement for sold-to party xyz"
    Message no. CRM_BILLING011
    Diagnosis
    The field "FI-CA active" is not selected for the sold-to party 6000201 in the business master record. Since the business agreement is used in the component FI-CA, excluding the control of processes, it makes sense to enter a business agreement.
    Procedure
    Delete the entered business agreement.
    ==> Could someone please give me some more information about the mentioned "business agreement"? Where do I find field "FI-CA active" (in R/3 or CRM customer master data?)?
    ==> And how can I eliminate this error message for CRM orders in SAP CRM?
    Thanks a lot.
    Best Regards,
    Rainer Gryschka

    Please check the customising setting under following path:
    SPRO --> Customer Relationship Management --> Master Data --> Business Partner -- > Business Agreement --> Define Basic Settings
    Alternatively you may also check following customisation table using SM30 --> CRMC_BUAG_ACTV

  • Disp+work.EXE stopped when installing NW07 for CRM 2007 on Maxdb Windows

    Hi,
    I am installing NW07 for CRM 2007 on Maxdb 7.7 and Windows 2004 64bit.
    The installer cannot start the dispatcher on step 32. The dispatcher starts with green and is running  a while but Dialog queue is standstill. After few secodes the dispatcher changes to yellow as become disp+work.EXE stopped.
    Any advice? I have checked the RAM and log sizes etc and they seem to be ok. Database is running ok.
    System cannot connect the database?
    Here is dev_w0 file contets:
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        XCR
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    144
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        2260
    Sun Nov 16 16:56:01 2008
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 2260) [dpxxdisp.c   1243]
         shared lib "dw_xml.dll" version 144 successfully loaded
         shared lib "dw_xtc.dll" version 144 successfully loaded
         shared lib "dw_stl.dll" version 144 successfully loaded
         shared lib "dw_gui.dll" version 144 successfully loaded
         shared lib "dw_mdm.dll" version 144 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    Sun Nov 16 16:56:06 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >ESITV016LAB_XCR_01                      <
    DpShMCreate: sizeof(wp_adm)          25168     (1480)
    DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1864)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EE70050, size: 6348592)
    DpShMCreate: allocated sys_adm at 000000000EE70050
    DpShMCreate: allocated wp_adm at 000000000EE72150
    DpShMCreate: allocated tm_adm_list at 000000000EE783A0
    DpShMCreate: allocated tm_adm at 000000000EE78400
    DpShMCreate: allocated wp_ca_adm at 000000000F3DC2A0
    DpShMCreate: allocated appc_ca_adm at 000000000F3E2060
    DpShMCreate: allocated comm_adm at 000000000F3E3FA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F46AC30
    DpShMCreate: allocated gw_adm at 000000000F46ACB0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F46ACE0
    DpShMCreate: allocated wall_adm at 000000000F46ACF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    Sun Nov 16 16:56:07 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1633]
    ***LOG Q0K=> DpMsAttach, mscon ( ESITV016LAB) [dpxxdisp.c   11822]
    DpStartStopMsg: send start message (myname is >ESITV016LAB_XCR_01                      <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 144
    Release check o.K.
    Sun Nov 16 16:56:47 2008
    ERROR => DpHdlDeadWp: W0 (pid 1608) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W1 (pid 3940) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W2 (pid 636) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W3 (pid 3484) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W4 (pid 3504) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W5 (pid 1108) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W6 (pid 3512) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W7 (pid 3592) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W8 (pid 3616) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W9 (pid 3608) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => DpHdlDeadWp: W10 (pid 3368) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => DpHdlDeadWp: W11 (pid 1388) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => DpHdlDeadWp: W12 (pid 3276) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W13 (pid 1256) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W14 (pid 3400) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => DpHdlDeadWp: W15 (pid 2376) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => DpHdlDeadWp: W16 (pid 3032) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:56:57 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Sun Nov 16 14:56:57 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     1608 Ended         no      1   0        0                                                                         
    1 DIA     3940 Ended         no      1   0        0                                                                         
    2 DIA      636 Ended         no      1   0        0                                                                         
    3 DIA     3484 Ended         no      1   0        0                                                                         
    4 DIA     3504 Ended         no      1   0        0                                                                         
    5 DIA     1108 Ended         no      1   0        0                                                                         
    6 DIA     3512 Ended         no      1   0        0                                                                         
    7 DIA     3592 Ended         no      1   0        0                                                                         
    8 DIA     3616 Ended         no      1   0        0                                                                         
    9 DIA     3608 Ended         no      1   0        0                                                                         
    10 UPD     3368 Ended         no      1   0        0                                                                         
    11 ENQ     1388 Ended         no      1   0        0                                                                         
    12 BTC     3276 Ended         no      1   0        0                                                                         
    13 BTC     1256 Ended         no      1   0        0                                                                         
    14 BTC     3400 Ended         no      1   0        0                                                                         
    15 SPO     2376 Ended         no      1   0        0                                                                         
    16 UP2     3032 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Sun Nov 16 14:56:57 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    6
    6
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    since last update     total     8,  udp     7 ( 87%),  shm     1 ( 12%)
    Dump of tm_adm structure:               Sun Nov 16 14:56:57 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Sun Nov 16 14:56:57 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:02 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >ESITV016LAB_XCR_01                      < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (4076) (SOFT_KILL)
    Stop icman
    killing process (3800) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:4076  HANDLE:388)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:03 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:4076  HANDLE:388)
    wait for end of icman
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:04 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:05 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:06 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:07 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:08 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:09 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:10 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:11 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:12 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:13 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3800  HANDLE:396)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=421
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Nov 16 16:57:14 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3800  HANDLE:396)
    DpStartStopMsg: send stop message (myname is >ESITV016LAB_XCR_01                      <)
    NiIMyHostName: hostname = 'ESITV016LAB'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 2 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 2 (r)
    NiIRead: hdl 2 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 2
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 2 recv would block (errno=EAGAIN)
    Sun Nov 16 16:57:15 2008
    NiIPeek: peek for hdl 2 timed out (r; 1000ms)
    NiIRead: read for hdl 2 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   12168]
    NiBufSend starting
    NiIWrite: hdl 2 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 2 in set0
    SiSelNSet: set events of sock 312 to: ---
    NiBufISelRemove: remove hdl 2 from set0
    SiSelNRemove: removed sock 312 (pos=2)
    SiSelNRemove: removed sock 312
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 312
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 2260) [dpxxdisp.c   10421]
    Good Bye .....
    BR,
    Kari

    Hi,
    here is the right log content:
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Nov 17 10:24:39 2008
    B  create_con (con_name=R/3)
    B  *** ERROR => Invalid profile parameter dbms/type (or environment variable dbms_type) = <undef>, cannot load DB library
    [dbcon.c      4537]
    M sysno      01
    M sid        XCR
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    144
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        2184
    M
    M  kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 2184) [dpxxdisp.c   1305]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Mon Nov 17 10:24:40 2008
    M  DpShMCreate: sizeof(wp_adm)          25168     (1480)
    M  DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1864)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 0000000010E70050, size: 6348592)
    M  DpShMCreate: allocated sys_adm at 0000000010E70050
    M  DpShMCreate: allocated wp_adm at 0000000010E72150
    M  DpShMCreate: allocated tm_adm_list at 0000000010E783A0
    M  DpShMCreate: allocated tm_adm at 0000000010E78400
    M  DpShMCreate: allocated wp_ca_adm at 00000000113DC2A0
    M  DpShMCreate: allocated appc_ca_adm at 00000000113E2060
    M  DpShMCreate: allocated comm_adm at 00000000113E3FA0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000001146AC30
    M  DpShMCreate: allocated gw_adm at 000000001146ACB0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000001146ACE0
    M  DpShMCreate: allocated wall_adm at 000000001146ACF0
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Mon Nov 17 10:24:41 2008
    M  ThInit: running on host ESITV016LAB
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  *** ERROR => Invalid profile parameter dbms/type (or environment variable dbms_type) = <undef>, cannot load DB library
    [dbcon.c      4537]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 008192) [thxxhead.c   1440]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   10468]

    M  Info for wp 0

    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source =
    M    last_tid = 0
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server ESITV016LAB_XCR_01 on host ESITV016LAB (wp 0)
    M  *  ERROR       ThInit: db_connect
    M  *
    M  *  TIME        Mon Nov 17 10:24:41 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        10688
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   724]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  261]
    M  Entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2184) [dpnttool.c   327]
    BR,
    Kari

  • How to map sold to party from crm to r/3

    If you create a BP as sold to party role and if we use that in one of the transactions in CRM and if that transaction is distributed to R/3 , we will get a new Sold to party number.Now how can we map the BP we gave in CRM with the one present in R/3.
    Thanks and Regards
    Ramesh.

    Hi Ramesh,
    Keep the number range for business partner same on both CRM and R3. You can use this number to map the Partners on both the system.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • How to install CRM 2007 on x64?

    Hello,
    I am trying to install CRM 2007 with SQL Server 2005 on Windows Server 2003 Standard Edition (x64) on a system which has x64 (Quad Core Intel Xeon) type processor. Now while installing i am getting a popup window with the following message:
    The JDK installed in directory C:\j2sdk1.4.2_09 does not support the 64 bit data model. Choose a different JDK.
    I have checked the http://java.sun.com website and i couldn't find any J2SDK release of 1.4.2 for x64 platform. How do i proceed from here onwards? Please Help.
    Thanks and Regards,
    Vasu

    Hi,
    check SAP Note 941595 - Download J2SE 1.4.2 for the x64 platform
    for installation document check following
    https://websmp208.sap-ag.de/~sapidb/011000358700001181992007E
    regards,
    kaushal

  • Customers - FI reports on basis ship to party and sold to party.

    Hello Experts,
    In my scenario, sold to party and ship to party are different.
    For ex: My customer (sold to party / payer / bill to party) is Mr. A (on whom bill is raised and accounting is done). Ship to Party is B (where goods are delivered).
    Now, I want to know if I can post transactions (in combination to sold to party / ship to party) and get FI standard reports (like FBL5N, ageing reports - where days wise buckets are given, etc) can be taken on Sold to Party and Ship to Party basis.
    Meena

    I thought so Mukhtar. This will be last option.
    But in this case, I will have create a Z Field in FI transaction and it will be standard field in SD Billing transactions. So when I will customize report (say customer open item), I will have to put both the logics. Hence it will be little complicated.
    So I was trying if I can get a common field in both the modules - FI and SD for customizing report.
    Meena

  • Equipment hierarchy with Non serialized products to Installed base in CRM

    Hi,
    I have just performed an equipment download from R/3 to CRM. I now have these records created as individual objects assigned to an installed base.
    However my equipment record in R/3 has Serialized Products as well as non serialized products in form of BOM (bill of material).
    Example: Equipment Hierarchy (In R/3 )
        10123428  Main Equipment have 2 non serialized product                                                                               
    199-012100         (Non serialized product under this equipment)        
                    270-012200         (Non serialized product under this equipment)  
           10123429         Subordinate equipment to main equipment
                                  (Serialized  product )                                                                               
    340-070800  (Non serialized product under this 2nd equipment)       
                  270-562700  (Non serialized product under this 2 nd equipment)     
    The Main equipment(10123428) is created as installed base in CRM successfully.
         The Subordinate Serialized product (10123429) to main equipment is created as individual object under this Installed base of the Main equipment properly.
         But the non serialized products (199-012100,270-012200 ) for main equipment  and non serialized products (340-070800 ,270-562700)for the subordinate serialized product are not coming in CRM .
    Because When I go to IB53 transaction there is no entry in the components in the product Tab under product id column.
    Has anyone replicated R/3 equipment records with BOM structure into CRM and got their Non serialized products visible in the components of the Individual objects.
    Any help would be most appreciated.
    Regards,
    Rahul

    Hi Prabhakaran,
    You can filter the data downloaded from R/3 to CRM based on the filter criteria assigned to adapter objects. You can do this via transaction R3AC1 wherein you specify the table and fields based on which you want to filter out the data.
    For Serial Numbers and Equipments the business objects are SERIAL and EQUIPMENT respectively.
    Reward with points if this helps.
    Regards,
    Gaurav Gera

Maybe you are looking for

  • Data in active table showing blank value.

    Hello All, I am loading the data from write opt DSO to DSO. I have written an END Routine to populate a field (zfield) when i load the data to the ODS , an dcheck the data in the new table of ODS it shows the data for the zfield. But after activating

  • Unable to access Standalone VM via Remote Desktop through a VPN

    Good Morning everyone, now here is my problem. My company is a small software development house and we test our software on Win 7 or 8 VM's running on standalone (ie not on the domain) VM's. We are running the VM's on WS2012 R2 Hyper V and when we ar

  • Time machine failing , running extremely slow

    Working on a faculty member's MacBook (I'm an IT person at a college) (Macbook 5,1, 2.0 GH core2 duo, aluminum unibody). Her problem is that Time machine is continually failing , and has done so 'for about two weeks'. This is a typical error: Oct 25

  • How to use IDoc. in data migration?

    Dear Expert, How can I use IDoc. method in Data Migration???

  • How to Center Align SWF in Browser

    I used the publish feature of flash but it does not seem to center the SWF in the browser. Why is there a centering feature on the publish settings under HTML tab if it does not center the SWF? It only works if you set Dimensions to Percent but that