New Field in CRM Web IC

Hi All,
I have we have done some enhancement to Activity header table and we manage to bring that field in SAP GUI. Now we want to bring that field in Web IC. We alreadly copied CRM_IC application to Z_CRM_IC
In order to bring that field what r all steps need to be done. I can see that field in BOl structure ...now I want that field in web IC
Please Help me on this.
Additional info: we are using CRM 5.0
Kind Regards,
Kumar

Hi Anil,
    As you are using 5.0, bsp_wd_cmpwb won't work.
    For your requirement, go to the tcode bsp_wd_workbench
    and enter the new BSP app created by you. And create a new
    context node in the newly added view. A wizard gets opened.
    Enter all the details by mapping it to the BOL entity which you
    already know. Next create the attibute under this context node
    and write the necessary coding so as to display the new field.
    Let me know if you face any issues.
Thanks,
Arun

Similar Messages

  • Error while using new fields added to Web UI through AET

    Hi,
    I have added three new fields in CRM Web UI of data type 'Numerical' in component BP_ADDR in object ACCOUNT.
    But when creating a new account, when I enter a number(say 10) and then press the ENTER key, the number disappears and a zero(0) is displayed in the field.
    Now when I again key in the number, it stays and is saved.
    Can somebody tell me is there any particular reason for this or while during field generation, I have missed out some entry that needs to be maintained. Please guide me on this.
    Thanks and Regards
    Varun Taneja

    Hi Eli,
    Thanks a lot for your quick response.
    We have added  the following fields: No. of Company Owned Cars, No. of Employees and No. of Employee Owned Cars.
    These fields can also be added in some other component, not necessarily BP_ADDR but that does not make any difference.
    I have checked that the standard address fields are filled in correctly in the first round of entry itself.
    Can you please suggest in which object should we add these fields, BUPA or ACCOUNT?
    Thanks and Regards
    Varun Taneja

  • Add ECC Custom Fields in CRM Web UI ERP Order item

    hi all,
    i have to Add ECC Custom Fields in CRM Web UI ERP Order item .
    I have :
    -  add the field on Web UI Screen.
    -  add the field on structure  TDS_item_COMV  and  TDS_item_COMC in ecc
    -  insert record for field on LORD_MAPPING table
    -  implemented badi BADI_LORD_DO_PA BADI_LORD_GET_INPUT_MODE.
    -  implemented method GET_I_S_STRUCT on crm with  :
    CASE COMPONENT.
        WHEN 'ZZSPOND'.
          RV_DISABLED = ABAP_False.
    endcase.
    - on method  do_prepare_output i have change value of fields with code :
    lr_loop = typed_context->erpadmini->collection_wrapper->get_first( ).
    WHILE lr_loop IS BOUND.
    posnr = lr_loop->get_property_as_string( iv_attr_name = 'POSNR' ).
    Does the current item has to be set for "Sponda Idraulica"?
    READ TABLE Z5CL_GSA_TOOL0001=>GT_ITEMS_SPOND INTO ls_spond
                                  WITH KEY posnr = posnr.
    IF sy-subrc = 0.
    lr_loop->set_property_as_string( iv_attr_name = 'ZZSPOND' iv_value = 'X' ).
    DATA : V_X TYPE STRING.
    V_X = lr_loop->get_property_as_string( iv_attr_name = 'ZZSPOND' ).
    ENDIF.
    lr_loop = typed_context->erpadmini->collection_wrapper->get_next( ).
    ENDWHILE.
    I can't change the field  value  because it is "not changeble"  .
    Can you help me ?
    Thanks in advance.

    Hi Celi,
    I have created some fields at header level of ERP Order, and the user is available to change them, replicating the information to SAP ECC (using interface LORD II). 
    All sales item information is treated using RFC ERP_LORD_GET_ITEM_MULTI, available in SAP ECC. 
    Please check the following point:
    If those structures below were expanded with your custom fields:
    SAP CRM:
    CRMST_L2_ITEM_COMV
    CRMST_L2_ITEM_COMC
    CRMTT_ADMINI_ERPIL
    CRMTT_ADMINI_I_ERPIL
    SAP ECC:
    TDS_RFC_ITEM_COMV
    TDS_RFC_ITEM_COMC
    Please check if for your scenario is necessary to implement the enhancement BADI_LORD_DO_PAI method ADD_SUPPLY_LIST. The code below works for header level.
      DATA: ls_supply TYPE tds_field_supply.
      IF iv_object_id EQ 'HEAD'.
        IF iv_module EQ 'VBAK_BEARBEITEN'.
          ls_supply-field = 'ZZCCINS'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZCCNUM'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZCCNAME'.
          APPEND ls_supply TO ct_supply.
          ls_supply-field = 'ZZAUNUM'.
          APPEND ls_supply TO ct_supply.
        ENDIF.
      ENDIF.
    I hope it helps!
    Kind Regards!

  • Creation of new field in CRM activity screen

    Hi CRM Experts,
    I need some help regarding this issue.
    Now when executing the campaign in the CRM system the results are not showing the function code.
    We need the function code to visible when executing campaign.For this we need to add new field in CRM activity screen.
    And the function code values are stored in the BUT051 table and field name PAKFT and Data element BU_PAKFT.
    When we executinmg the campaign FUnction also should be there in the selection criteria.
    Please help me how to create new field and assign this function code in the search results.
    Please reply me ASAP.
    Thanks in Advance
    Regards,
    rahul

    Hi JC,
    The context node that you are using is a mixed node, so from this node you need to get value node so that you can cast the value into cl_bsp_wd_value_node.
    Here's the sample code for getter and setter method of that attribute:
    DATA:
       lr_mixed TYPE REF TO cl_bsp_wd_mixed_node,
       lr_value_node TYPE REF TO cl_bsp_wd_value_node.
    lr_mixed ?= current  or lr_mixed ?= iterator. " use either of the code i dont have system right now
    lr_value_node ?=  lr_mixed_node->if_bsp_wd_ext_property_access~get_value_node( ).
    Here, from lr_value_node get the property access method and set the attribute value to VALUE parameter.
    Thats it
    Thanks,
    Bhushan

  • How to add a new Field to the WEB User Interface in CRM 2007

    Dear experts,
    I have been struggling to add a new field to the (CRM 2007) user interface from available fields for a specific view.
    I have maintained settings in BS__WD_CMPWBàRuntime Repository editoràComponentàViewàConfigurationàNew ConfigurationàAvailable FieldsàField Propertiesàand save.
    But the field is only appearing in display mode in the Web UI, which doesnu2019t allows any user input.
    I need your help to resolve the issue, I would be grateful if you could provide step-by-step documentation with screenshots or any other kind of documentation.
    Each suggestion will be appreciated.
    Best regards,
    Raghu ram.

    Hi Raghu Ram,
    I think you added a new custom field using some method like EEWB etc.,
    Then, you are adding the field onto the UI using UI Configuration Tool .. right ?
    These are the steps to diagnose:
    Method 1.Check the field properties in the model browser first.
      It should be showing 'C' i.e., CHANGEABLE. If it is showing as 'R', it is only READABLE.
      In such a case you need to find a BADI to change the field properties.
      For example, in Marketing Applications OBJ BADI has a method CHANGE FIELD PROPERTIES for this purpose.
    Method 2. Debug and check what is the value coming for RV_DISABLED parameter in the GET_I method in BSP_WD_CMPWB. This should be FALSE.
    Method 3. Check what are the field properties in the UI Configuration tool.
    Make sure it is not a display only field.
    Regards,
    Masood Imrani S.

  • How to add new fields to CRM 2007 Web UI

    Hi,
    I am new to SAP CRM 2007 and I am interested in how to extend the Web UI, for example adding new fields, to meet the customer requirements. Should I use the EEW or is there another "new and easier" way?
    Thanx & best regards,
    Oliver
    Edited by: Oliver Pregler on Jan 30, 2008 5:50 PM

    Actually for the new IC webclient UI you have need to take a look at your options:
    1.  New Installation:
    Use the EEWB and add the fields.  As part of the EEWB work, you will have a couple of post-processing steps where you will add your generated fields to the new screens.  However this doesn't require any programming.
    2.  Upgrade from CRM 4.0/50
    - New fields to add as part of upgrade
    See the directions for new installation
    - Existing fields to add as part of upgrade
    --See the blog on the 40/52 CUSTOMER_H migration for transaction fields
    --Business Partner fields part of BUT000 available via UI configuration tool, no extra work needed
    --Business Partner fields part of tabular extension, manual work required, I am still "perfecting" this method and plan on writing a blog once I have the technique finished.
    --Product Attributes - use the transaction CRMM_UI_PROD_GEN and CRMM_UIU_PROD_CONFIG
    I know CRM 2007 is based on the same tech foundation as 2006s, with some differences in how the UI tool works and the fact there are some screen layout changes(editable overviews).  The extension procedures are generally the same.  I can answer some of you extension questions based on my work with CRM 52 so far.  It will generally apply to your situation.
    BTW:  The PCUI is no longer supported in CRM 2006s and above.  Even the old SAP GUI transactions such as BP, COMM_PRODUCT are removed from the standard CRM menu.   The SAP CRM web client should be used instead now.
    Take care,
    Stephen

  • How to add new fields to CRM contract Product List tab?

    Hi all!
    I would like to add a new custom field for CRM contract (CRMD_BUS2000121) item level, on the Product List tab.
    Here I found CRMT_0100A_ORDPRP_I_EXT_UI structure, therefore I enhanced this with new append structure and new fields.
    I also added the new fields to ORDPRP_I append structure and mapped the new fields in CRMC_MAP.
    For some reason the new fields are on the screen but they are grey, not changeable. What did I do wrong?
    Thanks,
    Tamas Pentek

    Actually for the new IC webclient UI you have need to take a look at your options:
    1.  New Installation:
    Use the EEWB and add the fields.  As part of the EEWB work, you will have a couple of post-processing steps where you will add your generated fields to the new screens.  However this doesn't require any programming.
    2.  Upgrade from CRM 4.0/50
    - New fields to add as part of upgrade
    See the directions for new installation
    - Existing fields to add as part of upgrade
    --See the blog on the 40/52 CUSTOMER_H migration for transaction fields
    --Business Partner fields part of BUT000 available via UI configuration tool, no extra work needed
    --Business Partner fields part of tabular extension, manual work required, I am still "perfecting" this method and plan on writing a blog once I have the technique finished.
    --Product Attributes - use the transaction CRMM_UI_PROD_GEN and CRMM_UIU_PROD_CONFIG
    I know CRM 2007 is based on the same tech foundation as 2006s, with some differences in how the UI tool works and the fact there are some screen layout changes(editable overviews).  The extension procedures are generally the same.  I can answer some of you extension questions based on my work with CRM 52 so far.  It will generally apply to your situation.
    BTW:  The PCUI is no longer supported in CRM 2006s and above.  Even the old SAP GUI transactions such as BP, COMM_PRODUCT are removed from the standard CRM menu.   The SAP CRM web client should be used instead now.
    Take care,
    Stephen

  • New field in CRM datasouce is not replicated into BW datasource

    Hello Everyone
    I am hoping you will be able to help me. We have created a new field on our CRM Activities datasource CRM_SALES_ACT_1. This datasouce is currently active and we are using a delta update to our BW system. We have added a new custom field to this datasource which is being populated in CRM (I have checked this using RSA7). However, when this datasouce is being replicated in BW it is not bringing across the new field into the datasouce. We replicted the datasources when the delta queue had been cleared down.
    Please can anyone suggest what else I can try, Do I have to delete the current initialisations, and then recreate them using initialisation without datatransfer?
    We are using BW3.5
    Many thanks
    Gareth

    Hi Gareth,
    I am currenlt involved BI 7.o implementation for CRM analytics (CRM 2007). I am working on a UK council project. I am first time working with CRM.
    Mainly we have to provide reports on,
    service tickets,
    Activities,
    Survey
    ERMS etc..
    Can you please provide some design documentation if you have?. Please can you also let me what all masterdata required....
    Thanks,
    Sudha

  • New button on CRM web channel

    Hi experts,
    I need to add a new button to standard CRM Web channel appliaction. I am a ABAPer and have no clue how to work in Java.
    Any body of you could help mw in providing some documents from where I can just start through the coding.
    help will be appreciated.
    best regards
    Sourabh

    Hi,
    you can go ahead create withour any new code.
    follow the updated link by sap
    http://help.sap.com/saphelp_crm60/helpdata/en/0f/f8a642a4f70c31e10000000a1550b0/content.htm
    regards
    nag

  • How to Add a new Field in the Web UI

    In CRM.
    I want add a fields. How it is Possible.
    In WebUI after login. Select BP_SRV_MAIN.
    Then Select Manage Reports.
    Select New Entry.
    Porivide Program Name.
                Short Description.
                Select Service from Drop Down.
    Select Tables Radio Button.
    Press Next.
    It display all available FIelds.
    But i want add another some fields into this. How it is possible.
    Here i am getting   Component Name as  CRMCMP_OR_DTWIZ.
                                View Name as    RptColumns.
    So How can i get more fields like ObjectID of CRMD_ORDERADM_H.
    Can you please explain me about this. If possible with Screen Shorts.
    Thank You.
    B. Krishna

    If you want to add extra standard fields (like one you mentioned), you can use Component Workbench and Copy the configuration and create your own configuration and make the "Available Fields" appear there.
    If the standrd field is not available, you can Add Context Node using wizard and make it visible.
    If its a custom field (a new one); you will have to use EEWB and add the fields and then make it visible in the UI using Component Workbench.
    Regards,
    Alin

  • Add New Field in CRM WebUI 2007

    Dear Experts,
    This is for your Kind attention on my issue.
    I would like to add a new Account Search field in Home (Wrk area in WebUI 2007) screen. as the client doesn't want default feilds.
    however even he doesn't required to change standard table of BP as well. Instead of Custom Fields in UI, he just wanted to use other fields of standard SAP BP. ex: Driving License Number as a search term and remove email,Fax from search options.
    I heard, this is possible with EEWB Tool. But not sure what is correct.
    2. Also, Kindly advise me on the second issue as well. - When I'm Creating Project & field Enhancement (EEWB) for a Standard UI Component, I would have to choose Field Enhancement option in right click & then give Transport request Folder along with required data. when I use $tmp folder, the system is not letting me to enhance it(wizard is not opening) and error msg as 'the Transport folder for this component is already being determined by the system so choose correct transport request folder. how can I fine the correct transport request folder for that component.
    Kindly advise on these issues.
    Srujan

    Hi Srujan
    In EEWB, Once the project is created just Right click on the project and create a extension for a the Business Object in the drop down list. Once the Business object is selected then select the extension type that you want to do on the object. Once you completed the extension a wizard will start and that will ask the field information that you want to create and extend. You mention all the characteristic of the data that you want.
    The wizard will ask if this field is relevant for Search. If you check the check box then this field will be useful for search criteria .
    Regarding Request error: you might have alredy created request for the EEWB activities but you are not using same request instead you are trying  use $TMP. so try to use the relevent request. Or use the right package and new request to save the project and extensions .
    Thanks
    Chand

  • Need PPT for add new fields in CRM Portal

    Hi All,
    I am new to PCUI. I am not understanding what happend in PCUI.
    I have to add two fields in Advanced search area. How to do that.
    any body having PPT for how to add fields please send me <removed by SAP Community Network Moderator> or give me any use full links.
    Thanks,
    Subbu.

    <removed by SAP Community Network Moderator>
    Also check the Forum:Re: PCUI..Need to add field on Bussiness partner
    Regrds,
    Arjun

  • Adding new field in Billing due list in CRM

    Hi
    What are ways to add new fields to billing due list in CRM.
    Can we use any badi
    Is there any configuration of layout.
    Any other way
    Thanks in advance for your help
    Amit

    Hi,
    Adding new field in CRM can be done by AET.
    AET is able to add new field from Web UI.
    Please this blog for more details: /people/tzanko.stefanov2/blog/2008/11/26/application-enhancement-tool-creating-and-reusing-custom-fields-with-crm-70-part-2-of-2
    Regards,
    Steve

  • Replication of a new BP field form CRM to R/3

    Hi Experts,
    We use CRM 4.0. I have created a new field with EEWB in CRM and I would like to replicate this field to R/3. This is a standard field on R/3 side.
    Could you please help me what are the steps to do for the replication? We use R/3 adapter and the BP replication works properly.
    Thanks a lot in advance!
    Regards,
    Tom

    Hi Thomas,
        Replication of new fields between CRM and R/3 will involve a few manual steps.
    1. Ensure that that relevant Bdoc structure is also extended with the new field. EEWB should do this for you but i am not sure about CRM 40.
    2. There needs to be a  logic in the CRM outbound to map the new field to bapistructures. you will have to code a user exit for crm outbound in tx -
    crmc_but_call_fu.
    3. The R/3 adapter inbound also needs to be made aware of the new field. so necessary mapping to the R/3 standard field has to be done using tx.
    comc_bupa_call_fu
    Reward if this helps...
    Regards,
    Sudipta

  • Creating New Field in Web UI

    Hi Experts!
    Please help.
    We created a new field in the Web UI using AET and we noticed that if we select Part of a BO "ORDERADM_H", the field (Date Type) we created will not be editable and will display "Not Bound". However, when I select Part of a BO "ORDERADM_I", the field will be created successfully. We need to use ORDERADM_H for our requirement.
    I think it is also important to mention here that our original development server was already shut down and our current development server is a copy of our production server. I am thinking that this may have caused this error. If so, please let me know how to resolve it.
    Thank you in advance!
    Sherwin

    Hi Sherwin,
    I can give one solution for you
    implement the GET_I_ method of the corresponding field attribute and
    set the value  rv_disabled = 'FALSE'.
    but one more thing you check in the BOL structure its added or not if not follow the below link.
    Custom field added by AET is not editable - not added to BOL structure
    Regards,
    vishwanath

Maybe you are looking for

  • New accessories for Zen micro? New firmwa

    i'm most likely gonna buy the zen micro tonight. i figure that it is creative's new "flagship" model so that means its prob. gonna get the most firmware, acc., and most support. if anyone has a reason i shouldnt get it let me know, i've read all the

  • Adobe Acrobat 9.3.4 Update failure- "Error Applying Transforms, verify that the specified...

    I have ignored this issue for long enough.  I have Adobe CS4, with Acrobat Pro version 9.3.4.  Windows 7.  Acrobat updater pops up on my machine, and when I execute the update requested, the updater gives me the update failure message, with code 1604

  • I cannot receive MMS over WiFi- anyone else struggling? (2nd post)

    Original post:      I cannot receive MMS over WiFi- anyone else struggling? Apparently, it's not the settings. Tech told me I need to just return the phone b/c they don't have a clue what's wrong with it. They've done everything they can on their end

  • How To Simulate the Variant Functionality of se11.

    Hi all,    In Module Pool Program, in the Subscreen I have Kept the select-options for 4 zfields(custom fields). and there is Save Button in the Main Screen that is Calling the Subscreen Below.   My Requirement now is ,When SAVE is Done , I have to s

  • Physical Inventory Count with Batches / Inventory Tracking+Posting

    Hi, There does not seem to be any way to record a Physical Inventory count with Batch managed items. Scenario-1: In case 1.8 kg of batch number 222 is counted during Physical Count. B1 has Batch number 111 with quantity 2.5kg. B1 assumes that a lesse