How to change product description in CRM

Hi gurus
I need to chage the product description in de CRM oportunity  and in CRM quotations.
The product description is composed for every customer, for this reason I need to change the standar product description in the opprtunities and in the sales order
Could you help me

Hello,
In CRM, product is considered to be a master data and hence product description for the same product should be same
in opportunity as well as in quotation, or else it might create inconsistencies later on.
You have the option to maintain produce descriptions in difference languages but not for different txn types.
Hope this helps!
Best Regards,
Shanthala Kudva.

Similar Messages

  • How to Changing Productive Client in an ABAP+Java System?

    How to Changing Productive Client in an ABAP+Java System?

    1. Log on to the ABAP system.
    2. Call transaction SPRO.
    3. Go to SAP Solution Manager Implementation Guide -->
    SAP Solution Manager --> Basic Settings --> SAP Solution Manager
    System --> General Settings --> Client Copy
    4. Perform the following steps:
    a) Maintain Profile Parameters
    b) Create Client
    c) Copy Client 000
    d) Convert UME

  • How to change the description

    hi all,
    can any body tell how to change the description of the field in the sales order.ex pricing date to customer date some thing like that

    (same answer) for the same question
    Hi,
    to modify the description of field :
    SE38 with program : RSMODWRD
    Enter your field (data element) + language.
    Another way :
    TCode : CMOD and in menu bar Goto / Text enhancements / keywords/Change
    I think, a direct transaction exists but i don't find.
    Regards,
    Lionel

  • How to change Query Description/Technical name of a query

    <i><b>Hi</b></i> I have couple of questions with Query name changing.
    <b>1)Is it possible to change the Technical name of a query?
    If Yes how?
    2)I could change the description of a query but when the same query is saved in a role how to change its description?</b>
    <i><b>Thanks
    Ajay</b></i>

    hi,
    open your query in query designer and use button 'save as' then you can change name description.
    Remember that when you change technical name it will be completely new query and you will have to add it to your role.
    Regards,
    Andrzej

  • How to change the description in CV03(N) transaction ?

    How to chnage the long test description in CV03N transaction  
    Posted: Jan 10, 2010 11:36 PM     Edit          Reply 
    Hi Friends,
    I have a requirement as below:
    1. Excecute the transaction CV04N
    2. Give Document value(s) and Excecute
    3. Double click on any row on the ALV generated which takes you to CV03N transaction
    4. Here in the additional data Tab, I need to concatenate Subject1,Subject3,Subject3 values and this value need to be put Description in the Document data Tab.
    Ex:
    If Subject1 = Test1, Subject2 = Test2 and Subject3 = Test3 then i have to change the description as Test1
    Test2 Test3 When the change followed by save is clicked.
    Please drop your suitable answers ASAP.
    Below is the code i have used using the BADI 'DOCUMENT_MAIN01' and the method 'AFTER_SAVE'.
    Below is the code :
      TYPES:
        BEGIN OF ty_ausp,
          objek TYPE ausp-objek,        "Key of object to be classified
          atinn TYPE ausp-atinn,        "Internal characteristic
          atwrt TYPE ausp-atwrt,        "Characteristic Value
        END OF ty_ausp.
      DATA:
        w_objek      TYPE ausp-objek,
        w_ltext(120) TYPE c,
        w_name       TYPE thead-tdname,        "Name
        wa_drat      TYPE drat,
        wa_ausp      TYPE ty_ausp,
        wa_tline     TYPE tline,
        wa_draw      TYPE draw,
        t_ausp       TYPE STANDARD TABLE OF ty_ausp,
        wa_thead      TYPE thead,              "SAPscript: Text Header
        t_tline      TYPE STANDARD TABLE OF tline.
      CLEAR w_objek.
      w_objek+0(3)  = draw-dokar.
      w_objek+3(25) = draw-doknr.
      w_objek+28(2) = draw-dokvr.
      w_objek+30(3) = draw-doktl.
      SELECT objek                         " Key of object to be classified
             atinn                         " Internal characteristic
             atwrt                         " Characteristic Value
        INTO TABLE t_ausp
        FROM ausp
       WHERE objek = w_objek
         AND atinn IN ('0000000858', '0000001038', '0000001039' ).
      IF sy-subrc = 0.
        SORT t_ausp BY objek atinn.
      ENDIF.                               " IF sy-subrc = 0.
      LOOP AT t_ausp INTO wa_ausp.
        CONCATENATE w_ltext wa_ausp-atwrt INTO w_ltext SEPARATED BY space.
      ENDLOOP.                             " LOOP AT t_ausp INTO wa_ausp.
      CLEAR w_name.
      MOVE draw TO wa_draw.
      w_name+0(3) = wa_draw-mandt.
      w_name+3(3) = wa_draw-dokar.
      w_name+6(25) = wa_draw-doknr.
      w_name+31(2) = wa_draw-dokvr.
      w_name+33(3) = wa_draw-doktl.
      REFRESH t_tline.
      CALL FUNCTION 'DELETE_TEXT'
        EXPORTING
        CLIENT                = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        savemode_direct        = ' '
        textmemory_only        = ' '
        local_cat              = ' '
       EXCEPTIONS
         not_found              = 1
         OTHERS                 = 2.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               "IF sy-subrc <> 0.
      wa_tline-tdformat = '='.
      wa_tline-tdline = w_ltext.
      APPEND wa_tline TO t_tline.
      wa_thead-tdobject = 'DRAT'.
      wa_thead-tdname = w_name.
      wa_thead-tdid = 'LTXT'.
      wa_thead-tdspras = 'E'.
    wa_thead-tdtitle = w_ltext.
      DATA:
        w_function TYPE c,
        wa_newheader  TYPE thead.
      CALL FUNCTION 'SAVE_TEXT'
        EXPORTING
         CLIENT                = SY-MANDT
          header                = wa_thead
          insert                = ' '
         SAVEMODE_DIRECT        = 'V'
        OWNER_SPECIFIED       = ' '
        LOCAL_CAT             = ' '
       IMPORTING
         function              = w_function
         newheader             = wa_newheader
        TABLES
          lines                 = t_tline
       EXCEPTIONS
          id                    = 1
          language              = 2
          name                  = 3
          object                = 4
          OTHERS                = 5.
      IF sy-subrc <> 0.                    "IF sy-subrc <> 0.
    Raise message
      ENDIF.
      REFRESH t_tline[].
      CLEAR wa_thead.
      CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          id                    = 'LTXT'
          language              = 'E'
          name                  = w_name
          object                = 'DRAT'
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
       IMPORTING
         header                        = wa_thead
        TABLES
          lines                         = t_tline
       EXCEPTIONS
         id                            = 1
         language                      = 2
         name                          = 3
         not_found                     = 4
         object                        = 5
         reference_check               = 6
         wrong_access_to_archive       = 7
         OTHERS                        = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Please help why it is not getting effeted OR
    Give a differnt way of Solving this issue.
    Please drop your suitable answers ASAP.
    Regards,
    Rama.P

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to Check product warranty in CRM based on R/3 invoice creation date

    Dear all,
    As per our client business process, for a sales product warranty starts once after creation of Invoice in ECC system. in that case, how to perform warranty check in CRM Complaints based on ECC Invoice creation date.
    Please suggest me the standard SAP solution for this. Your help will be highly appreciated
    Regards
    Raghu ram
    Edited by: Raghu Ram on Jan 11, 2010 7:24 AM

    Hi Raghu,
    This is pure development. But it is possible.
    You need to use a function module to create warranty contract in CRM against to ECC invoice with the following prerequisites
    1. Same SLA should be available in both ECC and CRM (In ECC there is no SLA concept, in that case u need to maintain SLA as text component in delivery/sales order or any Z transaction document, the same can be pulled into CRM warranty contract)
    2. All the products sold in ECC should be having serial number during delivery process. Then the combination of product and serial number will be created an equipment master in ECC. This equipment master should be replicated to CRM as and when it is created in ECC.
    3. The partners in equipment master should be same as in invoice or sales order document in ECC
    4.  Addiitionally, all the products in the ECC invoice to be replaced as service material with SCN item category (We used this logic), so you can use any other logic to get service line item. You can use any common service material also as line item.
    5. Male the status profile settings to release the contract once it is created and saved in CRM
    6. In the complaint or service request document, set the contract determination as Unique number (I think "D")
    As standard, You can create wrranty contract and assign warranty master as and when ECC invoice is created by manual method.
    Hope this development logic will be useful.
    Regards,
    Ram.

  • How to change infoobject descriptions in a query after change the infoobjec

    Hi all,
    Imagine that you have 200 queries in production and need to change some descriptions in 2 infoobjects. eg:
    Infooject 1 = "Customer Sales View"
    Changed to    "Cust.View of New MKT"
    Infooject 2 = "Material for sales"
    Changed to    "Material"
    Is there any way to change all queries automatically ? Via Report or Function or Transaction ?
    Suggestions ?
    Best Regards,
    Mauro.

    Hello Madhukar,
    We recently had upgraded to NW2004s and in few queries even when I login with different language for instance Portugese the infoobject descriptions still show up in english and are not changed.
    Can you please let me know if I need to update the RSZELTXT table along with other tables. If so can you please forward me the ABAP Code in order to do the same.
    Your help would be really appreciated if you can reply promptly as our UAT is pending on this issue.
    Let me know.
    Thanks
    Dharma.

  • How to change the description of Transaction Type

    hi ,expert
       i want to change the description of Tansaction type.
        eg, change the description of BUS2200 :'RFx  '   to 'RFQ' . 
        please give me some advice. thanks in advance.
         regards
                claud

    Hi Claud,
    Go to SPROSRM ServerCross App Basic SettingsNumber rangesDefine transaction typesSelect BUS2200 and double click on transaction typesHere you will see BID (transaction type)--Just double click on this and in the screen that follows change the description.
    PS: The system will generate a transport request.
    Regards,
    Nikhil

  • How to change product master data in GTS?

    Hi Experts,
       I want to change additional data of a product master in GTS.
       I want to update the values in the screen below (Additional data)
       How can I do this? are there any function modules?
       Please help.
    Thanks
    Gopal

    Hi Gopal, guys
    Sorry if i`m repeating what someone else said before as its a long thread.
    The preferable option that we implemented is a small custom Z transactio where users maintain these attributes. Selection screen same as the ususal /sapsll/product_02, and then get the PRGEN entry and maintain on second screen.
    Using the API FM used for ECC system sync... well maybe its a bit unnecessary & overcomplicated. Once you get the Product Object, you can use the maintain object/ maintain subobject methods that is standard and works without simulating inbound api call..
    heres the screenshot
    Hope this helps,
    UPDATE : Mind you, that if you do changes to the attributes in GTS, they will stay for as long as there is no new update for the material in ECC...
    Once a change pointer or manual transfer triggers a re-transfer, manuall changes will most likely be flushed and set back to what comes from ECC api.. just bear this in mind pls & test this case...
    Branio

  • How to change field labels in CRM without changing original data structure

    Hello, I wish I could change the label of the input-type fields that are visibile in the CRM Account search page.
    The only way I have found so far is: go to the structure CRMT_BSP_SEAREQ_ACCOUNT
    and change the short description of the component.
    This is, anyway, very invasive, as I have to modify a SAP structure and I am asked an activation key.
    I have gone through the PCUI but cannot find a way to change the labels, anybody has a hint?
    At least, I would like to give the labels the same length so that the page is better organized, now all columns have different widths...

    Sorry, I had not seen this previous answer
    https://forums.sdn.sap.com/click.jspa?searchID=9822963&messageID=4781696
    Very nice!!!

  • Change Product data in CRM

    Hi,
    I'm using CRM 5.0 and I need to add product category (with attributes) and thumbnail picture to existing products.
    As I browse through the forum, many have suggest to use Function COM_PRODUCT_MAINTAIN_MULT_API.  However, it seems this function require me to populate many fields other than Product ID and GUID.
    Is there any other FM or BAPI that I can use to modify product data or perhaps is there a function that I need to call to get all the existing product data before calling com_product_maintain_multi_api.
    Thanks in advance for any help.

    Hi,
    I have success in getting the product data now. The problem is how should I populate table parameter for COM_PRODUCT_MAINTAIN_MULT_API.  I tried copy coding from OSSnote 810153, but it doesn't work in CRM 5.0 ( missing some structure).
    Has anyone try this function before in CRM 5 and can give me some guidance. Thanks.

  • How to change the description of a program or report

    Hi,
    I had copy a report of and changed thereby the name.
    But the description is still the same and I can't find
    a way to change this.
    The problem with the description is that it appears
    as program-title in selection-screen-->select-options.
    Thanks for help

    Hi
    change the attributes or
    In the REPORT along with name
    declare NO STANDARD PAGE HEADING
    it will not display the report description in the output.
    Reward points for useful Answers
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • How to change Production Order Number in CO01

    Hi,
    I have requirement to change the system provided production order number AUFNR to alphanumeric while creating Production Order in CO01 based on plant(WERKS) and Order Type(AUART).
    I have tried using below exits:-
    PPCO0006    - no exporting parameter for AUFNR
    PPCO0001   
    IQSM0001     - doesn't getting triggered
    But unable to resolve the issue.
    Please suggest any EXIT/BADI to meet the requirement.
    Thanks,
    Mayank

    Hi Dengyong,
    Thanks for your reply.
    My doubt is, Order type is already created in the system and whenever I am trying to change the number range it is asking for 'Numeric type only'. I am trying to do the same through CO82.
    We have to change the number range of Order Types which is already created in the system. Is it possible???
    Thanks
    Mayank

  • How to change the description of a selection screen

    Hi , I created a selection screen with the description as 'Test' , now the program has grown real big . I want to change the desccription to something else as it shows at the top of the selection screen. Can this be done with out copying the program to a new progarm with a new description. I mean , is there a way to change the current description .
    Thank you .

    Hi
    in SE38 Enter the program name.
    Select the Radio button<b> Attributes.</b>
    Change the <b>Title </b>of the Program.
    This title will appear in the selection screen as well as the list by default.
    We can also set this TITLE dynamically using the command.
    SET TITLE-BAR 'T1'.  "double click on T1 and create (Activate) it.
    <b>reward if Helpful.</b>

  • How to change the description of variant article

    Hi All,
    I need to append some value( size or country) to the variant article description.
    suppose if the generic article no is 123456 (football shoe)then the variant article numbers will be
    123456001 , 123456002 etc...which is done by default by SAP. and the description also is taken from geenric article football shoe, same like generic article, this we need to change.
    now the description of the variant article also will be taken from Generic article.
    but here the description is to be chagned(appened) with some value.
    ex. football shoe IN 9 (indicating the India and size 9)...
    iam looking at some enhancement MGW00002 and user exit:EXIT_SAPLMGNK_003, but this is useful only to change the variant article number not description.
    Any hints will be great help.

    Hi,
       I know I am a little to late to the party! But for all those who are going to search for this in the future there is a very good blog...i am posting the link below...
    Basically run the program RDDIT076...
    http://scn.sap.com/community/abap/blog/2015/03/12/program-to-change-transport-request-description-after-release
    Regards,
    Divaker

Maybe you are looking for

  • Windows update 8.1

    I'm having trouble finding out if I have the necessary components and updates to perform the Windows 8.1 Update installation. I  am running Windows 8 x64 OS on a Satellite c855-s5118. I've tried 2-3 times to run the update from windows store and it d

  • When we go for shared Server environment?

    When we go for shared Server environment from Dedicated server mode? When we have to choose thi shared Server mode? Which is the optimized way?

  • Tessellations

    I want to make a tessellation using Photoshop Elements 4.0 on a Dell pc with XP. I want to use digital photos in this tessellation. Can anyone help me with this project.

  • Trigger List.Select_Command for List.Multiple By Using J2ME

    I have some questions regarding the menu button. Since I'm unable to disable it, so I'll be using List.Multiple to allow the user to have their multiple selection. Unfortunately, List.Multiple is unable to trigger 'List.SELECT_COMMAND' as this comman

  • DNG and Camera Raw 6.1 on Windows 7/64 bit ?

    is DNG and Camra Raw availble for Windows 7/64 bit? There also seems to  "codec" that will allow raw files to show up in Windows as thumbnail images, right?