New field in transaction FBL5N

Hi Gurus,
I have a problem in adding a field in the "additional selection" for transaction FBL5N. I I read in some messages I did the following operations:
- transaction SE36: database --> DDF
- structure button --> display
Go to Extras --> selection views
I created a new view (CUStom) as copy of SAP standard. I Change, in this custom views, the "table field" for the field "Bank Key" (BANKL); I inserted it in functional group 01 (Customer master).
But I can't see the field for the selection in report RFITEMAR (FBL 5N).
Someone knows why?
Thanks,
Marco
Message was edited by:
        Marco Vismara

Hi Marco,
Extras> Dynamic Selection is the same as clicking the button dynamic selection in your FBL5n report.
If my instruction didn't work at all, can you check from the other table if you can view that field from other table. Other than KNBK.
If that field can be seen in other table, try again the instruction that I sent you.
I'm really sorry but this is the only way to modify a standard report, otherwise you need to create a custom report as per your requirement.
Regards,
JeCCas_DJ

Similar Messages

  • 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

  • The New Field in the FBL5N/FBL1N doesn't appear

    Hi guys,
    I created an APPEND STRUCTURE with the NAME1 field in the table RFPOS and through the transaction FIBF an Event that calls a Function and move the Name of Customer or Supplier according to the transactions FBL5N or FBL1N.
    This field, NAME1, should appear in these transactions when the user choices the hidden fields through the Change Layout button. But this field doesn't appear...
    I debbuged the Function Module and the data have been moved. (It works...)
    Please, someone did it before and could help me to solve it?
    Why doesn't the Field NAME1 appear? What could I do??
    Thanks a lot!
    Regards,
    Marcos Fernando Dotta

    Hi
    The new fields have to be appended in the structure RFPOSX too, and then you need to run the program RFPOSXEXTEND in order to add the new fields in layout structure RFPOSXEXT
    Max

  • Add new field in Txn FBL5N

    Hi SAP,
    How to add "new" field eg: object key in customer line item (FBL5N) via config? any menu path?
    I will give points for those who can solve my problem.
    TQ
    Regards,
    Nazrul

    Hi
    The path for adding additional line ittems for display in customer line items is
    IMG>Financial Accounting (New)>Accounts Recievebl & payables>Customer Accounts>Line Items>Display Line Items>Define Additional Fields for Line Items Display
    Thanks & Regards
    Sanil K Bhandari

  • How add a new field in transaction MIRO

    Hello !
    I need to add a field (tiban-iban) in a subscreen of transaction MIRO, and I don't know how
    Screen concerned
    SAPLMR1M / n° 6510
    I need to add the field (display only), and fill it from table tiban.
    Thanks
    Aussie

    hi
    u can check the transaction varients in  SHD0
    Adding new field (ie Goods Recievd date ) at item level in MIRO tcode.
    How to add a field to the Vendor Info on MIRO?
    https://www.sdn.sap.com/irj/sdn/advancedsearch?cat=sdn_all&query=addfieldin+miro&adv=false&sortby=cm_rnd_rankvalue
    regards
    kunal

  • Add new Fields to transaction COOIS

    Hi,
    can anybody tell em ,
    how i can add couple of new fields like
         Sold to Name          ZCAMESLINEDUP / by Sales document or Prod. Order
         Sold to Account           ZCAMESLINEDUP / by Sales document or Prod. Order
         Series I.D.           Material Master
         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

  • 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

  • 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

  • Adding a new field in transaction F-02

    Greetings,
    I would like to add a new field to the transaction f-02 at
    item level.Is this possible through coding block?I tried using
    coding block but was not successful.Could anyone suggest
    me the best possible way of doing this enhancement.?
    Helpful answers will be rewarded.
    Regards,
    Jinesh.

    yes you may add new screen fiels but some prerequisites is there to implement this BADi:
    Screen fields: The fields must be in structure INVFO.
    If the values in the FI document are to be saved, the fields must also be in table BKPF or BSEG. If the values in the MM document are to be saved, the fields must be in the structure ACMM_VENDOR_COMP, the view RBKP, and table RBKP.
    for more info you may read the documentation of BADI_FDCB_SUBBAS01 BADi this same Documentation would be applied to all other BADI but the screen number is changed.

  • New field in transaction MD04 initial screen

    Hi,
    I want to add a new selection criteria in the transaction MD04.
    A new field min. Inspection Field has to be added along with the Mat Co MRP Area, Plant in the tab Individual Access. If anyone knows the answer please tell me.

    HI
    Check the follwing userexits.
    LMDR2001
    LMDZU001
    Regards
    Kiran

  • Add new field in the fbl5n dynamic selections/ Need to add dunning clerk fi

    Hi Gurus,
    Currently, you can find the Accounting Clerk field in the dynamic selections.  Would like to be able to use the Dunning Clerk field in the dynamic selections.
    Beyond that, would like to bring both Accounting Clerk and Dunning Clerk as columns when looking at customer detail. 
    Would be willing to use other report that I can access that would give me these two clerks by customer number.
    Thanks in advance.....
    Ramanjaneyulu

    Hi,
    the field dunning clerk is not available in Dynamic Selections because it is in table KNB5.
    The fields which are eligible for dynamic selection can be reviewed for
    the related logical database via trans SE36
    1) Enter logical database DDF, KDF or SDF (for FBL5N, FBL1N, FLB3N)
    2) Menu -> Extras -> selection views
    3) Here you can find 2 origins of the view (SAP and CUS).
       The standard view SAP is used. Create your own using view CUS. First
       copy the view SAP.
       On the left side are the functional groups.
       01  Customer master  => fields from table KNA1
       02  Company code    =>  fields from table KNB1
       03  Documents        => fields from table BSID
      Only those fields from these tables can be used for dynamic selection
    Regards,
    Greta

  • Populating marketing attribute of bp in new field created by eew in crm

    Hi all,
        I have created new field in transaction types(lead opp, quotation and order) through eew.
        how do i populate a value of a marketing attribute that i have maintained for a business partner(TABLE for marketing attribute:- AUSP) in the new fields created in all the transaction types.
        Can anyone help me in how to achieve this as it is an high priority issue for me?
        I have tried doing by writing a code in pbo of the screen in which fields are created but it gives me a dump at item level if item is maintained otherwise it works but item is compulsary.
    Regards,
    Rahul

    Hi Rahul,
    Check the BADI 'CRM_CUSTOMER_H_BADI'
    Implement the method 'CRM_CUSTOMER_H_MERGE'
    First of all select the data from the table.
    Fill in the appropriate corresponding field in the structure 'CS_CUSTOMER_H_BADI',of the method, with the data extacted. Finally(very important), In the table 'IT_INPUT_FIELD_NAMES', of the method, append a line with the field FIELDNAME containing the name of the field in the Customer_h structure and field CHANGEABLE containing space.
    I think this should solve your problem.

  • FB60 add new fields

    Hi
    Is this possible to add a new fields into transaction FB60?
    I used yet 5 standard fields from ACGL_ITEM_GEN and want to add more for this.

    Hi,
    It is not possible to add more than 5 fields to enjoy posting screen.
    there is a option in NEW GL to have different transaction variant and call different fields the node is
    "Include Customer Fields in Enjoy Transactions"
    other-wise you may have to switch to complex posting F-43 for this requirement i think.
    If there are some fields which you can substitute you can do that and change the order of coding block fields that may help.
    Refer to SAP Note
    841884 - Customer fields in the Enjoy entry transactions
    Note 174413 - Customer-specific fields in new Enjoy transactions
    Regards
    K.R

  • Add new fields tcode FD32

    Hi experts,
    I need to add several new fields at transaction code FD32, by now I haven't found any user-exit or badi for this propose, so if any one can help-me on this i would appreciated.
    I have heard that maybe a possibility could be BDT but we haven't be able to make it work.
    Best regard
    Ingrid.

    Hi
    Enhancement
    RFDRRANZ User exits: Accounts Receivable Information System
    Business Add-in
    FI_DUZI_ROUND_CML Rounding in Accordance with Contract Conditions
    Check this thread:
    Workflow for transaction FD32
    workflow triggering using "Z" object's event
    Regards,
    Sreeram

  • Adding new field in VL02N

    Hi all,
    I need to add a new field in transaction VL02 / VL02N
    ( change outboud delivery ) in the header details.
    I read several threads on how to add a new field in a standard transaction however, regarding the transaction VL02N I'm  confused.
    Could anybody explain me in detail the better way to reach this goal ?
    I thank you in advance.

    Hi ,
    This can be done using Screen exits .
    See the below exits for the t-code vl02n
    V02V0001  Sales area determination for stock transport order
    V02V0002  User exit for storage location determination
    V02V0003  User exit for gate + matl staging area determination (h
    V02V0004  User Exit for Staging Area Determination (Item)
    V50PSTAT  Delivery: Item Status Calculation
    V50Q0001  Delivery Monitor: User Exits for Filling Display Fields
    V50R0001  Collective processing for delivery creation
    V50R0002  Collective processing for delivery creation
    V50R0004  Calculation of Stock for POs for Shipping Due Date List
    V50S0001  User Exits for Delivery Processing
    V53C0001  Rough workload calculation in time per item
    V53C0002  W&S: RWE enhancement - shipping material type/time slot
    V53W0001  User exits for creating picking waves
    VMDE0001  Shipping Interface: Error Handling - Inbound IDoc
    VMDE0002  Shipping Interface: Message PICKSD (Picking, Outbound)
    VMDE0003  Shipping Interface: Message SDPICK (Picking, Inbound)
    VMDE0004  Shipping Interface: Message SDPACK (Packing, Inbound)
    Thanks,
    SVREDDY

Maybe you are looking for

  • Macbook pro 15-inch 2011 vs. MacBook Air 13-inch 2013

    Hello. I currently own a MacBook Pro 15-inch, early 2011 model. It has 8 GB of RAM, a quad-core, 2.3 GHz i7 processor, hi-res, anti-glare display, an AMD 6750m and Intel HD 3000. I bought it off of an Apple product store on Ebay about 3 and a half mo

  • Oracle 10g 10.2.0.3.0 takes 100% CPU

    Hi, We are using Web sphere commerce server (IBM) with Oracle 10g. we are currently in development phase. what ever execute (jobs) small job like uploding 100 records, CPU takes 100%. the process can't complete, it goes on. System Details 2 CPU and 8

  • Qosmio G20 - Missing software discs

    I have a Qosmio G20 that has had the hard drives wiped due to a virus. To reinstall software a disc is required that I seem to have misplaced. Apparently Toshiba no longer keeps a copy of this disc as it is an old model. I was wondering if anyone cou

  • Due for a new phone soon...what to get?

    I have an HTC Incredible right now, but I'm eager to get rid of it because of the poor battery life and low signal issues. I'm mostly concerned about getting a phone with better reception. I can be sitting at home and waver between zero and one bars,

  • Sprite Movement

    Hi i was wondering if its possible to get a sprite to move accross the stage, then when clicked on it changes to a different sprite, plays a sound and resets to its original position to start over again? currently i have the sprite moving across the