Add Substitutable Fields in transaction OBBH

Hi,
I need to add a substitutable field to the list of substitutable fields present in transaction OBBH. Any suggestions would be helpful.
Thanks,
Alam.

This has been answered in your first request.
pls assign points if helpful as a way to say thanks.

Similar Messages

  • How to add a field in Transaction LT31.

    Now I want to add a field in Transaction LT31 and store the field in a ztable, would you please tell me how to implement this? Thanks in advance!

    u have to search for a screen exit to implement the field in the screen of LT31. then u have to write ur code to upload to the zcode in the same exit..

  • Add item field in transaction MIGO

    Hi,
    do you know a BADI or an enhancements to add item fields in transaction MIGO?
    Do you have documentation about this?
    Many thanks.
    Luca

    I have found the badi "MB_MIGO_BADI"

  • Need to add costom fields in transaction AS01

    Hi,
    i am trying to add a custom fields in transaction AS01. For this i implemented one enhancement AIST0002 . In this enhancement i implemented one function exit  EXIT_SAPLAIST_002. In this exit  i maintained some code in include ZXAISU03.In this the data  trasfering in parameter i_anlu to a screen. when i am activating this include i am getting 'ANLU has already declared'.
    Can any one please suggest me how can i solve this problem.
    Regards ,
    Swathi.

    Did you notice the sample code provided, you may need to have something similar at the end of your exit code.
    *   INCLUDE LXAISF03                                                   *
    * move parameters of function module EXIT_SAPLAIST_002 to global
    * variables
    ANLA      = I_ANLA.
    ANLV      = I_ANLV.
    ANLU      = I_ANLU.
    GD_MODE   = I_MODE.
    GD_XSUBNO = I_XSUBNO.
    GT_ANLZ[] = T_ANLZ[].
    GT_ANLB[] = T_ANLB[].

  • Need to add new fields in transaction UDM_DISPUTE.

    Hi Friends,
    This is regarding UDM_DISPUTE transaction in FSCM.
    I need to add new fields (drop down lists) in transaction UDM_DISPUTE.
    Program Name: SAPLSRMCLFRM2
    Screen Number: 100
    Can any one please suggest me with the name of exit using which I can add these new fields.
    Or another way through which I can add these new fields viz., BADI or classes.
    Thank You in Advance!
    Regards,
    Tejaswini

    Execute the below code to find the userexits the t-code is using
    REPORT yuserexit_vin NO STANDARD PAGE HEADING.
    TABLES : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    TABLES : tstct. DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECT SINGLE * FROM tstc WHERE tcode EQ p_tcode.
    IF sy-subrc EQ 0.
      SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'PROG' AND obj_name = tstc-pgmna.
      MOVE : tadir-devclass TO v_devclass.
      IF sy-subrc NE 0.
        SELECT SINGLE * FROM trdir WHERE name = tstc-pgmna.
        IF trdir-subc EQ 'F'.
          SELECT SINGLE * FROM tfdir WHERE pname = tstc-pgmna.
          SELECT SINGLE * FROM enlfdir WHERE funcname = tfdir-funcname.
          SELECT SINGLE * FROM tadir WHERE pgmid = 'R3TR' AND object = 'FUGR' AND obj_name EQ enlfdir-area.
          MOVE : tadir-devclass TO v_devclass.
        ENDIF.
      ENDIF.
      SELECT * FROM tadir INTO TABLE jtab WHERE pgmid = 'R3TR' AND object = 'SMOD' AND devclass = v_devclass.
      SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu AND tcode EQ p_tcode.
      FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
      WRITE:/(19) 'Transaction Code - ', 20(20) p_tcode, 45(50) tstct-ttext.
      SKIP.
      IF NOT jtab[] IS INITIAL.
        WRITE:/(95) sy-uline.
        FORMAT COLOR COL_HEADING INTENSIFIED ON.
        WRITE:/1 sy-vline, 2 'Exit Name', 21 sy-vline , 22 'Description', 95 sy-vline.
        WRITE:/(95) sy-uline.
        LOOP AT jtab.
          SELECT SINGLE * FROM modsapt WHERE sprsl = sy-langu AND name = jtab-obj_name.
          FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
          WRITE:/1 sy-vline, 2 jtab-obj_name HOTSPOT ON, 21 sy-vline , 22 modsapt-modtext, 95 sy-vline.
        ENDLOOP.
        WRITE:/(95) sy-uline.
        DESCRIBE TABLE jtab.
        SKIP.
        FORMAT COLOR COL_TOTAL INTENSIFIED ON.
        WRITE:/ 'No of Exits:' , sy-tfill.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'No User Exit exists'.
      ENDIF.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'Transaction Code Does Not Exist'.
    ENDIF.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    * *---End of Program

  • Include a new tab and add custom fields in transaction ME21n

    Hi All,
    I have a requirement to add a new tab at the header level and include 4 custom fields to the tab in ME21N transaction. I need to use BADI for developing this. Can any one help me with the procedure to how to include the tab and add new fields to it.
    Regards,
    Clara

    check
    BADI
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/63ee7f486cc143a560799d8803ce29/content.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/srm/badi-general+information&
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    The specified item was not found.
    http://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    http://www.allsaplinks.com/badi.html
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3430https [original link is broken] [original link is broken] [original link is broken]:///people/alwin.vandeput2/blog/2006/04/13/how-to-search-for-badis-trace-it
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework /people/thomas.weiss/blog/2006/05/03/source-code-enhancements--part-5-of-the-series-on-the-new-enhancement-framework
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://www.esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    <b>TIP :- Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this. 
    Start va01 go to system-->status 
    Double click transaction VA01 
    Double click on package 
    Read the application component. (this is SD-SLS Sales) 
    Then open the transaction BAPI 
    Sales and distribution>Sales>sales order  --> createfromdat2 
    Adding small screen shots to my TIP.
    After finding the Application Component go to BAPI and check with the same path
    what we got SD-> SLS Sales
    You need to go to BAPI tcode
    you will find the application path as i mentioned
    goto Sales and Distribution
    click on createfromdat2 and check the BAPI</b>
    Rewards if useful.....................
    Minal

  • Have to add custom fields to transaction KS01,

    have to create a new field for cost centre KS01 transaction. In the documentation of exit EXIT_SAPLKMA1_001 it is mentioned that we have to create the new field in CSKS_CI structure. After this, the new field has to be added in the screen.
    This exit is used by program SAPLKMA1 in 2 screens 0399 and 3999. But, these screens are not used anywhere (I checked from the where-used list). In these 2 screens, there is a call customer-subscreen line. If i want to create this subscreen it asks for access key.
    Is there any way that i can create a subscreen and attach it to the standard transaction. Please suggest if there is any other ways to do the same.
    I have done all the standard procedure creating project activating exists. Only issue is how do i create a screen to add custom fields as it is asking access key. Is there any config that i have to do?

    Hello Swathi,
    yes, you actually have to create at least dynpro 0999. You can do that via transaction CMOD, double click on the screen exit and use the screen painter.
    It should not be necessary to enter an access key when you implement it in a customer project.
    The example coding from your CMOD modification shows you the minimal coding you have to implement to actually use your new fields.
    Best regards
    Sebastian

  • Add report field to transaction CN43N

    Hello,
    How do I add an additional standard field (from table PRPS) as a report field to transaction CN43N?
    Do I have to create a database profile? If yes, how does this work?
    thanks in advance
    Roland

    Hi,
    Refer SAP Note 522581.
    Newly created user-defined fields are not automatically displayed in the information system. To display these fields in the information system, execute the report program RCNCT001. The procedure is decribed in the program documentation.
    Regards
    Edited by: Shrikant Rakate on Jan 14, 2009 10:03 AM

  • Add Substitutable Field VALUT

    Dear All,
    I would like to have field VALUT (Value Date) as a substitutable field which is presently not available. Please guide me how to make this field as substitutable.
    Thanks.

    Eli/All,
    I'm thinking about creating a substitution rule based on trading partner and original FI account. 
    Specifically the prerequisite is:
    ( BSEG-HKONT = '502610' OR BSEG-HKONT = '521200' )
    AND BSEG-VBUND <> ''
    And the substution is:
    BSEG-HKONT = '541100'
    I know that I first have to modify table GB01 to allow BSEG-HKONT as a substitution field.
    My question is: Is there any issue with substituting one G/L account for another? 
    Thanks,
    Dan

  • Add new Fields to transaction COOIS

    Hi,
    can anybody tell em ,
    how i can add couple of new fields like
    &#61607;     Sold to Name          ZCAMESLINEDUP / by Sales document or Prod. Order
    &#61607;     Sold to Account           ZCAMESLINEDUP / by Sales document or Prod. Order
    &#61607;     Series I.D.           Material Master
    &#61607;     Emission Tier Level      Material Master
    in alv display of standard transaction COOIS.
    is there any user exit for the same?

    Hi,
    have a look at badi WORKORDER_INFOSYSTEM.
    method ORDER_TABLES_MODIFY.
    and check this thread (pay attention to the oss notes):
    Re: Urgent:Regarding COOIS  transaction
    Best regards.
    Edited by: pablo casamayor on Mar 25, 2008 10:48 AM

  • Add new field in transaction V_RA

    hi all,
    can we create additional new field for report in transaction V_RA. i would like to add field customer material number (KDMAT)
    in Setting, i see "Additional field On" , but it's grey.
    thanks
    Hendry

    The greyed field is due to authorization issue.  Contact your Basis/Security guy to provide authorization.  If the field you want is not there in ''Add fields on'' you can always ask the Abap consultants to include it there.
    Regards,
    Anand

  • Need BADI to add custom field fro transaction FV50

    Hi all,
    I need BADI to add a custome field at header level.
    Is BADI FI_HEADER_1300_FS is right one? IF yes how can i add field in SCREEN.
    If not please let me know the correct BADI.
    Thanks and Regards
    Sagar.

    Hi,
    Check the BADI
    FI_HEADER_SUB_1300 to get the data to Screen Field and to put the data into Field and hence to database
    FI_TRANS_DATE_DERIVE  Filter based BADI
    FI_LIMIT_PROCESS
    BADI_PRKNG_NO_UPDATE
    AC_QUANTITY_GET
    FMRE_BUS_PROCESS
    EXIT_XFMPR1_001
    Regards,

  • How to add a field and table control to BP transaction.

    Hi,
    I have a requirement to add a field and table control to the 'Control data' tab of the Transaction BP.
    Can some on please help me if having a solution and with any relavant documents.
    Thanks in advance.
    Raj & Khader.

    Also explore with EEWB tcode.
    Refer this threads
    Re: EEWB
    Created New fields in Business Activity with EEWB
    Cheers
    Manohar

  • Add a new field in transaction KO03

    Hi,
    I would like to add a new field in transaction KO03, which are the solutions?
    thank you.

    check below exits and add the filed
    COOPA002            Customer function for master data maint. - internal orders
    COOPA003            User-Defined Fields in the Order Master
    COOPA004            Customer function: Print order master data
    COOPA_01            Customer check modules for internal orders

  • Is it possible to add PERNR field to MIGO or MB1A transaction screens?

    Hi,
    Ours is a service industry with @ 10000 employees and we have implemented SAP with MM & HR module. We issue uniforms to all the employees when they join (new Joinee) and again once in January every year as reissuance. We intend to keep size information in employee masters in HR along with station code, designation, department and cost centers.
    At present we are using two fields goods recipient and unloading point to mention employee code and type of issue (new joinee or reissuance). This is because employee code (PERNR) field is not there in MIGO_GI screen or MB1A screen.
    Is it possible to add PERNR field to any of these transaction screens?
    If added then we can fetch the relevant information about issuance of information along with station code, designation, department in Z report.
    If possible, then how it can be done?
    Thanks in advance,
    Satish

    Hi ,
    as i understand we can add new fields in a transaction through user exit /field exit. so please discuss with your ABAP consultant & try to find out all the exit available for MIGO/ MB1A. then you have to decide which one will suit you. here you have to consider some factors like whether you need to enter values in the field or the field needs to fatch any value from any other table & should populate here.
    the ABAPer can then write the code & add your required logic here.
    i am not very good in this subject. just tried to share what ever i knew.
    regards,
    anubhab

Maybe you are looking for