Re :adding custom fields to standard transaction

Hi ..
     I've added custom fields to vbap table..I have also
added these fields in the va02 screen.
Now whatever values I enter for the zfields(va02 ) must be saved in vbap table.
How do i do this?.
Should I write in MV45AIZZ .(PAI).
what are the steps i have to follow?.
Thanks and regards..
tharun venkat

zfield in the program means the corresponding field name u have given for the newly added field in the table.
IN the layout u might have added some field ad have given some name (I/O) field name.

Similar Messages

  • Adding Custom fields to standard  SAP-EBP application

    Hi,
    A functionality requires some custom fields to be added to the standard SAP-SRM EBP ( Manage business partners) application.
    If I copy the whole BBP_VENDOR_CREATE program into a Z-program, and the BBPMAININT internet service to a Z-application, then would it be feasible??
    Which is the best way to add custom fields in a SAP standard EBP application--in the 'Manage business partners' section.
    Regards,
    Goutam

    Hi
    I don't think it's easily possible to add custom fields to the existing transaction - BBPMAININT.
    For adding customer fields you can refer the SAP OSS not - 672960, but I don't think it will be of much help here.
    <b>Since SAP has not upgraded this transaction - BBPMAININT for a quite long time, you need to do all the logic and validation from your end.</b>
    <u>Better to go for you own Z (custom program) and make your logic accordingly.</u>
    Regards
    - Atul

  • Adding custom fields to standard Asset Accounting  ALV reports

    Hello,
    I have recently added some fields to the Asset Master table ANLU using the customizing include CI_ANLU.  I have also added some fields using an append structure to ANLZ.  I now need to have these fields available in the standard reports for Asset Accounting.  One example is the report generated for transaction S_ALR_87011963.  I need the new fields available in the 'Displayed Columns' list when clicking the Change Layout icon.  Any suggestions?
    Thanks,
    JR

    Hi Vignesh,
    Adding new fields is not possible, but custom subscreens can be added.
    Check enhancements QQMA0001 (subscreen for notification header) and QQMA0008 (subscreen for additional data).
    It might help you.
    Thanks & Regards,
    Swati

  • Adding custom fields to standard table control in IW51

    Hi,
    I have added 4 custom fields to the standard table QMEL through the structure CI_QMEL .
    In transaction IW51 there is a table control as show in the screenshot below.
    The 4 custom fields which i have added in the standard table should also be added to this table control.
    Can this achieved by making adjustments in SPRO settings or can it be acheived technically by using some exit?
    Thanks in advance.
    Regards,
    Vignesh Sunkasi.K

    Hi Vignesh,
    Adding new fields is not possible, but custom subscreens can be added.
    Check enhancements QQMA0001 (subscreen for notification header) and QQMA0008 (subscreen for additional data).
    It might help you.
    Thanks & Regards,
    Swati

  • Adding Custom Fields in Standard View - How to save data to Table

    Dear Experts,
    One View is having UI elements from a standard table /RPM/ITEM_D. Added 2 custom fields in this table using enhacement. Now enhanced that standard View and added these 2 custom fields. When I am saving the application, these 2 fields values aslo should be saved. In the context all fields are present from table /RPM/ITEM_D except the custom one. Can you please help me out how to acheive this.
    Thanks and Regards
    Sumesh

    Hi Sumesh,
    What you need to do is :
    1) add these two new fields in the same context node where the field from table /RPM/ITEM_D are added.
    2) in your UI , bind values to these new attributes.
    If current application is using and BAPI / Class method to update the table ,
    this new fields will also be passed to that bapi and will update table.
    Regards,
    Ashish Shah

  • Adding Custom fields to standard  SAP-ITS application.

    Hi,
    A functionality requires some custom fields to be added to the standard SAP-SRM EBP ( Manage business partners) application.
    If I copy the whole BBP_VENDOR_CREATE program into a Z-program, and the BBPMAININT internet service to a Z-application, then would it be feasible??
    Which is the best way to add custom fields in a SAP standard ITS application.
    Regards,
    Goutam

    Hi Goutam,
    > If I copy the whole BBP_VENDOR_CREATE program into a
    > Z-program, and the BBPMAININT internet service to a
    > Z-application, then would it be feasible??
    Yes, I think so.
    Best regards,
    Henning

  • Adding custom fields in Delivery transaction

    Hi,
    I need to add custom fields in the delivery transaction(VL01N/VL02N) at Item level in Material tab screen.
    Are there any screen exits available for delivery order in any other tabs or Do I have to modify the standard program.
    Regards,
    Sudheer

    Hi sudheer
    there is no screen exits for vl01n adn vl02n
    you have modify the standard program
    regards
    kishore

  • Adding custom fields to XD01 transaction

    Hi All,
    I need to add custom fields to the Customer create transaction (XD01). Can anyone tell me the feasibility of having screen-exits or BADIs to acheive the same? I have searched for screen exits but could found none, and regarding BADI's i found these CUSTOMER_ADD_DATA, CUSTOMER_ADD_DATA_CS and CUSTOMER_ADD_DATA_BI. Unfortunately there is no default code assigned to these BADI's. Please tell me how we can acheive the requirement. we dont have any include too in the KNA1 table hence i feel going with APPEND structure.
    Thank You
    Yugandhar K

    Hello Mahesh B
    In short…
    The Number field determines the display order of the Tabs on your new screen.  The i_taxi_fcode parameter is the text you entered, or will enter, in the Function Code field on the Label Tab Pages.
    In long…
    In the IMG activity “Prepare Modification-Free Enhancement in Customer Master Record”, you add a Screen Grp code (e.g. “Z1”) and a description. Then you select Z1 and double-click the Label Tab Pages folder on the left. 
    Now, add one or more records in this Label Tab Pages screen.  Each record you add will cause a Tab to be displayed on your new Z1 screen (once you implement the screen with a program as described in earlier posts). 
    The fields of the Label Tab Pages records are:
    - NUMBER, which determines the order that the Tabs will be displayed;
    - FUNCTION CODE, this is passed to the BAdI as i_taxi_fcode;
    - DESCRIPTION, which becomes the Label displayed on the Tab; and
    - ICON, which, if entered, will display beside the Label on the Tab.
    Example records:
    10, Z1_TR1, Tab1description, <blank icon field>
    20, Z1_TR2, Tab2description, <Some Icon>
    I prefixed my FUNTION CODEs with the screen group (e.g. Z1_TR1 and Z1_TR2).
    More than one BAdI can be implemented in the system at the same time, so you should use the Screen Grp (e.g. Z1) and/or the Tab FUNCTION CODE (i_taxi_fcode - e.g. Z1_TR1) to determine when to execute your custom code. 
    Below is an example implementation of the get_taxi_screen method in the customer_add_data_cs BAdI. 
    If a user were to click on the second Tab of the Z1 screen group, the ‘Z1_TR2’ case would be executed and screen 200 would display on this Tab screen.  If the user clicked back to the first tab, the ‘Z1_TR1’ case would be executed and screen 100 would display on this Tab.
    method if_ex_customer_add_data_cs~get_taxi_screen .
      case flt_val.
        when 'Z1'.
          case i_taxi_fcode.
            when 'Z1_TR1'.
              e_screen  = '0100'.
              e_program = 'Z_PROGRAM_NAME'.
              e_headerscreen_layout = ' '.
            when 'Z1_TR2'.
              e_screen  = '0200'.
              e_program = ‘Z_PROGRAM_NAME'.
              e_headerscreen_layout = ' '.
          endcase.
      endcase.
    endmethod.
    Hope this helps.
    Allan

  • Adding custom fields to CN41 Transaction code

    Hi Experts,
    I have a requirement to display few SAP standard fields (like VORN1 from AFABD structure) in CN41 transaction code. I modified the custom include structure CI_PROJ in table PROJ. When I ran CN41 tcode, this field doesn't show up in the layout list. But I can see the same feild in CN42 transaction code. Can anyone advise what is the difference between CN41 & CN42 and how this field to be shown in CN41?
    Also, can some one advise, if SAP will take care by itself to fill the data since it is standard field or do we have to write any custom code in user exit?
    Finally, can anyone explain me the difference between Structure Overview & Project Definitions?
    Really appreciate your help.
    Regards,
    Sailesh.

    Thanks Rod,
    But SAP gave us a provision to modify the custome structures CI_PROJ or CI_PRSP etc so that we can add the fields here.  My question was, I am able to see these fields in CN42 tocde but not in CN41.  Is there a way, that I can display the fields fromm CI_PROJ onto CN41 report?
    And for second part, I thoguht, if I add the SAP standard fields from PSJ logical database, then SAP should update these fields automatically.  I might be wrong on this.
    Any ideas?
    Shylesh

  • Regarding adding custom fields in IE02 Transaction

    Hi Experts,
    In IE02 Transaction (Change Equipment ) in Additional Vehicle Info tab , I need to add additional field . Please tel me any screen exists do this or any custom screen exists ? for example for MM01 by copying the Standard Function Group MGD1to ZMGD1 and in custom screen 0001 we are doing the changes . similar way for IE02 any custom screen exists ? Please guide me how to do for this requiremnt  and i need to know any restriction(number of fields to add) is there?
    Regards,
    Priya

    Hello Priya,
    U can check out the following BADI'S
    EQUI_SCR_01
    EQUI_SCR_02
    EQUI_SCR_03
    EQUI_SCR_04
    EQUI_SCR_05
    EQUI_SCR_06
    EQUI_SCR_cc
    also, check the user exits
    IEQM0001
    IEQM0002
    IEQM0003
    IEQM0004
    IEQM0005
    IEQM0006
    IEQM0007
    all the best !!
    Kindly ackowledge the reply if the issue is resolved/
    Thanks,
    Ravi Aswani

  • Custom Fields in ME21N transaction

    Hi all,
    I have added custom fields on the transaction ME21N using the screen exit in enhancement MM06E005.
    Now i need to do validations on these fields even if the user does not come to the screen. So i am using the BADI ME_PROCESS_PO_CUST for the validations.
    But this BADI gets triggered only when there is a change in a standard SAP field. If i change the value of the Custom field then the BADI does not get triggered.
    So the problem is that once i issue an error message for the custom field in the BADI .. and then change the value in the custom field, the BADI does not get called and hence the error message stays as it is...
    Any solutions for this?
    thanks,
    Ashiq Ali Ratnani

    even when we create a custom screen, the user-exits which are getting called from other screens should also get called from custom one. If this is not happeing, then you need to check in configurations where you have created this screen, that whether you have done assignment of screen at right place, not at the header level but at tab level.

  • Adding Custom Fields to XD99

    Hey All,
        I am trying to figure out a way to Mass maintain Custom fields(Z fields) in KNA1 using transaction XD99. I did find some material which discussed about adding custom fields to MM17 transaction, but couldnt get any usefull information on XD99.
    Any inputs or suggestions are highly appreciated.

    Hi,
    Please check the following oss note
    Note 414020 - MASS: Customer fields are not mass-maintainable
    Thanks
    Naren

  • Regarding adding a Custom field to Standard Table

    Hi ABAPers,
    Can any one explain the below spec-description.
    "The purpose of this design is to provide the foundation for a more automated solution to the invoice reconciliation process.  This design calls for adding a custom field to the standard SAP table EINE as well as a data maintenance tool for the same.  There will also be a new custom table for storing values associated with the new EINE field.  These new tables will also provide users with the ability to determine which PIR are soon to expire."
    We have to add one custom field to standard table EINE, how we can add this custom field to STND table.
    According to me we can add it through append structure. is it correct or not.
    and what is data maintenance tool.
    Pls.............Explain in details.
    Thanks in advance.
    Regards,
    Ramana Prasad. T

    Hi,
    Goto SE11 ,give ur table name.Then press display button.Then in the application tool bar press on append structure ...Now create a zstructure and add ur custom field and then activate the table.
    Regards,
    nagaraj

  • Adding new custom fields in SAP transaction?

    Hi,
    System - ECC 6.0
    I need to add some new custom fields in Contract Object(PSOBWORK). Can any one tell me what are the ways I can do this, and what is the best way to add custom fields in SAP transaction?
    I highly appreciate your help on this.
    Thanks.
    Rajesh

    Hi,
    Find the link below  which has step by step process of adding custom fields:
    goto site saptechnical-tutorials-ExitsBADIs-EEWB
    Hope this would be helpfull.
    Regards,
    Sharath

  • Adding custom fields to FPE1/2/3 transactions

    Hi guys,
    My first thread here on SDN!
    I need to add custom fields (Document Locator Number - ZDLN, and Post Mark Date - ZPMD) from table DFKKOP to transactions FPE1/2/3 under ADDITIONAL DATA area while manually entering NEW BUSINESS PARTNER ITEM.
    The transaction is not BDT enabled and does not have a screen exit. The user exit and BaDI dont seem helpful to me.
    The screenshot below shows the user exits and BaDI for the transaction.
    Link: [Exits|http://img440.imageshack.us/img440/9319/1123201061827pm.png]
    What are my options to add fields to the transaction screen now?
    Thanks!!

    Hi,
    Yea i got the functional guys to configure it. Was a unique issue!.....But I know how they did it.
    You can add it through SPRO transaction. Go to the below mentioned path.
    Go to SAP Reference IMG
    Financial Accounting > Contract Accounts Receivable and Payable > Basic Functions > Posting and Documents > Document >
    Screen Preparartions > Include Own Fields in Detail Screens.
    Here you need to enter the details from FPE1 transaction screen.
    Activity Documentation:
    Include Own Fields in Detail Screens
    In this activity you can, if you have added customer fields to the document structures, include these customer fields in the entry screens of the transaction for posting documents.
    For the detail screens (business partner item and G/L account item) you can create a screen that contains your own fields. You must create this screen as a subscreen using the Screen Painter. In addition you have to create modules for the intialization and for data transfer (PBO and PAI).
    Activities
    If you have extended the document strutures to includes customer fields, and you need these fields in the entry screens for posting documents, you must create the screen using the Screen Painter.
    Carry out this step to create the screen and the modules that go with it in the system. You do not have to activate these afterwards.
    Further notes
    Read the field help for each field in the table. This describes the exact procedure.

Maybe you are looking for