Product Hierarchy download into CRM from ECC6

Hi Guys,
Recently we have added few Product hierarchies into ECC6 (level 2, 3 , 4 and 5 hierarchies)
now they are not replicated into CRM...
how can I replicate them into CRM from ERP6... quick guidance....?
The object - DNL_CUST_PROD1
Thanks
KP

it will be done maually,
- On CRM
For Defining the Product Hierarchy Strucuture :
CRM IMG -> Cross Application Components -> SAP Product -> Product Category -> Define Category Numbering Schemes
   - make new entry
          Number Scheme     R3PRODHIER
   - after that select the new Scheme, and choose a new entry (should be the same as structure PRODHS on ECC)
For Defining Product ID
CRM IMG ->Cross-Application Components->SAP Product->Basic Settings->Define Output Format and Storage Format of Product Ids (tx. COMCPRFORMAT)
note : should be matched with ERP (Tx. OMSL)
refrence B09_BB_ConfigGuide
الحمد لله الذي علمنا

Similar Messages

  • Replication of Sales Office and SAles group into CRM from ECC6

    Hi All,
    recently I added the sales group and sales office into and existing sales are in ECC6.
    1. how can I replicate that sales group and sales office replicate into CRM and Assign to the same sales area
    2, how can replicate a new sales area into CRM?
    3. do I need to do something in Org structure..?
    thanks,
    Ken

    Hello Ken,
    You can download new sales office & sales group using Transaction code CRMC_R3_ORG_GENERATE.
    After executing this transaction you can see new sales office & sales group structure.
    You have to select this new sales office & group rows & generate structure. After that you have to save. While saving you can give the earlier CRM Sales Organization unit.
    You can see new sales office & sles group under earlier sales organization in PPOMA_CRM.
    Best Regards,
    Rajendra Sonawane

  • Create product hierarchy & category in CRM

    Hello experts,
    I need to write a program that create product hierarchy & category in CRM 5 from flat file.
    As anyone know how to do it?
    I couldn't find any bapi, and when i tried to debug the program that transfer this data between R3 to CRM i got to dead end.
    I realy dont know how to attack this...
    regards,
    Ronen.

    USE LSMW. Even i am working on a similar thing though i need to create products in CRM from excel file. Category and hierarchy ar supplied to me. Actually there are a couple of options.
    Basically do research in SE37  with search term COMCATEGORYCREATE*    and similarly for COMCATEGORYsav*   for category  and for hierarchy replace category with 'hier' . You can then shortlist which FM is good for you and try to construct structure in your program that u can pass to the FM to get desired output.
    Thing to remember is that you first create   and then do save.
    1. Use following if input is from a *.txt  or any tab delimited file.
    INCLUDE com_product_const001.
    INCLUDE com_product_const003.
    *Excel data into Internal table
    PARAMETERS: p_infile  LIKE rlgrap-filename.
    DATA: gd_file type string.
    DATA:  prod type N.
    *Internal tabe to store upload data
    TYPES: BEGIN OF t_record,
    productid TYPE COMT_PRODUCT_ID,
    product_desc TYPE COMT_PRSHTEXTX,
    proudct_type TYPE COMT_PRODUCT_TYPE,
    prod_categoryid TYPE COMT_CATEGORY_ID,
    prod_obj_family TYPE COMT_PRODUCT_OBJECT_FAMILY,
    prod_hierarchyid TYPE COMT_HIERARCHY_ID,
    maintenance_language TYPE SY-LANGU,
    prod_base_uom TYPE COMT_BASE_UNIT,
    sales org1
    sales org2
    item category
    END OF t_record.
    TYPES : Begin of struc_mat,
            HEADER  TYPE COMT_PRODUCT_MAINTAIN_API,
            DATA    TYPE COMT_PROD_MAT_MAINTAIN_API,
            INTERLINKAGES TYPE COMT_PRODUCT_IL_API,
            CONDITIONS TYPE COM_PRODUCT_CND_API,
            DOCUMENTS TYPE COMT_PRODUCT_DOCUMENTS_API,
          END of struc_mat.
    DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,
    wa_record TYPE t_record,
    ls_record TYPE t_record.
    **For Unicode check active in program attributes then need to declare constants as follows:
    **class cl_abap_char_utilities definition load.
    **constants:
       con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_INFILE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_infile.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          DEF_FILENAME     = 'p_infile'
          DEF_PATH         = ' '
          MASK             = '*.txt'
          MODE             = '0'
          TITLE            = 'UPLOAD TAB DELIMITED FILE'(078)
        IMPORTING
          FILENAME         = p_infile
        RC               =
        EXCEPTIONS
          INV_WINSYS       = 1
          NO_BATCH         = 2
          SELECTION_CANCEL = 3
          SELECTION_ERROR  = 4
          OTHERS           = 5.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *START-OF-SELECTION
    START-OF-SELECTION.
      gd_file = p_infile.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          FILENAME                    = gd_file
      FILETYPE                      = 'ASC'
          HAS_FIELD_SEPARATOR         = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          DATA_TAB                   = it_record
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        write: 'Error' , sy-subrc .
        skip.
      ENDIF.
    END-OF-SELECTION.
    *!!! Text data is now contained within the internal table IT_RECORD
    Display report data for illustration purposes
    LOOP AT it_record INTO wa_record.
       WRITE:/     sy-vline,
       (10) wa_record-productid, sy-vline,
       (10)  wa_record-product_desc, sy-vline.
       (10) wa_record-age, sy-vline.
    ENDLOOP.
    *The field data in structure for MAT & FIN are very different . Loop at retreived data and based on product
    *type fill in the respective structure and proceed.
    *PARAMETERS: g_matnr1 TYPE comt_product_id.
    *PARAMETERS: gv_guid  AS CHECKBOX DEFAULT on.
      DATA :  gv_save  TYPE BOOLEAN VALUE 'X'.
      LOOP AT it_record INTO wa_record.
        IF wa_record-proudct_type EQ '01'.
          PERFORM init.
          PERFORM create USING wa_record.
          PERFORM save   USING gv_save.
        ELSE.
        ENDIF.
      ENDLOOP.
    2. Use excel file and use LSMW

  • Need to fetch Schedule Line information into CRM from R/3

    Hi Experts,
    I need to get the Schedule Line Info into CRM system before an order is created.
    Is there any standard function module in R/3 to fetch this information for a specified Material and Quantity.
    If not, the database table where this schedule line information is being stored would help.
    Regards,
    Kris.

    Hello all,
    does this Function Module work also for Configurable Material? We currently face the issue that we replicate a quote from CRM to ECC and the confirmed date for the Scheduled Lines do not get populated due to a limitation. It seems, that currently it is not supported to get back the confirmed date for sub-line items that come from a configurable product.
    The FM Module you mentioned seem like a good workaround?!?
    Please advise!
    Marc

  • Organization download into CRM

    Hi,
    We are downloading org structures from ECC to CRM. But we have multiple org structures in ECC system(like sales, HR, Work flow). But only few are relevant for CRM system and we need to download only specific org structures into CRM. I am downloading this using PFAL. But when I schedule the change pointers job, it is brining all the org structures into CRM system which are not relevant for CRM. I would like to restrict only specific org structure changes from ECC to CRM system.
    Could you please advise how to set up this kind of filters, specific to one root organization and changes relevant for the org which was downloaded initially into CRM system.
    Thanks&Regards,
    Kumar Budidagaddapalli.

    Hello Kumar,
    For Downloading Organization structure use CRM Transaction code CRMC_R3_ORG_GENERATE.
    You can manullay select here the required R/3 Sales Organization, Sales Office & Sales Group structure.
    Then generate those selected structure from R/3 to CRM System.
    You can use Transaction code PFAL in R/3 to download employees from R/3 to CRM.
    You can select the required data by choosing in Object ID field.
    Regards,
    Rajendra Sonawane

  • Equipment Download to CRM from ECC

    Hi All,
    We are trying to download the equipments from ECC to CRM, they are downloading to CRM individually.We want to get them in the hierarchy structure as they are in ECC. Like  relevant IObjects grouped to-gether.
    Whats the solution for this, please help out on this.
    Thanks,
    Praveen

    Hi,
    Below link you can find the details for replicating the Equipment from ECC to CRM.
    SPRO> CRM>Master Data--> Installed base --> Replication of equipment from ECC --> Prerequisites and General Information for Equipment Replication
    For equipment config download below are the activities.
    Initial Download Procedure
    1. Activate the adapter object EQUI_CONFIG in mySAP CRM.
    Follow the menu path: Architecture and Technology > Middleware > Data Exchange > Object Management > Business Objects and select the active/inactive box for EQUI_CONFIG.
    Examine the filter settings for EQUI_CONFIG. For a each source site, set the filters to the same settings as for the object EQUIPMENT.
    Don't forget to regenerate the filters!
    2. Start the initial download process for EQUI_CONFIG.
    Follow the menu path: Architecture and Technology > Middleware > Data Exchange > Initial Load > Start.
    Delta Download Procedure
    1. Activate the object class EQUI_CONFIG.
    Follow the menu path: Architecture and Technology > Middleware > Data Exchange > Delta Load from R/3 Back-End.
    You may wish to activate the EQUI_CONFIG delta download if you are downloading changes for EQUIPMENT.
    If you want R/3 to apply filters during the delta download, use transaction SM30 and maintain view CRMPAROLTP as below:
    Parameter name = CRM_FILTERING_ACTIVE
    Parameter Name 2 = EQUI_CONFIG.
    Parameter Name 3 = EQUI_CONFIG
    User = CRM
    Parameter Value = X
    Hope this helps.
    Regards,
    Chandrakant

  • Mass Update of Product hierarchy in all CRM Open Sales Orders

    Hi Folks,
    I have a requirement in my project wherein I have to update product hierarchy details with new values in all Items of CRM Open sales orders.
    If suppose I have a text file which has the details of Open Orders & new product hierarchy which i have to update, then would it be recommended if I use BDC for this task. Can I Call Transaction CRMD_ORDER?
    If someone has already gone through such requirement, Can you please suggest me how to proceed with this requirement. Using BDC or any other way which I can proceed with?
    Thanks in advance !!!
    Regards,
    Nitish.

    You are correct in indicating that Exchange rate type field  is not seen in Header data of sales order. I checked screen layouts for various screens for sales order data and this field is not suppressed. The only reason could be that this field is not used in sales order screens
    If you are interested, you could also check in the following way
    1.  Go to SE11, enter database table as VBAK
    2. Once inside data dictionary table, click where used list button, select programs and screens and execute
    3. click continue (don't select background)
    4. now you would have list of programs and screens, this table is used
    5.  now start another session and go to transaction SE51
    6. indicate program name as SAPMV45A and screen numbers as listed in step 4. you can check all screen numbers to see whether Exchange rate type field is listed in sales order layout.
    7. Of particular interest would be screen number 4311 as this contains  Financial accounting data & 4303 Billing data
    8. you can check screen layout for screen 4311 & 4303. you would see Exchange rate type field is not indicated.
    9. in case you could find this field in any screen, you could ask your ABAP consultant to add this field in the layout screen.
    Hope this answers your question

  • How to notify a team when Product is replicated to CRM from MDM?

    Hi All,
    MDM is the back-end for SAP CRM in our project.  Product is created and replicated from MDM to CRM via XML interface for Products, it is one way replication process.  Recently we have implemented Opportunity management in which these products are being used.  For that, we have updated Sales Area and Pricing to all the products in CRM with a custom report. 
    Now the requirement is, when a product is created and replicated to CRM from MDM, a team should be notified about this.  So that, they would maintain the responsible sales area and pricing in replicated Product to use it in Oppt.
    Could you please guide me how to map this requirement in our system.  Kindly help me with the feasibility and solution overview of the above requirement.
    Thank you in advance.
    Regards,
    Maddy

    Hi Maddy,
    Would recommend workflow technique to explore if you have not done yet. Refer below link which I believe will help you a lot.
    SAP MDM Workflow
    Rgds
    Hari

  • Condition Table download to CRM from ECC

    Hi
    I have to download condition tables created by customer(say A872, A888) into CRM system.
    When I see the adapter objects R3AC5, there is no adapter object present for the same.
    Please tell me what are the sequence of steps required for the same. Like mapping tables to adapter object..doing any other config or development for download.
    Thanx in advance.
    Cheers
    Hits

    Hi Hits,
    The condition table A500 onwards are the customer specific tables which SAP provides. So you need to create your own adaptor objects for these tables. The steps are really simple.
    Copy the adaptor object DNL_COND_A002 and give the name ZDNL_COND_A872 follow the same step to create object ZDNL_COND_A888.
    Reffer to the oss note 514952 which might also required.
    <b>
    Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Searching for products via Product Hierarchy ID in CRM Webclient 2007

    Hello,
    When creating a sales order in CRM Webclient 2007 I would like to be able to search for products by using the Product Hierarchy ID. When clicking the search help for product in the order entry screen in the webclient UI, I get a pop-up with the available search criteria. I select Product Hierarchy ID and click on Input Help. A new pop-up is displayed with the three Hierarchy ID:s:
    R3MATCLASS Material Group
    R3PRODSTYP Product Subtype
    R3PRODHIER Product Hierarchy
    I select R3PRODHIER. When hitting the search button, I get all materials which have Hierarchy ID R3PRODHIER assigned as a product category in the material master data. I can however not search for materials which belong to a certain hierarchy node in the product hierarchy.
    In transaction VA01 in ECC it is possible to drill down through the three levels of the product hierarchy to find the desired material. Is the same type of searching possible in CRM?
    Any help much appreciated.
    Kind regards,
    Johan Wigert

    Hi Johan
    I want to know if finally you have found the way to deal this problem.
    Thank you very much,
    Yannuchi

  • Taking download into excel from ALV Grid - header is printing in two lines

    Hi All,
    I have a scenario where I am taking the download from ALV grid to an excel sheet. Now the header of the ALV (column names) is appearing in two lines in the downloaded excel sheet while items (records of the ALV table) are getting displayed in a single line.
    This download is taken from the standard download to local file (spreadsheet) button provided by SAP for ALVs.
    I am using function module "Reuse_alv_grid_display" for the purpose.
    Can somebody provide an idea how I can avoid the header printing in two lines and keep the length as it is.
    Thanks in Advance,
    Chandan

    Hi..
    1. Pass header name in internal table appned first line.
    2. after that pass u r data .
    3. Use  FM. WS_DOWNLOAD 
    Salil ......
    Edited by: salil chavan on Nov 26, 2008 11:07 AM

  • HR org download into CRM

    Hi,
    We are downloading HR org model from ECC to CRM and also employees from ECC to CRM. Could you please let us know which one we should download first, is it HR org model or employees.
    Thanks&Regards,
    Kumar Budidagaddapalli.

    Hello Kumar ,
    I would suggest tht you check the sap notes : 550055 and  934372 as these provide more information on the hr integration with the crm system and should be of help. Other than this the downloading the HR structure should be done first .
    Thanks & regards,
    Krishnen

  • Material download to CRM from R/3

    Materials created in R/3 are downloaded via the MBDoc ‘PRODUCT_MAT’ . In this BDoc there is a structure called ‘COMM_PROD_VAR ‘ whose description says variant data.
    The same structure is present in SBDoc as ‘PRDCT_OBJECT’. In this the segment ‘CUCFG’  with it dependent segments are linked to configuration.
    Any idea of  when these segments CUCFG in bdoc ‘PRDCT_OBJECT’ or structure ‘COMM_PROD_VAR’ in BDoc ‘PRODUCT_MAT’ get filled when data is downloaded from R/3.
    Would be grateful if you could share your knowledge.
    Thanks
    Middleware developer

    Hi Krish,
    check the <a href="http://help.sap.com/saphelp_crm50/helpdata/en/46/6d7f089ecfb5459a46c734da4dc575/frameset.htm">Link</a> Have a look of the point 3 in the Prerequisites. This will tell you what all objects needs to be downloaded before the Material download.
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.

  • Entire video isn't showing up after download into imovie from flip cam

    Hi there....
    I'm a new user to imovie, so am having a little trouble here....
    After I load a video from my flip cam, the program says it has downloaded the entire video (say 22') then when I go to put a project together only a short part (like 9 mins) is actually shown and available to edit.  Where did the rest go? Are there settings I need to change in order to get access to the rest of the original video. 
    Any help would be greatly appreciated!!
    -lynn

    Mac OS X
    Version 10.6.8
    iMovie '09
    Flip Video
    mino HD

  • Master Data & Hierarchy loading into BPC from BW

    HI all,
    When i am getting master data and hierarchy from BW i need to replace a "-" to an "_".
    These members are parents in BW.
    I was able to do that using a conversion file for the master data. But when i run the hierarchy package it says parents dont exist because the nodes that were pulled before are not with a underscore and not a dash.
    Ex: XXXX-XX needs to be replaced as XXXX_XX.
    This member is a parent aswell. So i need to add conversion in the hierarchy load. I did that but its not taking it.
    Conversion file for hierarchy load looks like this:
    External                         Internal
    XXXX-XX                          XXXX_XX
    I am on BPC NW7.5 SP6.
    Thank You all.

    I think conversion file string manipulation for BW infoobject hierarchy imports has some issues.  I suggest reporting the problem to SAP support by creating a message on the Service Marketplace. Please be very clear in the message about your setup and how to recreate the problem and why you think it is a bug so that you don't receive back a reply about it being a consulting issue.  Expect some time to work through this with support and eventually development, with the goal of getting a correction note released to fix the issue.
    In the meantime, you might try to do the string manipulation in the transformation file *MAPPING section instead of the conversion file.
    NODENAME=NODENAME(1:4)*STR(-)NODENAME(5:6)
    or substitute NODENAME above for PARENT if that is appropriate level with the issue.
    Best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Customer Solutions Adoption (CSA) team

Maybe you are looking for

  • Movies don't display on ipod

    Hi, I have a problem moving some movies from itunes to ipod. When i try to move a movie form iTunes to ipod it don't work but it don't tell me that there is an error or problems. Simply my ipod ignores it like if it doens't exists also. Please help m

  • How to programmatically control the "Save changes.." popup screen?

    Hello I've made an application that is controls TS, opens selected sequence or closes it automatically.  I would like to close all open sequences with possibility to programmatically save the sequences automatically on closing without popup screen (a

  • Problem with making CALLS using SIP on AS 5300

    I have a setup where I have DSL users connected and registered on SIPSP proxy server, which is then connected to AS5300 My Problem is I am only able to make one call. I am not able to make simultaneous calls from the user agent. Pls. help me out.I ha

  • After having to reset my Zen Vision M, it now rebuilds the library every time I turn it

    My Vision M froze on me about a month ago, and I had to reset it to get it to turn off and back on. When I reset it, it went through the whole Rebuilding process, and then was on again. But half of my music was missing. And now every time I turn it o

  • Creating DVD menus in Encore CS4

    I have only very briefly experimented with trying to create a DVD menu for my Premier Pro CS4/Encore CS4 projects.  I must say I have found it not at all intuitive. Can anyone please: 1: Recommend a nice clear tutorial on how to create DVD menus in P