How to update Item(Product/Product category) Description ??????

Hi
I have to update Item(Product/Product category) Description in opportunity/ lead during Create.I have created the opportunity using the FM BAPI_BUSPROCESSND_CREATEMULTI in CRM 5.0 .But i am unable to update the product description details.
It is an urgent requirement.please provide me with the correct function modules or any sample code in this regards.
Thanks in Advance,
Shwetha.
[email protected]

Hi Shwetha!
I have never used this FM....but i have had a look and u hace to update the structure:
PRODUCTS STRUCTURE BAPIBUS20001_PRODUCTS
In this structure: BAPIBUS20001_PRODUCTS-SHORT_TEXT.
Regards,
Mon

Similar Messages

  • How to update Item level shipping data when item category is changed

    Hi All,
    My requirement is when user changes a sales quoatation item category value and presses 'Enter' then based on item category's value the corresponding item and it's sub-items' shipping data(delivery status) should be modified.
    To achieve the same, i tried implementing the BADI CRM_ORDERADM_I_BADI which gets triggered when user makes changes in sales quoatation item level and presses enter. Now my query is within this implementation i am not able to use CRM_ORDER_MAINTAIN as it throws "Recursive_call" error so how can i update item level shipping within this implementation?
    Regards,
    Bharathy.

    Hi Shwetha!
    I have never used this FM....but i have had a look and u hace to update the structure:
    PRODUCTS STRUCTURE BAPIBUS20001_PRODUCTS
    In this structure: BAPIBUS20001_PRODUCTS-SHORT_TEXT.
    Regards,
    Mon

  • Patching - How to update the console product version when installing Update Rollup 5

    Hi,
    I just completed a patch to upgrade Service Manager to Update Rollup 5. I updated the data warehouse servers and management servers.
    When looking at installed programs in Windows it shows that Service Manager has the latest version 7.5.3079.315:
    However, when I look in the About Service Manager option in the console it shows a product version of 7.5.3079.0:
    How do I update the console product version so that it shows the 7.5.3079.315 version?

    Hi,
    This behaviour is expected. Unfortunately, Microsoft does not update the About Info screen of the SCSM console. Add remove programs shows version .315, which means the console was also updated.
    Make sure to also update consoles that your users are running on their computers.
    BR,
    Dieter

  • CCM - How to make items in one category to be sorted as expected?

    Hi,
    I'm searching for a way to sort items in one category in CCM, so that when end users open Catalog via SRM, click into the category, they can see some items on top of the list automatically.
    I had thought the items should be sorted by Item Valuation and also tried to upload items in CCM in the order I wanted. But when I created shopping cart as an end user to connect to catalog, the order of the items are totally different. And I even could not tell how the items are sorted, it seems it's not by item valuation, not by item description, not by price, not by anything... Is it that in the catalog search engine the items are not sorted at all?
    Can somebody share with me how I can realize that? Many thanks!
    Best Regards,
    Elly

    Hi Elly,
    You can use the information [here |http://help.sap.com/saphelp_ccm20/helpdata/en/3f/3166e98d564c45ba9385187d7cc3cb/content.htm]to determine the sort order of characteristics, this is all that can be effectively maintained.
    Regards,
    Jason

  • How to update item instance in oracle install base?

    Hi,
    I have a doubt in updating item instance in oracle install base.
    I am using a API named csi_item_instance_pub.update_item_instance for this. I want to update Party OWNER, party contacts, Current location,Install location, bill_to address,ship_to address..etc. When i try to update party owner, it is updating in csi_i_parties(col:party_id) as well as updating in csi_item_instance(owner_party_id). In csi_item_instance table,owner_party_id column is updated. but corresponding owner_party_account_id is not changed. I have given party_account_id to update in csi_ip_accounts table. It has changed in csi_ip_accounts table. But in csi_item_instance table(owner_party_account_id) is not changing. Can anybody help on how to change owner_party_account_id in csi_item_instance table please? Thanks in advance.
    --Muruga
    Edited by: Murugeshapps on Jul 1, 2009 12:07 AM

    Out of the box, I don't think that there is any API or program to delete the records from csi_item_instances because deleting IB record affects many modules (like Inventory, Order, Service Contracts etc). IB records should be expired if they are created incorrectly and you can run Transaction History Purge program to delete all history records related to that item.
    Thanks
    Shree

  • How to update Item UOM in Item master

    Hi All,
    How can we update UOM of an old Item (with existing transaction) in Item master?
    Thanks in advance,
    Nuel

    Hi Nuel,
    It is not possible to update the UOM for an item.
    Even Oracle support cannot give data fix once the item is transacted.
    Only way I say is to change the item name using the profile option INV: Updatable Item Name
    Then recreate new item with correct UOM.
    For Example - item name is TEST.
    Change the name to TEST-OLD.
    Create new item with TEST.
    Issue out all old onhand and recieve new onhand.
    Please let me know if you have questions.
    Regards,
    Sabari

  • How to update items in combo box programmat​ically

    I have a problem on updating items in combo box programmatically, such as add or remove a item from the list. I can add or delete without any problem once the vi is running. I can see it is changed by pressing drop button. But after I close the vi and rerun it, the change I did last time is lost. It seems it not permenatly change the list. Anyone has an idea?

    If you are changing the list programmatically why do you believe that it should be permanent? If it's permanent, why are you changing it programmatically? Doesn't make a whole lot of sense.
    If you're talking about saving the values as "default" in the same way you do with the development environment, you cannot do this with an EXE. This is a FAQ. You have to update the list programmatically, saving the "new" default values to file.

  • How to update item level Pricing  in CRMD_ORDER

    guys
    i am using FM : CRM_ORDER_MAINTAIN to update many fields in CRMD_ORDER t-code
    except for the Conditions Tab in item level i am able to update other fields...
    here is my code please let me know if i am missing something.....
    data: IT_PRIDOC TYPE CRMT_PRIDOC_COMT ,
            WA_PRIDOC TYPE CRMT_PRIDOC_COM,
            IT_COND_ADD TYPE PRCT_COND_EXTERNAL_INPUT_T ,
            WA_COND_ADD TYPE PRCT_COND_EXTERNAL_INPUT.
    *********FILL IT_PRIDOC
    Item Level Conditions Tab
    WA_PRIDOC-REF_GUID = WA_ORDERADM_I-GUID.
    WA_PRIDOC-REF_KIND = 'B' .
    wa_cond_add-KSCHL = '0PSV'.
    wa_cond_add-kbetr = '333.00'.
    wa_cond_add-kpein = '1'.
    INSERT wa_cond_add INTO TABLE it_cond_add.
    CLEAR wa_cond_add.
    WA_PRIDOC-COND_ADD = it_cond_add.
    CLEAR it_cond_add[].
    INSERT WA_PRIDOC INTO TABLE IT_PRIDOC .
    CLEAR WA_PRIDOC .
    *********FILL IT_INPUT_FIELDS
    WA_INPUT_FIELDS-REF_GUID = WA_ORDERADM_I-GUID.
    WA_INPUT_FIELDS-REF_KIND = 'B' .
    WA_INPUT_FIELDS-OBJECTNAME = 'PRIDOC'.
    even if v debug by putting break-poing on CRM_ORDER_MAINTAIN and do some changes in the pricing values .. the FM showes no changes in debug mode but values will be updated...
    expecting expert comments .
    Amshu

    i missed Handlers .. its working

  • Update contracts when material short descriptions are changed

    Hi All,
    How to update contracts when material short descriptions are changed?
    Regards
    Pankaj

    Hi,
    This is NOT automatic and it should not be automatic. the whole idea of the contract is for it to be a very specific document for that situation only. So if you want to change the short description on a range of contracts then I would suggest an LSMW, CATT or similar job to do the mass update.
    Steve B

  • Product Category Description 2 in SRM missing

    Hello,
    we have the issue, that the Product Category Description 2 is needed in the SRM System. The replication from ERP just giving  Product Category Description 1. We are running SRM 7.0 and habe ECC 6.0 (EHP4) as Backend.
    What would be the best way to solve this?
    1. Enhance the master data replication and
    2. Enhance the dataobject Product Category in SRM with the field wgbez60 to store the data
    How can an enhancement to the replication be done? Is there a BADI as for vendors available?
    How the middleware program need to be changed?
    Thanks for your reply
    Regards
    Edited by: trevor_987 on Dec 2, 2010 12:12 PM

    Hi. In that case....
    Go to BBPSC01 in the GUI, get the search help name from the category field.
    Go to SE11 and change the search help to add a new field and put in a search help exit just like any other search help.
    This way you can use the search help exit to read both descriptions from the backend and populate the search results.
    This will allow users to see both descriptions when searching.
    After they choose a category they will only see 1 description in the cart though.
    You could implement a custom field and use BBP_DOC_CHANGE_BADI to populate the second description. It will be shown in a different section on the cart though.
    Alternatively you could look at changing the templates, that would be quite tricky for something this complex though.
    Regards,
    Dave.

  • Product Category Description Missing

    Hello all,
    We replicated product category from R/3 to SRM . The problem is, the product category description field is missing for the categories replicated. I had replicated one more just to make sure all data got transferred correctly, but the description is also missing for the single one replicated. How can this be resolved?
    Thanks.

    Hi,
    Pls see if the foll note is helpful:
    Note 455949 - IMG Customizing switch for merchandise category long text in
    Related Notes
    749245 - Unicode: Language and currency fields are not filled
    365983 - Copy long text during download merchandise category
    BR,
    Disha.
    <b>Pls reward points  for useful answers.</b>

  • How do I create a product or item database so I can search fr the product and its files with hte pro

    How do I create a product or item database so I can search for the product and its files with the products name or four digit code

    Ok so I made some progress on this. I have figured out, that I can add a chained "add to cart" to certain items, then when they click the button for Buy now, it will add both items to the cart. However, this would require me to manually build each product page and generate a custom button for each one with both product IDs in it.
    Can anyone offer help on how to put some JS in that would append a second function to the onclick function that BC Generates dynamically?
    For the products that require a set up fee, I would assume I would add in to either the product templates or in to the item description some JS that would find the onclick of the buynow button and append a second function to also add to cart the setup fee product. The end result being code that looks like this:
    <input type="submit" class="productSubmitInput" onclick="AddToCart(188536,6314368,'',4,'','',true);AddToCart(188536,6314367,'',4,'','',tr ue);return false;" value="Buy Now" name="AddToCart_Submit" />
    Except of course, the product ID on the first AddToCart would be the main product with the second one being the one appended.
    Does any of that make sense? lol

  • I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it this about and how do I get my product back

    I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it this about and how do I get my product back

    Hi there
    I have version 5.7 and every time I opened it I was told that updates are available and to click on the icon to access these.  Instead it just took me to the
    adobe page with nowhere visible to update.  I then  sought to download lightroom cc and this is when I could not access the 'develop' section due to reduced
    functionality  It was apparent that my photos had been put in cc but no way to access them unless I wanted to subscribe. 
    I have since remedied the problem as  my original lightroom 5.7 icon is still available on the desktop and have gone back to that.  I do feel that this is a bit
    of a rip off and an unnecessary waste of my time though.
    Thank you for your prompt reply by the way.
    Carlo
    Message Received: May 04 2015, 04:52 PM
    From: "dj_paige" <[email protected]>
    To: "Carlo Bragagnolo" <[email protected]>
    Cc:
    Subject:  I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have
    reduced functionality what it this about and how do I get my product back
    dj_paige  created the discussion
    "I have just sought  to update my lightroom and am now unable to access the develop function and get a note stating that I have reduced functionality what it
    this about and how do I get my product back"
    To view the discussion, visit: https://forums.adobe.com/message/7510559#7510559
    >

  • How can I add a new line item for production order?

    HI all,
    How can I add a new line item for production order through BAPI/FM? Thanks in advance.

    Hi Mil,
      Unfortunetly SAP is not in front of me.
    But if possible go to BAPI transaction , check for any production order's bapi for CHANGE purpose. Where you will be able to add your new line.
    Reward if useful!

  • How can I control the Product Category in the Pre-select screen

    Dear ,my expert :
       I  work in ROS scenario . In my case ,the supplier can select Product Category A, Product Category B,and Product Category C when they  filled the data in the  registration scren . And the purchaser A just is responsibility for the Product Category A ,and the purchaser B ,C are the same situation .
      So ,my question is :
       1,How can I control the Product Category in the Pre-select screen? I mean that the Purchaser A can just select the   Product Category A in the Pre-select screen .
       2,You know the supplier select two category  is one BP in the system ,So if the purchaser A accepe the supplier ,the purchaser B will find the status is "accepted ",So the purchaser B will be confused about it .
       SO ,in my case ,any one has the suggestions ,any link welcome .
       Bestregards
      alex

    Hi Alex,
    As per standard SRM solution, this is not supported. Purchasers who accept new suppliers, accept them on the whole and not for any specific product category. There is no such thing as Purchaser being responsible for specific prod category in ROS.
    What you could do however is to build a custom workflow to achieve it. You could have category approvers after the purchaser has accepted the supplier. Based on the category provided by the supplier in the reg form, you could route these suppliers to appropriate category approvers.
    Regards,
    Nikhil

Maybe you are looking for

  • How can I get an Ipod 4th generation users manual

    I bought a refurbished IPOD touch 4th Generation 8 GB as a Christmas gift for my niece from the apple store but it does not have a user manual with it. IS there anywhere I can get one to include with it when I give it to her for Christmas.

  • How To Insert A object into Conext

    Hi Techies, I have 8 tables in my designer and I have two contexts at designer level And how to insert a object into a context that is not referencing any table. For Example I have an object like "rownum" (Which should must be added at Universe level

  • Oracle 10g Forms and Reports documentation

    Hi, I need link to oracle docs for forms and reports 10g. Looked around at the following link but could not find docs apart from "Release Notes" http://www.oracle.com/technetwork/developer-tools/forms/documentation/10g-forms-091309.html Since, i have

  • Vi/vim doesn't work right on arch

    I just got into using arch linux. I have used various others like gentoo, ubuntu, and red hat. But for some reason the default install of vim is totaly unusable. Pressing "i" enters edit mode like it is supposed to but the arrow keys don't work and n

  • Macbook Air or Gaming PC

    I would bring the Air to my high school to take notes, but my school is getting Chromebooks which I'm not excited for. I don't know what games I play that would last a long time to be $800. The PC is $$823 and the refurbished Air is $800.