Adding Network field in Me21n

Hi All
We need to add a network field (EKKN-NPLNR) in the Me21n dynamic selection.
Goto Me21n-->documet overview on --> purchase orders --> (Will show a selection screen)click the dynamic section button .It ll show list of fields .Is it possible to  add the network field in that.
Basically a query has been written using logical database MEPOLDB.If i go into that logical database it is showing network field for selection.But when i go thro' Me21 it is not showing .
Is there anyway to get this field.
Thanks in Advance
Raj.

Hi,
     Another way of doing the same is to use screen-exits for the transaction. You can use the standard enhancement MM06E005 in SMOD for the Purchasing related custom fields. You can add the fields in the screens 0101, 0111 of program SAPLXM06 to get the fields in the tab 'Customer Data' at header level and item level for ME* transactions.
EXIT_SAPMM06E_006 
EXIT_SAPMM06E_007 
EXIT_SAPMM06E_008 
                    are the function modules where u need to do the coding.
and the fields u have added need to be included in the  includes
CI_EKKODB
CI_EKPODB
of EKKO and EKPO for header level and item level respectively.
Regards,
Vishnu Priya
Message was edited by:
        Vishnu priya
Message was edited by:
        Vishnu priya

Similar Messages

  • ADDING NEW FIELDS IN me21n

    Hi Gurus,
               m added 5 custom fields in PO header customer data.
    for tht, include of EKKO added 5 fields.
    m using enhancement MM06E005 for screen layout and updation,'
    1) EXIT_SAPMM06E_007   (PAI) - Export data
    2) EXIT_SAPMM06E_006   (PBO)
    3) EXIT_SAPMM06E_008   Import data.
    In screen layout added all the fields from dictionary.
    Question:
             Now i want to update data in EXIT_SAPMM06E_008 --> E_CI_EKKO-ZLEVR ,
    BUT i cant able to assign values to this EXIT_SAPMM06E_008 enhancement.
    throwing error EKKO is unknown.
    please suggest me the flow. how to update data.
    where to assign and initialise.
    Thanks and Regards
    Vinayak  Sapkal

    Hi,
       problem solved... m using global structure EKKO_CI and on screen all field name given like
    EKKO_CI-zlevr,EKKO_CI-zmdsp....
    there is no req. of Import n Export if using EKKO_CI structure...
    Just pass this structure value in Import exit EXIT_SAPMM06E_008.
    E_CI_EKKO is changing.so value will be save in EKKO table.
    IF EKKO_CI-ZLEVR IS NOT INITIAL.
          E_CI_EKKO-ZLEVR = EKKO_CI-ZLEVR.
    ENDIF.
    Thanks all you guys for your suggestions...
    Thanks and Regards
    Vinayak sapkal

  • Adding new field in ME21N items level NO ADDITIONAL TAB or SUBSCREEN

    Hello Gurus!!
    I have a requirement where I am just trying to add a new field ZZ*** at Item level in ME21N (and no new tabs please)
    I got the modification key and now wat i see is that in screen 1211 SAP has some field mappings with metadata.
    Refer to Include LMEMFSF0T.
    Can you please help me how sud i proceed or  wat can be an alternate way out to solve.
    regards,
    Prasenjit Singh Bist

    Hi,
         Another way of doing the same is to use screen-exits for the transaction. You can use the standard enhancement MM06E005 in SMOD for the Purchasing related custom fields. You can add the fields in the screens 0101, 0111 of program SAPLXM06 to get the fields in the tab 'Customer Data' at header level and item level for ME* transactions.
    EXIT_SAPMM06E_006 
    EXIT_SAPMM06E_007 
    EXIT_SAPMM06E_008 
                        are the function modules where u need to do the coding.
    and the fields u have added need to be included in the  includes
    CI_EKKODB
    CI_EKPODB
    of EKKO and EKPO for header level and item level respectively.
    Regards,
    Vishnu Priya
    Message was edited by:
            Vishnu priya
    Message was edited by:
            Vishnu priya

  • Adding new field in ME21N

    Hi,
    I want to add 5 new fileds in the header level  & item level of Me21N screen. The suggestion i have got is use <b>badi</b> <b>customer own screens in enjoy purchase order</b>. Please let me know the method to use for this badi or another way to add custom fileds to it.
    Please send the sample code if anybody is having.
    Please tell me the procedure to add the fields.
    many thnx & rgds.

    Hi,
         Another way of doing the same is to use screen-exits for the transaction. You can use the standard enhancement MM06E005 in SMOD for the Purchasing related custom fields. You can add the fields in the screens 0101, 0111 of program SAPLXM06 to get the fields in the tab 'Customer Data' at header level and item level for ME* transactions.
    EXIT_SAPMM06E_006 
    EXIT_SAPMM06E_007 
    EXIT_SAPMM06E_008 
                        are the function modules where u need to do the coding.
    and the fields u have added need to be included in the  includes
    CI_EKKODB
    CI_EKPODB
    of EKKO and EKPO for header level and item level respectively.
    Regards,
    Vishnu Priya
    Message was edited by:
            Vishnu priya
    Message was edited by:
            Vishnu priya

  • Adding new field in me21n(screen exit)

    Hi
    I want to add a customer field in PO layout at ITEM LEVEL.
    I have already placed this field on screen. But I am not able to write code for the same.
    My another requirement is - the customer field should be updated in the database.
    Regards
    Harshada

    Try This
    EXIT_SAPMM06E_001
    EXIT_SAPMM06E_004
    EXIT_SAPMM06E_006
    EXIT_SAPMM06E_007
    EXIT_SAPMM06E_008
    EXIT_SAPMM06E_009
    EXIT_SAPMM06E_012
    EXIT_SAPMM06E_013
    EXIT_SAPMM06E_014
    EXIT_SAPMM06E_016
    EXIT_SAPMM06E_017
    EXIT_SAPMM06E_018
    REgards.

  • Adding field in ME21N po header

    Hi All,
    I have added field on ME21N on header level.
    I used below screen exit
    SAPMM06E 0101 CUSTSCR1 SAPLXM06 0101 Subscreen: PO header
    and added fields to structure CI_EKKODB. Field is created on ME21N but table is not updating.
    can you please let me know what and where should I write the code to update the table.

    Hi Atul,
    I have added below code as adviced by you.
    EXIT_SAPMM06E_008  ( include ZXM06U37)
      e_ci_ekko = ekko_ci.
    EXIT_SAPMM06E_006 (   INCLUDE ZXM06U36)
    ekko_ci      = i_ci_ekko.
    it still not updating ekko table for these fields.
    How can I put logic in PBO even of screen 101 for enabling this.
    Please help.

  • Adding this field MEPO1317-LEBRE to Invoice tab in ME22N/ME21N

    Hi,
    Adding this field MEPO1317-LEBRE (Indicator for service-based invoice verification) to Invoice tab in ME22N/ME21N.
    Please suggest what are the steps in adding above field to PO screens.
    Thanks,
    Sanjay

    You don't need to eanter in MEPO1317. the moment you anter the Item category service it will Populate the field.
    Invoice verification for services is based on the accepted service entry sheet or the services set out in the purchase order.
    Since you usually enter into a variety of billing arrangements with your vendors, it is advisable to specify the relevant type of invoice verification in the vendor master record. The indicator is suggested per purchase order item and can be changed if necessary on the PO item detail screen.
    You must set the following indicators on the purchasing data screen of the vendor master record:
    For Goods-Receipt-Based Invoice Verification: GR-based inv. verif.
    For Evaluated Receipt Settlement (ERS): AutoEvalGRSetmt Del.
    For Service-Based Invoice Verification: Srv.-based inv. ver.

  • Screen Exit for adding custom fields in Additional Data tab in ME21N

    I need a screen exit or whatever other method for adding custom fields to the additional data tab at header level.
    I also need a similar exit for adding a filed at item level.
    Thanks in advance
    Martin

    Hello,
    1st find badi or exit and then create screen ...and assign the screen group and screen no for that implementation....some steps i can give u i did with SPRO tcode....
    please check it for VA02
    SPRO u2013 SAP Reference IMG ---  Logistics General --- Basic partner u2013 customers -- Control u2013 Adaption of customers own masters data element u2013 prepare modification of customer free enhancement of customer master record
    1)Screen group                                  description
            zs                                           creating badi      --- (save)
           click on (label tab pages) u2013 new entries
           number u2013 10 , function code u2013 zs10 ,  description u2013 func ---(save) u2013(back)
    2)select (FM_CUSTOMER_ADD) u2013 copy
         Implementation name u2013 ZAS
         (desc u2013 impl for cust) u2013 (save)
        interfaceu2014(check_add_on_active) double click on it
    3)the above screen appear --  write the code in it u2013 (save) --- (activate) u2013 (back) u2013 (save)
         -- (activate) u2013 (back)
       Business adds in customer sub screens
    4)select (FM_CUSTOMER_ADD) u2013 copy
         Implementation name u2013 ZAS1
         (description -- cust) u2013 in attribute u2013 (give screen group name)
    5)go to interfaces (GET_TAXI_SCREEN)  double click on it
       (save)  --- (activate) 
    6)(SAVE)  -- 
        Goto SE38  -- CREATE PROGRAM WITH NAME (ZQW) type module pool
         Goto SE51  -- Prog : ZQW
           Screen : 200 (Create)
          Goto layout u2013 design the screen
    7)save u2013 activate
       then goto transaction : va02
    For User Exit's
    goto to tcode->status->program name->double click on that,
    then goto to-> attribute take the package name and
    Goto SMOD tcode ->Utilities->give the package name and F8
    then a list of exits will display for that tcode as well as that package.
    u can check the table MODSAP
    u can check the table MODACT
    For BADI's,
    1)goto to tcode SE24 give the CL_EXITHANDLER and display and then double click on the GET_INSTANCE
    keep Break point at this location 'call method cl_exithandler=>get_class_name_by_interface'
    then the tcode it will trigger there and we can debugg there we can find badi'for that tcode and then remove the break point.
    2)Goto to tcode->status->program name->double click on that program will display's
    then  press crtl+F then cl_exithandler
    Thank u ,
    santhosh

  • To get f4 help for salesperson field ,transaction me21n & me22n

    Hi Super-Techies,
    I am a new-bie in the world of enhancement.
    The reuirement here is I need to create a custom table with 1 field (prep_name). (This is done)
    Now the reuirement is that whenever user goes to transaction ME21N/ME22N, he wants me to add a f4 help for salesperson field (navigation : ME21N/ME22N -> CLICK ON COMMUNICATION TAB -> SALESPERSON). The f4 help should display the field from my custom table.
    As far as my knowledge is cond=cerned, I can use the function module 'F4IF_INT_TABLE_VALUE_REQUEST' to achieve this requirement.
    But the issue I am facing is where to write this logic and how to proceed. Can anyone help me in this case?
    Any help in this regard would be appreciated.
    Thanks & Regards,
    Vinit
    Edited by: vinit005 on Nov 1, 2010 12:43 PM

    Hi Vinit,
    I also had that requirement. There is no customer exit/BADI by which we can achieve that(as far as my knowledge), we have to use access key to achieve that. So we have gone for customer exit "MM06E005" to add Customer data tab in header and added our own fields, like Sales Person, Buyer Details etc.
    Thanks & Regards,
    Faheem.

  • How to make the logs captured for Z fields in ME21N/ ME22N

    Hi
    I have  devloped new tab(Screen) and added Z field in the PO header (ME21N) as per my requirement. But whenever I do changes to the perticular Z field, logs are not captured (ME21N->ENVIRONMENT-->HEADERLOG). How to make the logs captured for Z fields like standard fields. Is there any way?
    Regards
    Raj.

    HI Ranjitha
    For the data element of Z fields go to further caracteristics of tab and make change document checkbox ticked.

  • Custom fields in me21n

    Dear Gurus  ,
    I have added some custom fields in me21n in header & item level through badi . some fields are in standard table (CI_EKPODB )
    and other are in Ztable . Every thing is working fine .
    Problam is that when i am making a new purchase order through me21n by Copying another purchase order . Custom fields are not copying .
    Example: i have a po no : 101 .
    two custom field  zabc = 123 .
                                 zdef = 345 .
    when i am making a new po by adopt(Through Document overview on) this po 101 these custom fields are not coping  .
    is there any Customizing , exit  , Enhaancement  . That can Resolve this issue ?
    Thanks in advance .
    Hemant Gulati(A1).

    Hi
    In BADI 'ME_PROCESS_PO_CUST', try with method PROCESS_ITEM to populate them with the right filters. Check if in MEPOITEM for fields REFBS and REFPS is the PO that you are copying.
    I hope this helps you
    Regards
    Eduardo

  • 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.

  • Addind field in ME21n

    Hi friends ,
    I m adding field in me21n using the enhancement MM06E005  in this i m adding field in screen 0111.
    when i m going to check in me22n custom add is coming but when i m clicking custom tab a dump is coming.
    error is 'THE ATTRIBUTE SCREEN TYPE WITH THE VALUES NORMAL SCREEN AND SUBSCREEN DETERMINES THE USE OF THE SCREEN .IF A NORMAL SCREEN IS USED AS SUBSCREEN OR VICE-VERSA AN ERROR OCCURS.
    THE SCREEN SAPLXM06 011 HAS, IN THIS RESPECT AN INAPPROPRIATE SCREEN TYPE.
    PLEASE GIVE THE STEPS..N HELP ME..
    REGARDS
    YOGESH

    Hi Yogesh,
    Check the screen type of 0111 in the attribute tab. It should be Subscreen.
    Regards
    Dillip Sahoo

  • Added new field to cube but data not passed from DSO

    Hope someone can help.
    (BI 7.0) We added new fields into a cube. The fields already existed in the DSO. When we ran the process chain in development for the first time after making this change, we notice that the 'historical' data for these fields is populated in the cube. When we do this in our quality system only new data passed to the cube is updated. In development in the sub-chain DTP request we see all previous requests listed under selections. In quality it is only the latest request. The only difference is that the DeltaInit flag in the DTP request in development is ticked (extraction mode) - but not in quality. Does anyone know whyb this is?

    hi peter,
    Adding fields to cube doesn't affect delta status...The delta DTP should be able to handle delta requests automatically.
    I guess in you quality system, the cube already got all requests updated from ODS before you importing the change request. And in develop system none of the requests in ODS were updated before the change.
    Regards,
    Frank

  • How to add additional tab or fields in ME21n

    Hi all.
    I included some fields in EKKO table.
    I want to add these fields in ME21n, ME22n, ME23n Header screens.
    How to add?
    I can't find screen exit and user exit.
    Plz, let me know how to do in detail.
    Regards,
    nam
    Message was edited by:
            Kil Nam Kim

    Hi
    It is very much possible. Please discuss with your development team with the exact requirements. They should be able to do it with screen exits.
    Reward if this helps.

Maybe you are looking for