Mapping FS Product to CRM Sales Product

Hi,
Could anyone tell me how the mapping between the financial services product and CRM sales product is done? Is it done in any customizing setting in CRM system?
There is a customer who has a 1:1 mapping between FS product and CRM product. They would like to make it 1:many. I need to find a way to do this.
Thanks!!
  Rohan.

Hi Shanthala,
Yes, usually XI is used for this mapping.
The mapping is required because, when an offer is created in CRM on a particular product, an account has to be created in the banking services system for the corresponding product.
I found out that there is on standard way to do this mapping. However, the most common way is to use a Z mapping table. It simply has two fields, one for the CRM product number and another for banking services product number. Mapping is done!
This customer too follows the same way. However, as there is no XI system between banking services and CRM, the mapping table exists in the banking services system.
Regards,
Rohan.

Similar Messages

  • Product with no sales

    i have a requirement where in i want to display the count of the products with no sale. product dim is linked to fact with an equi join in physical layer and in bmm also.

    Hi,
    Add Product dimension columns add one more Duplicatie the product fact anyone of measure and include the Count function in that formula columns.
    Count(COUNT("Tablename"."coulmnname")
    Thanks
    Deva

  • How to create the new competitor products in CRM

    Dear Sir,
    How to create the new competitor products in CRM and  it will not synchonize to SAP R/3 for this products?
    Thanks and best regards,
    Vimol

    Hi,
    Have a look at these following thread for some more information on New Competitor Products in CRM
    Competitor Products (WETT) in CRM 5.2
    Hope this will somewhat help.
    Thanks,
    Samantak.

  • Assign sales organization data in product in CRM

    Hi Gurus,
    I need to assign/ delete  the sales organization  in a product which has been downloaded from ECC in CRM. It seems that we cannot change the data in "sales and distribution tab" unless making the SET TYPE editable.
    Only 3 SET TYPES in the "sales and distribution" tab  can be made editable by adding them in the table CRMC_PRD_CHANGE.
    CRMM_PR_SALESA, CRMM_PR_SALESG and CRMM_PR_SALESG
    Does someone have any idea of how to add a sales organization in a product that comes from ECC in CRM ??
    Thanks for your help,
    Jeff

    Hi Jeff,
    I am afraid whether one will be able to edit a product which is downloaded from R/3 to CRM. All the changes should be done in ERP and the same will be downloaded via delta download.
    Please have a look into the following thread:
    Products in CRM doesn't have Sales and Distribution Data
    It might help you. Hope this helps!
    Regards,
    Chethan

  • Crm 2007 - product by partner sales organization

    hello
    I'm trying to customize the following procedure:
    1.Create opportunity or quotation,
    2. enter a business partner (prospect/sold to)
    Get the relevant product list to the specific partner (determind by the partner sales organization)
    I read that the PPR procedure should be the answer, i tried it
    and no luck.
    can you please give an answer or a direction?
    Thanks
    Rika

    hi jay..
    If u got any solution for the same please provide us, it would be great help.as we are also facing the same problem.
    and also give me step by step procedure to transfer the variant product from ecc to crm 2007.
    any links any usefull material for variant product in crm 2007 will be highly appreciated.

  • Blocking of products in CRM from R/3

    Hi
    I have a requirement to block some products in CRM system .My question is what in R/3 needs to be set to make this update in CRM?  As our materials are transferred we would need to ensure the master in R3 is correctly set.
    When we are changing the status of D Chain specific status in product master(mm02)  in R/3, the sales status(commpr01)  is getting update in CRM but it is not preventing the order being created using the same product.
    I have found a BADI PRODUCT_CUSTOMER2 but don't know how to implement it if is applicable.
    Looking for a quick reply.
    Thanks.

    Hello,
    Please check SAP note 495764. It answers how MVKE-VMSTA is mapped to CRM product status.
    The BADI is described in chapter 5 of the corresponding documentation 'Customer Enhancement for Download/Upload). You find the document in the SAPNet via the link specified in Note 428989.
    I hope the information could be helpful.
    Best regards,
    Maggie

  • Preli cost compo struc of production orders to sales orders -Non valuated

    Hi experts
    We use Non valuated sales order cost/settlement and assembly order processing. So production order is created from sales order and prel cost estimate is created in the production order. Now we notice that the cost component struc in production order is not copied into sales order. Only the EK02 is copied with total cost.
    How to bring cost compo struc from production order to sales order ?
    This may be a special cost estimate with costing and Is it possible to bring cost compo struc to copa record type A or F.
    I know standard cost compo mapping in copa but I could not see the costing variant used in production order in copa master data configuration.
    regards
    KT

    If the sales order is not a cost object, you cannot cost in it, and you can therefor also not see the cost component split.
    When you sell the material, you can pull through the cost component to PA, via the material master using the COPA valuation strategy. However, only the info for the material in the sales doc line item.
    You don't link to a costing variant, you link using the above valuation strategy and the costing key. The costing variant sits inside the costing key.

  • Replicating Custom Fields for Products in CRM  from ECC

    Hi All,
    I am having difficulty in replicating SAP standard field values from ECC to custom fields for products in CRM. This is what i did:
    1. I created a new settype(ZMASTER_INFO) with a single attribute(ZIND_STD) and added
        this new settype to MAT_HAWA. (As all our materials fall under this material type).
    2. I am looking to map SAP standard field from ECC to this custom field of mine.
        I wrote the code in CRM BADI 
        'ZPRODUCT_CUSTOMER2->MAP_R3_TO_CRM_MATERIAL' with the following code:
    DATA: ls_ZMASTER_INFO TYPE ZMASTER_INFO_maintain.
    DATA: ls_category_bdoc       TYPE COMT_PROD_CAT_REL_MAINTAIN,
          ls_category            TYPE COMT_PROD_CAT_REL,
          lt_categories          TYPE COMT_PROD_CAT_REL_TAB,
          ls_settype             TYPE COMT_settype_ext,
          ls_cat_settype_rel     TYPE COMT_CAT_FRAG_REL,
          lt_cat_settype_rel     TYPE COMT_CAT_FRAG_REL_TAB,
          lt_cat_settype_rel_all TYPE COMT_CAT_FRAG_REL_TAB.
    LOOP AT lt_cat_settype_rel_all INTO ls_cat_settype_rel.
          CALL FUNCTION 'COM_SETTYPE_READ_SINGLE'
            EXPORTING
              IV_SETTYPE_GUID         = ls_cat_settype_rel-frgtype_guid
            IMPORTING
              ES_SETTYPE              = ls_settype
           EXCEPTIONS
             NOT_FOUND               = 1
             NO_IMPORT_VALUES        = 2
             NO_TEXT_FOUND           = 3 .
          IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
      CASE ls_settype-frgtype_id.
          WHEN 'ZMASTER_INFO'.
          ls_ZMASTER_INFO-relation-owner = 'X'.
          ls_ZMASTER_INFO-relation-logsys = cs_product_bdoc-header-com_product-logsys.
          ls_ZMASTER_INFO-data-ZZ0010 = is_mara-STD_DESCR.
          ls_ZMASTER_INFO-DATA_X-ZZ0010 = 'X'.
          APPEND ls_ZMASTER_INFO TO cs_product_bdoc-data-ZMASTER_INFO.
          APPEND ls_settype-FRGTYPE_GUID TO cs_product_bdoc-data-MNT_SETTYPE.
       ENDCASE.
    ENDLOOP.
    Since in ECC i am not having any custom fields i did not write any code in ECC for TPS34 and TBE24. I just wrote this BADI in CRM and using the field S_MARA-STD_DESCR.
    I am not sure if i need to write the code in ECC. COUld anyone please confirm if i need the code in ECC?
    Also in the CRM BADI, lt_cat_settype_rel_all is EMPTY. Not sure how this gets its value.
    Could anyone please suggest if i am missing anything here? Any help is appreciated.
    Thanks,
    Karuna.

    Hi Karuna,
    One more solution is to change the BDoc data content before it hit the Database.
    this can be done in badi: Data_Exchange_badi (if u dont find this try with following search string: xchange)
    In the above mention badi you will find a method which is used to populated the contend jst after bdoc in CRM is being populated by R/3 data.
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • Production order with sales order in MTO

    Using SAP ver 4.7 for make to order scenario.
    Presently production order creation is automated. At the time of creation of sale order the production order is created in the background.
    Now wants to create the Production order manually with reference to a sale order.
    Where this needs to be configure. Kindly advise.
    Thanks
    anya

    Hi Anya,
    Nice to meet you,
    I am Ram, working as CRM and SD consultant in a client palce. I want to know how to generate a production order automatically in back ground while creating a sales order.
    and How can we inform this production order to the production department.
    I request you to please educate me on this issue, your help is most awaited, and will be highly appreciated.
    thank you

  • Place one order with Products from different sales orgs

    Hello,
    We are in CRM 7.0 EHP2 connected to ECC 6.0. We have Internet
    sales/Webchannel Application.
    We are rolling out Internet sales for a new country but they want the option to
    place one single order with products from different sales
    organizations.
    Currently Customers send fax/email to customer
    representative(CR) with list of products. The CR identifies and places
    multiple orders if products belong to different sales orgs.
    Currently customers don't have idea about sales orgs and they don't
    have a clue which product belongs to which sales orgs. So, for them to
    use Internet sales, we have to provide them an option to place one
    order with products from different sales orgs.
    I understand SAP doesn't support this. But, is there any way we can achieve this through some custom/out of the box solutions?
    Thanks,
    Ravi

    Hi Ravi,
    Please have a below help link, it may help you to explain the role of Distribution Channel and if it fits to your requirement.
    Organizational Data Determination in CRM E-Commerce - E-Commerce - SAP Library
    Thanks,
    Hamendra

  • Drop down list for values at parameters forconfigurable product in CRM 2007

    Hi All,
    I want to create configurable service products in CRM 2007 connected with SAP IS-U.
    I uses the simplified product configuration, container approach. Hierarchy, settypes are set.
    Then I created parameters like for example discount, I can set in the WEB UI default value for this parameters, like 5%.
    But I need to have more variables for one parameter.
    For example:
    The agent sells an electricity product to the customer, and wants to configure the product in the sales process, give a discount from 5, 10, 15%.
    This variables 5,10,15% I like to get somehow in a drop down list, that the agent has a choice wich discount he gives.
    Thanks for any answers!
    Gabor

    Patrick,
    In PPOMA, did you check the requester for inheritance?  If the values are maintained at a higher level, is the inhertiance working to the requester level in the org structure?
    Regards, Dean.
    Edit: I just your reply to the previous posting, do you have one set as a default?
    Edited by: Dean Hinson on May 20, 2008 3:27 PM

  • Transfer product catalog  hierarchy sales area level

    Hi all,
    We are creating a catalog in CRM  based on the product hierarchy (in CRM, Catalog->transfer->product hierarchy). The hierarchy is well copied into the catalog, but the products are not automatically added to the hierarchy. The problem is thatin our product master data,  the products are on "Sales Area" level (in the field dist.ch.dep. category), not in the "General" tab
    Please do you have any suggestions? Thanks

    modification of the program was made

  • Configurable products in CRM - Error ASSERTION_FAILED

    Hello Experts,
    I'm trying to use configurable products in CRM. To do this we have decided to replicate the configurable products from ERP to CRM.
    We were able to replicate the products into CRM, but when we try to use these in sales quotations we get the following error:
    Category               ABAP Programming Error
    Runtime Errors         ASSERTION_FAILED
    ABAP Program           SAPLCRM_ORDER_API
    Application Component  CRM-BTX-BF
    Date and Time          28.09.2011 11:17:11
    The first time we tried to create a quotation, configuration of item category determination was missing, so we added the following configuration:
    Tran.Type/ Description TransTyp/ Item cat.Group/ MainItemCty/Decription item cat./ Item Cat./ Description Item cty
    ZAG          Quotation          0002 Config.at Mat.Level                                                            AGC        Quotation Config.
    ZAG          Quotation          0002 Config.at Mat.Level         AGC       Quotation Config.         AGE        Quotation Config.
    ZAG          Quotation      0002 Config.at Mat.Level         AGM       Normal Item Quot.        AGC            Quotation Config.
    Since we added the configuration of item category determination for Configurable material, we get the error described above.
    Could you give us any advice to resolve this problem?
    Thanks in advanced.
    Susana Morgado

    Update: I just found out, to set the proper IPC settings we have to use http://<host>:50000/ipc/admin/xcm/init.do. This one has a JCO-component inside. But unfortunitely it shows a runtime error when it is started. I did change the SSL/security settings to use http. Any idea what this could be, or where to find a detailed error-log?

  • Report for daily production and daily sales

    Can you any body Please let me know which fields we should pick to create custom report containing production  qty and sales qty day wise for each material

    Hi Veesh,
    Whats the scenario you using there? i mean to ask
    Discrete
    REM
    or
    PP-PI
    Thanks & Regards,
    Abu Arbab

  • Creation of IBase for Production data or sales order  in R/3

    Hi,
    My client is a locomotive manufacturing Company, They want to track the failure of parts in the locomotive  and any changes made in the locomotive during service.
    Kindly explain your thought on the following:
    1. Here Each locomotive will have an MBOM created for each sales order. We need to create a IBase equivalent to the MBOM in SAP R/3 47. Is it possible to create an IBase with reference to Production order or Sales order. Will it copy all the BOM components to IBase.
    Thanks in advance
    Manik

    Hi Madhu,
    There can be multiple reasons why it does not go to APO.
    Two of the most common overlooked points are:
    1.   ATP tick in integration model.
    2.   Activation of ATP in external system: this is done in SPRO in the data transfer section.
    Another common point is cheking rule: In SPRO see that your business event(SO) is enabled for ATP check.
    Also you can go to transaction CO09 for ATP simulation in R/3 .
    Hope it helps. Otherwise you can revert with specific questions.
    Regards
    Santanu Dawn

Maybe you are looking for

  • Script debug - what's wrong with this picture?

    I wrote a script a while back which shrinks and saves out images in png format. Nothing fancy. It works fine. I am happy. However yesterday, I discovered that it baulked at a certain file. Initally I thought it was a problem with the script (and that

  • Calling postChanges() Before a Stored Procedure

    I am using JDeveloper 11.1.1.2 and ADF with BC. I have the following situation: I am updating a record via an updatable view object. When I click commit, I also need to call an existing stored procedure on my database to do some updates. The stored p

  • How do I tell Preview/Safari not to date-stamp when I print/save a webpage?

    How do I tell Preview/Safari not to date-stamp when I print/save a webpage as a PDF? There doesn't appear to be a Preference for this. Thanks.

  • Animated Textures for 3D models in After Effects CS4

    I'm working on a project and i was wondering if After Effeccts cs4 supported animated textured for 3D models. I've been making the model in Blender, exporting it as a .obj, opening it in photoshop, and making it into a .psd file. Then i import the .p

  • Can't Initialize Install of Premiere Pro CS4 Trial

    Every time I try and install the Premiere Pro CS4 Trial that I downloaded from this website, it freezes and the program doesn't initialize. But under the task manager it still takes up CPU. I extracted the premiere trial folder to my hard drive and I