Adding a custom field in a sap standard screen in pa30 for an infotype.

Hi to all..
i'm in a requirement to add a custom field in a standard screen of pa30. for the infotype 0442.
I googled up.. but i was not getting proper solution for it.. can any one provide a solution for it..
With regards.
Aahbha.

Hello Sirs,
Step by step instructions on:
http://help.sap.com/erp2005_ehp_04/helpdata/EN/4f/d52552575e11d189270000e8322f96/frameset.htm
The below thread provide more info on how to create an infotype from scratch, but this is just for the reference:
add custom fields to standard infotype
Regards,
Bentow.

Similar Messages

  • How  to add custom fields to the  sap standard  program ukm_bp_display

    How  to add new custom  fields to the  sap standard  program ukm_bp_display .
    could u  please any one help me on this?

    Hello Kumar,
    You have to modify below structure, as this structure is providing the field catalog for output display (ALV).
    Here you can see there are a lot of include structures, so if you want to add fields in the output display you can add those fileds as an append structure to any of the below mentioned structures (Like ukm_s_account, ukm_s_bp_cms_sgm etc as per your requiremnt and positon at which you need to dispaly your fields.)
    DATA: BEGIN OF gt_grid_alv OCCURS 0.
           partner LIKE but000-partner,
           credit_sgmnt LIKE ukmbp_cms_sgm-credit_sgmnt.
            INCLUDE STRUCTURE ukm_s_account.
            INCLUDE STRUCTURE ukm_s_bp_cms_sgm.
    DATA:   credit_sgmnt_txt LIKE ukmcred_sgm0t-credit_sgmnt_txt.
          Gruppe Vector
            INCLUDE STRUCTURE ukm_s_bp_vector.
          Gruppe OBL = Obligo
          include structure UKM_S_BP_CMS_MALUSDSP_OUT.
            INCLUDE STRUCTURE ukm_s_display_segment.
            INCLUDE STRUCTURE ukm_s_bp_cms.
            INCLUDE STRUCTURE bus000_dat.
    *DATA:   icon(4).
          Gruppe RAST (Raster)
    DATA:
             rast01 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast02 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast03 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast04 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast05 LIKE ukm_s_display_segment-AMOUNT_GRID,
             rast06 LIKE ukm_s_display_segment-AMOUNT_GRID.
    DATA:    rast2_6 LIKE ukm_s_display_segment-AMOUNT_GRID.
    "Summe raster 2 bis 6
    DATA:  END OF gt_grid_alv.
    Another way is you can  go  to SE38, and you can create implicit enhancements.One enhancement point is available here in this required area. so create an implementation and add your fileds with data types.This way is also simple.
    Hope this will solve yiour problems.
    Regards,
    Antony Thomas

  • Adding a Z Field onto an SAP Std  Screen

    Hello Experts,
    I need to add my own Z field onto an SAP Std screen. The Z field already exist in the Append stucture of the table VBAK.
    How to do this? Will it come under a screen exit or field exit?
    May i know if i need to go for screen programming such as loop at screen..endloop. etc.
    Please explain in Tech terms(code) wih an example.
    Appreciate your response with points.
    Thanks
    Dan

    Hi
    1) Here you need only to design the dynpro using the structeu VBAK and the system'll automatically store them in VBAK table.
    Could you please tell me the dynpr prog involved?
    Use trx SE80:
    - choose program option and insert 'SAPMV45A';
    - Press display and open SCREEN node;
    - Search screen 8309, do a doubleclick and press MODIFY: now you're in screen painter.
    - To insert the input/output fields use the structure VBAK: in this way the headerline of VBAK'll automatically be filled. You need only to insert the code in screen flow (PBO and/or PAI) if you need to insert some controls;
    2) U should consider all saving are made in update task, so it should be better you create a z-function to update your z-table and call that fm in update tusk into USEREXIT_SAVE_DOCUMENT
    What is the code to do the above. Pls explian.
    If you see the user-exit USEREXIT_SAVE_DOCUMENT you can see a example:
    FORM USEREXIT_SAVE_DOCUMENT.
    * Example:
    * CALL FUNCTION 'ZZ_EXAMPLE'
    *      IN UPDATE TASK
    *      EXPORTING
    *           ZZTAB = ZZTAB.
    ENDFORM.                    "USEREXIT_SAVE_DOCUMENT
    So you have to create a your function module with importing parameters structurated like your Z-table, in this way you can transfer the record you need to update/insert. In the fm you insert all code you need to do the updating/inserting:
    FUNCTION 'ZZ_EXAMPLE'.
      MODIFY ZZTAB FROM ZZTAB.
    ENDFUNCTION.
    Max

  • Set search help dynamically to SAP Standard Screen

    Hi,
    I have one issue where I have to Create f4 help For a field present on SAP standard screen.
    Please advice how to do that.
    Can i dynamically set Search help in any screen-exit of the standard screen?
    Please help.
    Screen No is 130
    and Program is SAPLQM03.
    Here I want to attach a Zsearch help to a standard   FIELD RQM01-LS_KDPOS.
    Thanks,
    Ishani

    Hi Ishani,
    The field that you mentioned here in structure RQM01 is having a check table VBUP. So if some values are there in that table, then that will appear as F4 help to you. Consult with your functional and check how values are coming to this table VBUP. Othertahn this, I am afraid you will not be able attach any help.
    Regards,
    Abijith

  • Adding custom fields on SAP standard screen

    Hi,
    I have to add some custom fields in the SAP defined standard screen. When I go to that particular screen and try to change it to 'CHANGE' mode , it asks for Access Key. Please suggest me, how to add the custom fields.
    RGDs,
    Gsaasg

    Hi,
    For this only there are enhancements, Just search for screen exits in the SDN or google for
    your transaction and also search for BADI's.
    Regards and Best wishes.

  • 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

  • Error while adding a custom field with Input help via AET

    Hi All,
    I need to add two custom field under Service orders at Item level in component BT140I_SRVP.
    One field is required to have the input search help f4 and autopopulates the second field
    I am able to add one field(not requiring help) successfully through AET .
    I have created one Zsearch_help in se11 and its successfully running  and Autopopulating seocnd field while I am testing it
    While adding second field through AET,I need to enter following details as -
    field label,search relevant ,serach help etc.
    When I type the name of my 'Zsearch_help' against field search help it gives me following error
    'Search help is not compatible'.
    Secondly,not getting getter and setter methods for the attrributes in BTAdminI.
    Last,please tell me if i create zhelp and activate it,would it automatically appear in the list on AETwhile assiging it to input field?
    Please help me out.Kindly be detailed as I am new to SAP CRM.
    Thanks,
    Shivani

    The question is answered in CRM 7.0 forum:
    Getting error while adding a custom field (with input help) through AET

  • Adding custom fields in Contract and PO screen

    Hi Experts
    I am trying to enhance contract and PO screen by creating structure Ci_bbp_hdr_ctr and Ci_bbp_hdr_po
    Now I am able to display the required fields on the screen.
    Is there any other way to do the same??
    I want to change the position of the fields, how to achieve that??
    and How to display drop down fields??
    Reg,
    Rajesh.

    Hi Rajesh,
    To add the customer fields please have a look at the following OSS Notes:
    Note 458591 - User-defined fields: Preparation and use
    Note 672960 - User-defined fields 2
    Also go through the following blog:
    /people/nanda.kondagunta/blog/2006/10/23/how-to-create-custom-fields-in-srm
    To display the customer field as drop-down list go through the below given thread:
    Re: How to display Customer Fields like a dropdown listbox ?
    The position of the customer fields depends on the order you added them in the Incluse structure as per the OSS Notes 458591& 672960. If you added a customer field first then it would appear first simlarly if you have added it at the end of the structure it will appear towards the end of the screen.
    Hope this helps.
    Thanks,
    Pradeep

  • Deleting AET custom field from the SAP tableu2019s level.

    Hi experts,
    I am deleting few un-used custom fields in AET. I am able to see delete symbol as status in AET. Although deleted custom fields are present in lot of structure and tables (eg: CRMD_ORDERADM_H) in SAP GUI tables. I want to delete the custom field from SAP GUI tables and structures.
    I tried to delete custom field from the SAP GUI tableu2019s level. But it is not allowing.
    Please get me some clue on deleting custom field from the SAP GUI tableu2019s level.
    Thanks in advance
    Chand

    Hi,
    The deletion of custom field in AET happens in two steps:
    1. You select a custom field that you want to delete, than you press on the delete icon in the Custom Field Assignment Block.
        Doing this, you mark the selected custom field to be deleted.
    2. You press on "Save and Generate" button. The "Save" will persist the deletion mark of the custom field. It means the custom field is marked to be deleted in the database. The "Generate" will process all the deletion of objects which are needed to delete the custom field, for example: Domain, Data Element, Append, etc.
    If the "Generate" does not happen due any reason, the deletion mark is already persisted in DB. It means, later on if you go back to AET, you will see that the custom field is marked to be deleted, but it is not yet deleted.
    If you do not press "Save and Generate" button at all, it means, you do not persist the deletion mark in DB. Later on if you go back to AET, you won't see that the custom field marked to be deleted.
    Note: Please make sure, "Generation" is only applied for field that is flagged to be generated. The "Generate" flag column is by default hidden. You can use personlization to show the column.
    Regards,
    Steve

  • Adding new custom fields in FB01

    Hello all.
    I am having a requirment as i need to add the custome fields in Fb01 transaction at item level.
    I have added the custome fields in Bseg table, now i wan to display this fields in the Fb01 screen.
    Is thios possible to do so.

    First, I hope you are using the ECC 6.0 since this is a new functionality (or ECC 5.0????). Second, tell us the steps you have followed.
    Fernando.

  • I added a custom field into my form in BC but it wont render.

    I added a custom field into my form on BC but I cannot get it to show up whhen I preview it. Does anyone know why this is happening?

    Check out this http://ellenmemorialhcc.businesscatalyst.com/contact-us.html  In this site I am just trying to add a 4 checkboxes. I have tried previewing it and everything and it will not make the changes. How do i get these checkboxes to show up on my site. I found where in business catalyst to access them and I enabled those features in BC but i cannot figure out how to get this to show up live on my business catalyst site.

  • Custom workflow integrated into SAP Standard

    I have a requirement were the business would like a workflow to create material master, but prior to actually creating the material they have a form that needs passed around and approved my many business units. Once all approvals are obtained a material master can be created. What I would like is to create a custom BOR and event to route the form and get approvals, but I would like to some how carry over or link this custom workflow with the SAP standard for material master so you can view the log of who and what was approved for this material. Any suggestions?

    Hi,
    Create a workflow or copy the SAP standard. Insert a fork step with the number for branches corresponding to the number of approvals you need. Say you need 5 approvals, have 5 branches and 5 required for completion.
    In each branch use a Form step or a custom method to get the approval.
    After the fork has completed then insert your step which call the CREATE method for your material.
    Everything will be contained in the workflow log.
    Regards,
    Eddie

  • SAP Standard screen modification and logic

    Hi  All,
    I have  four tab strips in my standard selection screen. in the second , third and fourth tabs i need to add  same fileds
    for exampls
    surgery tab
    optable                    procudere code          procudure category  (standard functionality)
    opttable2                 procudure code2        procudure category2(custom to be added)
    opttable 3                procudure code3       procudure category3(custom to be added)
    medical dat tab
    diagnosis code(standard)
    diagnosis code2(custom to be added)
    diagnosis code3(custom to be added)
    The standard program uses one structure (RNEBILL)  in the structure i have added  APPEND STRUCTURE(ZPPAND1)
    in the structure i  created all the fields.
    could you tell us how to proceed futher development logic.
    Regards
    subbara

    Hi Subba,
    Still it appears hazy to me. But if i have understood it correctly, this is how it looks like:
    Your mentioning of a Standard SAP Form with four Tabs gives me a hint that it could be any Marketing Document Form (For eg. Sales Documents or Purchase Documents). Then you mention that you are not adding any User Fields to the first Tab (The first tab in any Marketing Document is the Contents tab). Again, you mentioned that you have added 3 user defined fields in your second tab which is the Logistics tab and then your requirement, you want this to manged by the SAP Form just like any other standard field on the Form.
    If this is what i have understood then the solution is simple. You just need to databind your custom field  to the user defined field that you have created in the database. SAP Business One will process these custom fields just like any standard field.
    Thanks and HTH,
    BR,
    Siju Dasan

  • Add custom field column in VL03N main screen

    Hi,
    We added a new field to LIPS via an append structure but would like it to appear in the main screen next to the quantity.  I keep reading about transaction variants and SHD0 but nothing I see there helps me know how to change the order or contents of the columns.  How can I get my custom field into the display as an additional column/field?  If SHD0 is the answer, please provide some specific steps on how to add columns to the table control as everything I've found is very vague.
    The field is now in LIPSVB, but it is not in LIPSD.  Not sure if that matters.
    Thanks for any help you can offer.

    Hi,
       For adding fields at the item level to VL01N Transaction you can use the BADI LE_SHP_TAB_CUST_ITEM.
    I dont think it is a good idea to add fields right next to the standard fields in the transaction. A separate tab should be created which will include all the customer fields.
    Check the documentation of this BADI for more details. If you want this field only in VL03N transaction then you can implement the BADI accordingly so that it triggers only for VL03N transaction.

  • How to edit the attributes of a SAP standard screen?

    hello all,
    i would like to ask if it is possible to edit the attributes (particularly the language) of a SAP standard screen without using any access key? if yes, how would i be able to apply the changes?
    thanks!
    - annalyn

    Hi,
    Screen attributes are stored in table D020S. You can update this table using ABAP code. The language is stored in field SPRA of this table. The texts appearing on the screen are in D020T.
    It is likely you will not be allowed aa data modification statement (INSERT/UPDATE...) on these tables if you are on newer versions of SAP (46/47...). You can bypass that by using native SQL and some other workaround (which might be another thread here).
    It is most strongly recommended to not modify SAP standard objects, and specially not without an object key. However, if you are working on something like a miniSAP and want to play around with it, the method mentioned above shall do.
    Hope this helps,
    cheers,
    Ajay

Maybe you are looking for

  • Hierarchy VIewer - Card only on Leaf nodes

    I am using version 11.1.2.3.0. Is there a way to show a Card only on the leaf nodes of the Hierarchy VIewer? I have information that only applies to the nodes on the very bottom of the tree. Thanks in advance.

  • Cannot attach Mac Mini to iMac

    I need advice please on how to attach a Mac Mini (model #A1283 year 2008) to a iMac (27" late 2012, OSX 10.9.3). I tried a thunderbolt to thunderbolt cable but it did not attach the 2 computers. Thanks in advance! Wade

  • Foreign language format problem

    Hi, I have a glossary of Tibetan words that was made in MS Excel using a form of transliteration in Latin characters, and now I want to update it using Tibetan fonts, which I use in Pages. So long as I am clicked in the cell, the word displays correc

  • Showing library image in TextFlow via TextFormatLayout source tag

    hi, i compose textflow with TextLayoutFormat in Actionscript 3. i show image using "<img>" tag and "source" attribute. i want to show library image. how should i give source address? i tried <img source="[myImg]"></img> but it didnt work?  thanks...

  • [svn:fx-4.0.0] 13786: TLF Build 593

    Revision: 13786 Revision: 13786 Author:   [email protected] Date:     2010-01-26 11:54:23 -0800 (Tue, 26 Jan 2010) Log Message: TLF Build 593 Fix more file headers (2532451). Fix 2532163 (again) now generate digests correctly. QE notes: Doc notes: Bu