Process to add  new field to Account screen and update value from R/3...

We have CRM 7 and just wanted to ask what the process would be to add a new field to the Accounts screen. This field will be a read-only field and we'll source its value from R/3, based on some of the other data entered into the Accounts screen.
What exactly is involved in this process?.
I think I can use the new Application Enhancement Tool instead of EEWB to create the new field, but how does one identify which structure/table to change for say the 'Accounts' data, and, where does one place the code which populates this field, and, once the structure has been changed how do I physically add the field to the screen. I should be okay with reaching out to R/3 and populating the data, code-wise, but again wondered if there was anything inbuilt to do this, bearing in mind the closeness and constant access to R/3 from CRM.
Any help would be much appreciated.
Jason
Edited by: Jason Stratham on Apr 14, 2010 1:11 PM

Jason,
If you use EEWB or AET,, there is nothing manual you have to do, the fields will be added to all related tables and structures plus UI too.
May be sometimes you have to run the UI configration tool to add the field to the UI, again this is just a tool, there is not manual coding required.
you can enter the value for the fields direclty via UI, BUT if it is a display only field, at the time of save, you have to write couple of line to populate this field ( see set_property( ) method in the context node ).
Thats it...
Regards, Sudeep..

Similar Messages

  • Add new field in selection-screen and output dynamically

    hi gurus,
      i need to add field in selectio-screen.
    i need to validate the field with existing fields.
    i need to add this in alv grid output list dynamically.
    thanks & regards,
       kgn9.

    Hi
    Try to use EXIT_SAPMM07M_001, it's to update the item (not header) text, but you can try to use it:
    FIELD-SYMBOLS: <BKTXT> TYPE MKPF-BKTXT.
    ASSIGN ('(SAPMM07M)MKPF-BKTXT') TO <BKTXT>.
    IF SY-SUBRC = 0.
      <BKTXT> = <.....>.
    ENDIF.
    Max

  • Add custom fields on selection screen  and ouput in Transaction QM11

    Hi All,
       i have the requirement to enhance the transaction qm11( Report : RQMELL10) to add the custom fields on the report selection screen and in the report output.
      i tried to add the fields on selection screen by copy the standard program RQMELL10 to custom one. and tried to add the fields above to the coding tab but i am not able to display the text for those fields of select-options. can any one help me is it the right way to copy the standard program to custom program and adding the custom fields and how to get the text element for the custom fields which we are going to add it. i tried to add the text element in program text elements but it is not appering on the report.
    please requeting the help asap if it is possible.

    Have a glance in below thread.
    Enhancing transaction QM10
    Also, there are some more threads available in enhancing the QM10 / QM11. Please search those as well.

  • Add new field to a screen

    Hi,
    I am trying to add a new check box to a custom screen. This check box must be connected to a new custom field of KNA1 table.
    I have created a new z data element (CHAR) and a new z field on KNA1.
    I have created the check box on the custom screen using screen painter.
    When I change the value directly to the table I can see the change to the check box.
    The problem is that I can't make changes through the check box (I change the value from the checkbox but after saving, the value doesn't cange to the table).
    Is something more that I have to do?
    Thanks in advanced.

    In our custom screen there are other check boxes that are not defined on FIELD statement and they functioning (when I change them, the contents of the table field changes). One of these checkboxes
    is called ZZDATA_PUBLIC.
    I have noticed that there is a subroutine called batch_input_0200 that has among other the following statements:
    DATA: my_bdc LIKE bdcdata OCCURS 10 WITH HEADER LINE.
    PERFORM bdc_field TABLES my_bdc USING 'KNA1-ZZDATA_PUBLIC'
                                    kna1-zzdata_public.
    there are PERFOM statements for every field on the screen.
    The problem is that when I add a new PERFORM statement for my check box the program does not save the changes (When I change the value of the screen fields and save the values does not pass to the table)
    the code of the form bdc_field is the following:
    form bdc_field tables pt_bdcdata structure bdcdata using pw_fnam pw_fval.
      clear pt_bdcdata.
      pt_bdcdata-fnam = pw_fnam.
      pt_bdcdata-fval = pw_fval.
      append pt_bdcdata.
    endform.    
    can anyone help me?
    Thanks
    Edited by: Odysseas Spyroglou on Jun 10, 2009 8:08 AM

  • Add new fields to selection screen for standard billing dule list in CRM

    Hi ,
    I have one issue with standard  program ,tcode is /BEA/IPMI01.
    SUB: Adding  few new fields like IP  to selection screen AND few fields to output list.
    As this is a standard program (tcode: /bea/ipmi01) , i searched for BADI,EXITS but couldn't .
    Can any one help me how to handle this with out cloning the standard one.
    I got some information but succeed.
    in SPRO.
    /CRM/BILLING/SYSTEM ENHANCMENTS/access billing  engine navigator. you will find selection design in the path
    /CRMB/OBJECT/DL/REPORT/SELECTION GROPS/DLA/SELECTION FEIDLS.
    we can find selecton at this place but i couldnot find how to add new fieds.
    Note: i found whatever we do ,  it willl reflect once we regenerated the program.

    Hi,
    You may be able to create an append structure to the standard output structure/table. Go to SE11, open the structure and click on append structure.
    Regards
    Prasenjit

  • Add new fields in IW41/IW44 and KB21N

    Hi Expert,
    I have the requirements to add the new fields such as equipment number, Technical ID , external Order No, etc.. in IW41/IW44 and KB21N.
    Is anybody can help me how to do that?
    Thanks,
    Nattawat S.

    Hi Nattawat,
    Check with this badi IWO1_SUBSCREEN_0170,IWO10018
    Follow this procedure.
    1) CI_AUFK using transaction SE11 (ABAP Dictionary)
    2) The function exit EXIT_SAPLCOIH_018 for data transfer from the SAP application to the screen area
    3) EXIT_SAPLCOIH_019 for data transfer from the screen area to the SAP application
    Create the screen  SAPLCOIH 6666 CUSTSCR1 SAPLXWOC 0900.
    Post if need help.
    Regards,
    Madhu.
    Edited by: madhurao123 on Jul 29, 2011 8:48 PM

  • Add a field in selection screen and enter data in that field .......

    Hi,
    I want to add a field in the seletion screen and when the user enters data , it should store in the data base table, the data base table is MKPF-BKTXT, please can any one let me know how to do this... very urgent...

    Hi
    Try to use EXIT_SAPMM07M_001, it's to update the item (not header) text, but you can try to use it:
    FIELD-SYMBOLS: <BKTXT> TYPE MKPF-BKTXT.
    ASSIGN ('(SAPMM07M)MKPF-BKTXT') TO <BKTXT>.
    IF SY-SUBRC = 0.
      <BKTXT> = <.....>.
    ENDIF.
    Max

  • Adding a new field in BCONT table and updating it

    Hi All,
    Is there any BAPI/BADI which will allow to add a new field in standard BCONT table and update its value?
    Your solution will be really helpful.
    Thanks,
    Nirupam

    Hi Santosh,
    This is required for UCES. We need to add a field in BCONT table (SE11/SE16), which will hold a flag value, i.e Y/N.
    The value will be updated through a custom FM being used in UCES, and also based on the value there is a validation inside UCES.
    This field need not be displayed inside any SAP screen.
    thanks,
    Nirupam
    Edited by: Nirupam Deb on Jun 8, 2011 11:44 AM

  • Add new field in CO11N Screen

    Dear Sap Gurus,
    My client needs to enter shift wise production through CO11N.
    In CO11N there is nor field in which i can enter shift,thats why i want to add field Shift in that transaction.
    I am new in SAP so please Guide.......
    Thanks
    shankar

    Hi,
    Refer this link
    Re: Shift usage in confimation.
    If you not using ECC 6 enhancement 3 then use screen exit CONFPP07 .
    Through this you can create screen in Co11n
    Regards,
    Vishal

  • Creation of new field in RFX screen and populating item details

    Hi Experts,
    I have to create a new button in "Create RFX " screen where it should procure the shopping cart details and it should populate in table in RFX screen.
    Shopping cart number should be entered in this screen. Set up for this input field is already done.Now i added an button GO.This one should retrieve the shopping cart details of entered shopping cart number and populate in the table present in this screen.
    Procedure
    1.Procure shopping cart details by calling the function module "bbp_pd_sc_getdetail".
    I am strucked after this.How to proceed further as i have tried different procedures.
    Please help if any idea on this

    thanks for reply
    I have did same thing but in input parameter of bado i am getting the shoping cart GUID . form which how i can get the Bid detail.
    and other part is I need to send data by extension this this how we can do ?
    do we need to write code in backend also and need to create custom field in backend PO table.
    Thaks for reply

  • Add Custom field to standard screen with table control

    Hello,
    I need to add two custom fields to a standard screen in CAT2 transaction(not using any screen exit).I will be given SSCR key.The standard screen (screen no. 2100) only has a table control.
    How can I add the custom field such that it appears as a field on the screen when CAT2 transaction is opened.
    Do i need to write any code?
    I'm new to ABAP so could you please give a detailed explanation.
    Also, do i need to change the 'fixed columns' field in the table control?
    Regards,
    Monica.

    hi,
    1) find the screen
    2) add new fields to the screen
    3) program PBO and PAI
    regards,
    Wojciech

  • PLz Help me its urgent, how to add new field in mm01 basic data screen

    Hi everyone,
         plz tell me how to add new field in mm01 basic data screen,i added that field in basic data screen but when i create a material the data for that field will not save in database table.
    Thanks,
    murali.

    Hi Murali,
    when created added a field on the screen by using user exit then after that you have add the field in main table where you will be getting these table in the userexit only, please make sure about this. And i am sure defenitly it will get updated in to the table.
    reward if useful.
    thanks
    abdulsamee.

  • How to add New fields to Customer Master Record Screen

    Hi All,
    As per our business requirment we need to add some new fields the BP screen.
    Could you suggest me how can I customize the new fields in BP creation screen.
    I change the screen sequence with the help of VCT, but I need to add some more new fields. Your suggestions will be highly appreciated.
    Thank you and Best regards

    Venkat,
    Your best bet is to read the documentation at:
    http://help.sap.com/saphelp_crm40/helpdata/en/20/a4ffee7e0fcc4ebb7e5466d3903d38/frameset.htm
    This gives you an overview of the Easy Enhancement workbench.
    Your steps to use it will be the following setup the customizing in transaction EEWC.  You can search this forum for help on how to setup this customizing.
    Then create the new extension using transaction EEWB, and follow the steps in the help documentation above, also read note: 484597.
    After you have read the doucmenation, and if you get stuck, then let me know and I will try to answer those questions.  The EEWB is very simple, so I don't think you will have too many problems using it.
    Good luck,
    Stephen

  • How to add new fields to Profit center screen (KE51)

    Dear All,
    I have a requirement that to add new fields to the Create Profit center screen KE51.
    I couldn't find the user exits for the same.
    Please help me in this.
    Thanks.
    Ravi

    Hello Ravi,
    I must respcetfully disagree(with other posts) that it is not possible to extend CEPC.  In our system we have added an append with two new fields to CEPC.  Now, that was the easy part. You must also find a way to maintain those fields when creating and changing profit centres.  To do this it was necessary for us to add a button to the create/modify screens.  It was also necessary to find a few enhancement spots in order to make this work(and it still is not perfect).   I am being very vague here because even though it is posible I would not recommend implementing this solution.  It was very time consuming and could be risky if you miss something.  There is a reason why you can find so little information in SDN and other places about how to do this.  Other, including myself have tried but it was painful.
    I know that this does not help very much.
    Regards
    Greg Kern

  • Add new field infotype "z" in logical database selection screen pnp

    Can add new field infotype "z" in logical database selection screen pnp
    I could explain how to realize
    Thanks

    In case to somebody it interests to him: TO EXTEND SCREEN OF SELECTION WITH OPTIONAL DELIMITERS The case that can be given in a screen of selection of a logical data base it does not appear a certain field that we need in the filter, the steps that will be due to follow are the following:
    u2022 To create a view of selection in agreement with the fields that we want to show To review the following Link http://help.sap.com/saphelp_46c/helpdata/es/6e/6ed638e70ef679e10000000a114084/content.htm u2022 To assign the view of selection to a class of report
    u2022 In the code of report to create select option in the selection screen that allows to introduce imput to leak and after start-of-selection to put the following code,
    "Allocation operative area to optional delimiter
      IF NOT p_aroper IS INITIAL.
        DATA: lt_texpr TYPE rsds_expr OCCURS 0 WITH HEADER LINE,
              wa_texpr TYPE rsds_expr,
              lt_rsds_expr_tab LIKE rsdsexpr OCCURS 10 WITH HEADER LINE,
              wa_rsds_expr_tab LIKE rsdsexpr.
        REFRESH lt_rsds_expr_tab.
        wa_rsds_expr_tab-arity = '0'.
        wa_rsds_expr_tab-fieldname = 'OBJID'.
        wa_rsds_expr_tab-option = 'EQ'.
        wa_rsds_expr_tab-low = p_aroper.
        wa_rsds_expr_tab-high = '00000000'.
        MOVE-CORRESPONDING wa_rsds_expr_tab TO lt_rsds_expr_tab.
        APPEND lt_rsds_expr_tab.
        REFRESH lt_texpr.
        wa_texpr-tablename = 'PA9004'.
        wa_texpr-expr_tab[] = lt_rsds_expr_tab[].
        MOVE-CORRESPONDING wa_texpr TO lt_texpr.
        APPEND lt_texpr.
      pnpdynse[] = lt_texpr[].
      ENDIF.
    English is the forum language.
    Edited by: Rob Burbank on May 18, 2011 11:41 AM

Maybe you are looking for

  • Plug-in load class error while running portalapp.xml file in NWDS7.0

    hi, im facing a problem in NWDS7.0 while running portalapp.xml file im getting error realted some plug-in load class error. Even 3 times i have re-installed but still getting same error. Please help me how to over come this. This is error im getting

  • Is it possible to calculate the sum of charactristics in Reporting

    Hi Experts, i have both master data as well as transaction data,generally we can get the overall result of transaction data,but in this case i need the overall result of master data also,please give steps to precedes EX:        ID   VALVE    C1    C2

  • Using keyword within uicontrol

    Hello again, I have another "Best Practices" question that is causing some debate at my organization. DITA allows the use of the <keyword> element within <uicontrol> and several other User Interface elements (not <wintitle>). Authors are split as to

  • IDoc File Port Exit

    Hi all, I'm using a File Port to download an IDoc of type PEXR2002. AFTER the IDoc is downloaded, I want the system to instantly run some custom code. Is anyone familiar with an user/customer exit for this? Does anyone know any exits for file ports?

  • Business area assignment/design  in FI-SD-MM

    HI Gurus, Can anyone tell me how Business Area is assigned from Org structure point of view? I know that in cost Center, we can default BA, and in SD we can assign BA according to Plant-division combination, or in MM in material master we can default