BADI - ME_GUI_PO_CUST ,can we have 10 plus cust feilds in  additional tab

Hi Experts.....
I have implemented a  BADI named ME_GUI_PO_CUST  and ME_PROCESS_PO_CUST in ME21N Transaction to add custom fields. With this I could get an extra custom tab in which I have included 7 Custom fields.
Now my new req is to get add 8 more new feilds . but in the second method of the BADI -ME_GUI_PO_CUST  i.e ....MAP_DYNPRO_FIELDS we have only 10 customer feilds available to be mapped .i ,e MMMFD_CUST_01  --- MMMFD_CUST_02 -
MMMFD_CUST_03 .....to ......MMMFD_CUST_10 .
So the Problem is how to map my remaining 5 feilds ..
Is it possible to add more than 10 feilds in the Customer subscreen  .If so please help me do it .
Thank you in advance

Hi,
Yes you can add any no of fields in that tab.For Custom fields SAP suggested to use integer constants above 90000000, from which for mmfd_Cust_01 to mmfd_Cust_10  are just examples...But we can use any  constant above the above 90000000.
For confirmation , check the where used list of mmfd_cust_01 and you will find 4 to 5 Fm where the logic will be like Metafield GE mmfd_cust_01 and not EQ in the standard Logic.
Hope this helps you in closing the Thread
Raj

Similar Messages

  • ME21N  ~~BADI - ME_GUI_PO_CUST ,can we have more than cust feilds.

    Hi Experts.....
    I have implemented a BADI named ME_GUI_PO_CUST and ME_PROCESS_PO_CUST in ME21N Transaction to add custom fields. With this I could get an extra custom tab in which I have included 7 Custom fields.
    Now my new req is to get add 8 more new feilds . but in the second method of the BADI -ME_GUI_PO_CUST i.e ....MAP_DYNPRO_FIELDS we have only 10 customer feilds available to be mapped .i ,e MMMFD_CUST_01 --- MMMFD_CUST_02 -
    MMMFD_CUST_03 .....to ......MMMFD_CUST_10 .
    So the Problem is how to map my remaining 5 feilds ..
    Is it possible to add more than 10 feilds in the Customer subscreen .If so please help me do it .
    Thank you in advance

    Subodh ,
    Yes You can use the BADI for header area as well .
    In the BADI Implementation , the first method in the interface - IF_EX_ME_GUI_PO_CUST~SUBSCRIBE
    there is an check for wether the BADI is meant for header or item .
    Code----
    we want to add a customer subscreen on the item detail tab
      CHECK im_application = 'PO'.
      CHECK im_element     = 'ITEM'.
    Code----
    And i have debugged , it triggers for header as well.
    so just change CHECK im_element  = 'ITEM'. to CHECK im_element  =  'HEADER'.
    It will work for header as well.
    Regards ,
    Rajesh .

  • Ever since the upgrade, my computer will not let me pick a new tab. I can't hit the plus or ask for a tab. How do I correct this??????

    Ever since the firefox did an automatic update, it will not let me select a new tab. I can't hit the plus sign or even if I click on New tab..it will Not work. If you right click on something and say open in new tab it will but it WILL NOT let me open a new blank tab to search in since the update.

    Uninstall the Ask toolbar and it should work again. There is a compatibility issue with the Ask toolbar and Firefox that prevents new tabs from being opened.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • Can I have SSD plus HD installed?

    My 21,5 inch iMac is from Oct. 2011 with 500Gb traditional HD and 8Gb RAM. Is it possible to install an SSD disk as system disk for all software and use the original 500 Gb HD as a storage disk?
    Can the same be done on my Mac Book Pro 15 inch dual core from Dec. 2010 with a traditional HD and 4Gb RAM?
    As I understand my computers will gain some considerable increased speed with an SSD disk as the system disk, but am I right here?
    I have Mac OS 10.7.5 on the iMac and Mac OS 10.6.8 on the MBP.
    In case yes to one or both, I would let some professional do the job.
    Kaare Nilsen
    Norway
    [email protected]

    There is a company called OWC who have some guides on their site which might answer this. I believe in both cases it involves sacrificing the DVD drive and fitting the SSD their. iFixit also carry some interesting guides.
    Also some good advice re the email address, in the previous post.

  • How can I have a different set of cookies per tab ?

    I want to have more than one login to google, wikipedia, web mailer etc. at a time, all of which are implemented as cookies, without the need for multiple profiles, because those force me to have more than one window, bookmarks, set of preferences etc. and to install any updates more than one time.
    Is there an extension making cookies private to tabs ?
    Or any other solution/idea ?

    Thank you for your quick reply - just checked Multifox out.
    It seems it still forces me to open a new window, while preventing the need for a new profile.
    Why isn't it in the addons.mozilla.org ? Looks dangerous ...

  • Just downloaded & am running Firefox 4. I have no plus sign to open new tab? Fix?

    No button as in older versions to open a new tab. Was convenient & help shows should be to the right of last tab, but isn't.

    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Error while implementing BADI ME_GUI_PO_CUST

    Hi Experts,
    My requirment is to add a new tab in ME21N screen.We have to implement the BADI ME_GUI_PO_CUST and methods SUBSCRIBE and MAP_DYNPRO_FIELDS will create a new tab.however i have got a problem in method MAP_DYNPRO_FIELDS.
    i have defined 2 z fields and i have appended it in EKKo as well.now in method MAP_DYNPRO_FIELDS i have written the code like this...
    LOOP AT ch_mapping ASSIGNING <mapping>.
        CASE <mapping>-fieldname.
          WHEN 'ZZPAYMENT_AGRE'.      <mapping>-metafield =mmmfd_cust_03.      "mmmfd_mat_grp.
          WHEN 'ZZPROJECT'.           <mapping>-metafield = mmmfd_cust_04.
        ENDCASE.
      ENDLOOP.
    if i do like that...it's not displaying the new tab but when i replace any of the custome fields(mmmfd_cust_03,mmmfd_cust_04) with  "mmmfd_mat_grp.it is displaying the new tab.
    can any one tell me what is the wrong in my code.

    solved by myself

  • BAdI: ME_GUI_PO_CUST add customer field to item level

    Hi Experts,
    I want to add a customer field to PO item level, how to do that? the functional consultant told me to first implement the BAdI: ME_PROCESS_PO_CUST before I can use BAdI: ME_GUI_PO_CUST, can anyone show me the procedure on how to implement this? thanks in advance.
    Kind regards
    Dawson

    Hi Dawson,
    Those BADIs are having good documentation and sample code. Once gone through the documentation, you can refer below thread.
    Re: ME_GUI_PO_CUST & ME_PROCESS_PO_CUST   - ME21N/ME22N/ME23N
    Reddy

  • I can't see the "plus" sign in my upper right corner ind the calendar!?

    I can't see the "plus" sign in my upper right corner ind the calendar!?

    In my database connection i can`t see the plus sign on the
    database tab.
    Not quite clear to me what you mean by that. In any case, you
    should configure the data source in the Coldfusion Administrator.
    Open the CF Admin page,
    http://127.0.0.1:8500/CFIDE/administrator/index.cfm
    . Go to the
    Data Sources section. Create a new datasource, for example,
    by entering the following
    Data Source Name:
    eventplanning
    Driver:
    Microsoft Access with Unicode
    Press the
    Add button. Enter the value
    Database File:
    C:\CFusionMX\wwwroot\cafe_townsend\contact\coldfusion\eventplanning.mdb
    Press the
    Submit button. Coldfusion will then verify the connection to
    the database. Confirm that its status is
    OK. If so, the eventplanning datasource is configured for
    use in your Coldfusion application.

  • Can`t see the plus sign

    Hi,
    In my database connection i can`t see the plus sign on the
    database tab.
    My local root folder is:
    C:\CFusionMX\wwwroot\cafe_townsend\contact\coldfusion\
    remote: C:\CFusionMX\wwwroot\
    testing server: C:\CFusionMX\wwwroot\
    I placed the database in here:
    C:\CFusionMX\wwwroot\cafe_townsend\contact\coldfusion\eventplanning.mdb
    can anyone help me.

    In my database connection i can`t see the plus sign on the
    database tab.
    Not quite clear to me what you mean by that. In any case, you
    should configure the data source in the Coldfusion Administrator.
    Open the CF Admin page,
    http://127.0.0.1:8500/CFIDE/administrator/index.cfm
    . Go to the
    Data Sources section. Create a new datasource, for example,
    by entering the following
    Data Source Name:
    eventplanning
    Driver:
    Microsoft Access with Unicode
    Press the
    Add button. Enter the value
    Database File:
    C:\CFusionMX\wwwroot\cafe_townsend\contact\coldfusion\eventplanning.mdb
    Press the
    Submit button. Coldfusion will then verify the connection to
    the database. Confirm that its status is
    OK. If so, the eventplanning datasource is configured for
    use in your Coldfusion application.

  • I have a new Palm Pre Plus - can I have more than one Google G-Mail Account on the phone?

    I have a general G-Mail account and it has started getting too busy with advertisements etc.  I'm thinking about changing to a different e-mail address but don't know what yet.
    I have an old Palm Centro I used to Synch with my laptop.  Now I need to do this with G-Mail.  So I created a unique g-mail account that would only contain my calendar and contact information - i called it "palm.last name" - made sense to me.
    When I try to add it to my Palm Pre Plus I am unable to sign in.  I'm wondering if you are limited to the number of Gmail e-mail accounts you can have on the phone.  If i can only have 1 then I don't want my e-mail to be "palm.last name" and give that out to people - that would not make sense to them. 
    I already have a Yahoo Account and I'm thinking about another Yahoo Account to keep some e-mails and instant messages separate from my personal Yahoo.  If I cannot add more than 1 account, this is going to be a problem.
    Thank you for any assistance you can provide.

    Hi, and welcome to the Palm Support Community.
    You should be able to add your second Gmail account without any problem...I have two Gmail accounts on my Pre and have no difficulties.
    When you say you are unable to "sign in", I assume you mean you are unable to sync the email and calendar on your new account?  Double-checking your user name and password are the only things that come to mind.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • I have 100 plus songs in my itunes library that have lost original files but they are on my ipod can i transfer them back in to itunes library

    I have 100 plus songs in my itunes library (downloaded from store and cd's) that have lost the original file on my computer. They are still playing on my ipod. Is there a way I can transfer the songs fromn the ipod back into the library to restore the files?

    I have tried everything I have read on the Internet about sync issues and restore etc and not there isn't a single song on my iPad or iPod touch. All of the songs are listed in my iTunes but are all greyed out, some have the cloud symbol next to them but lots don't and some say waiting.
    Long and short is nothing will save to my devices at all.....HELP !!!!!!!?

  • I have an iphone 4, with ios 4.3.3. I want to update it but when I connect it to itunes it says that it is the latest version of the software. So I cannot update it, and I need it very bad. Can anyone help me?

    I have an iphone 4, with ios 4.3.3. I want to update it but when I connect it to itunes it says that it is the latest version of the software. So I cannot update it, and I need it very bad. Can anyone help me?

    What version of iTunes do you have installed? If you are trying to update to iOS 6 you need iTunes 10.7 or later.

  • I have a MacBook Pro with Snow leopard (10.6.8). Downloaded Lion from Aplle store and got a bill but no upgrade. Bad hearing can't use telephone to support. Apple store can't help. CASE NUMBER: 19*****63

    I have a MacBook Pro with Snow leopard (10.6.8). Downloaded Lion from Aplle store and got a bill but no upgrade. Bad hearing can't use telephone to support. Apple store can't help. CASE NUMBER: 19*****63.
    I am hard or hearing and can't use the telepohne support and live on an island and can't get to a shot to buy the Lion.
    <Case Number Edited by Host>

    Try d/ling again.  In the App Store, option-click the tab

  • Okay, for a novice (iphone for dummies) what steps to take and in what order to identify specific problem and resolve issue of dropped calls and/or bad connections.  I have a 3g iphone4, I think.  Where is best place to find that information so I can veri

    Okay, for a novice (iphone for dummies) what steps to take and in what order to identify specific problem and resolve issue of dropped calls and/or bad connections.  I have a 3g iphone4, I think.  Where is best place to find that information so I can verify.  

    You can call your wireless provider and talk to them about it.
    You can restart your iphone, reset, your iphone and restore your iphone.

Maybe you are looking for