New field in Enjoy PO (ME22N) on item level. not changable.

I searched the forum for this, but hmmm was kinda flooded with stuff not belonging to my subject. Maybe we should have Search courses...
So dudes this is the first time i have to adopt/enhance SAPLMEGUI.
I Appended include CI_EKPODB.
Since this is included in MEPOITEM i didnt had to append MEPOITEM.
My field is on the business-tab on item level. (Dynrpo 1322).
So i appended MEPO1322.
Then i modified Dynrpo 1322 (as it was already modified) and added my new field.
For testing issues i took a PO and used SE16N and &sap_edit to get some value into my new field for a certain PO-item.
When i then tried ME22N with my PO i saw my field on the right position and even populated with the value i had just set.
The thing is that even tho i´m in ME22N it is not changable.
Are there any documentations on how to modify/enhance/whatever PO items in enjoy scenario?
Having a look at MEPOITEM it has 2 big includes:
MEPOITEM_DATA "according to comments those should be changable
MEPOITEM_TECH "according to comments those should NOT be driectly changable
But since CI_EKPODB is included in MEPOITEM_DATA i get the idea that my field should be changable.
Sorry if i didnt search properly, i tried, maybe you can give me a hint how to imrpove my  searches

Hi
Probably the metafield is missing, this is set by fm MEMFS_BUILD_MAPPING_PO_VIEWS
Here the form mepo1320 is called:
FORM mepo1322 CHANGING ch_mapping TYPE mepo_t_metafield_mapping.
  gf_tabname = 'MEPO1322'.
  map 'AKTNR' mmmfd_promotion.
  map 'ABELN' mmmfd_alloc_tbl.
  map 'ABELP' mmmfd_alloc_tbl_item.
  map 'SAISO' mmmfd_seas_cat.
  map 'SAISJ' mmmfd_seas_year.
  map 'AUREL' mmmfd_at_relev.
  map 'KOLIF' mmmfd_prior_vend.
  map 'BSGRU' mmmfd_reason_ord.
ENDFORM.                               " MEPO1322
Probably you should enhance it
Try to check class CL_MFS_MM, method REGISTER
Max

Similar Messages

  • New field in sales order screen at item level

    Hi Friends,
    I need to insert a new field at the item level in the sales order screen (additional data tab). Please let me know how to do the same.
    Regards,
    Vivek

    Hi,
    you can add fields of self-defined tables on the "Additional Data B" tab
    . Those fields should be added onto the respective screen and the flow
    Logic should be adjusted. Additional item data is on screen SAPMV45A 0459. This screen contains
    Include SAPMV45A 8459 as user exits.
    This should involve not only appending a structure containing customer-
    Specific fields within the table VBAP but also using the
    userexit coding:
    a)MV45AOZZ for PBO (i.e. module zzmodify_uas_pbo output);
    b)MV45AIZZ for PAI (i.e. module zzmodify_uas_pai input);
    c)MV45AFZZ (sub-routine USEREXIT_MOVE_FIELD_TO_VBAP) for defaulting the
    values from the customer master and further processing.
    Best regards,
    Joerg

  • Adding new field (ie Goods Recievd date ) at item level in MIRO tcode.

    Hi Friends,
    I got on issue on screen exits.
    I have to add one more field in the transaction mir4 and that field is
       '  Good received Date '. So please explain me how to add this field in the screen and what is the process to do this one. i dont know about user exsit.
    So please help me for this issue and its very urgent....
    Thanks in Advance.....
    Anil.

    Hi
    Try the user exit
    LMR1M001  this contains a screen exit in which you can add an extra field at header level of MIRO.
    You can also try the BADI
    INVOICE_UPDATE
    reward points if useful
    regards
    Anji

  • I want to create a field in my shopping cart at item level

    I want to create a field in my shopping cart at item level of char 25 which is not there in the SRM server by default,
    Can tell me how can i do that,
    if it is related with adding some code in ITS then please give me sample code and tell me how to find that required ITS template.

    hello -
    you can reference sap note 672960 (older releases of SRM is 458591). 
    for shopping cart line item level, you would use structure:
    INCL_EEW_PD_ITEM_CSF_SC
    but keep in mind that you also have to add that field in:
    INCL_EEW_PD_ITEM_CSF
    thanks,
    stirfry,,,today is 'tofu'

  • Add new fields in F-36 ( Add customer item dynpro ) .

    Hi all.
    I want to add new fields in "Add Customer item" Dynpro of transaction F-36. It's possible ???. How I can do this ??
    In the "More Data" dynpro is possible to add new fields ????
    Thanks a lot
    Ismael

    Hi
    Sorry...I wanted to say I want to add a customer fields of table BSEG.
    Only I want to know if it's possible to add some fields in a f-36 trx.
    My users want to fill a new fields when they create new bill of exchange ( in dynpro "add customer item").
    thanks

  • New Field Required In ME21N/ME22N/ME23N

    Dear All Experts,
    We have some requirements to add new field in purchase order. We have done some development on this, but it is not working. Below :-
    <<Specifications removed by moderator>>
    Coding is as below:-
    zxm06top
    data: gl_aktyp type c,
    gl_no_screen type c,
    gl_rekko like ekko,
    gl_ekko_ci like ekko_ci,
    gl_ekpo_ci like ekpo_ci,
    gl_ekpo like ekpo,
    gl_ekko like ekko,
    gl_ucomm like sy-ucomm.
    types: begin of ekko_tab,
    ebeln like ekko-ebeln,
    ebelp LIKE ekpo-ebelp,
    ekko like ekko,
    end of ekko_tab.
    data: gt_ref_ekko_tab type table of ekko_tab.
    EXIT_SAPMM06E_006
    gl_aktyp = i_trtyp.
    gl_no_screen = i_no_screen.
    ekko_ci = i_ci_ekko.
    gl_ekko = i_ekko.
    EXIT_SAPMM06E_007
    move-corresponding i_ekko to gl_ekko_ci.
    gl_ekko = i_ekko.
    EXIT_SAPMM06E_008
    e_ci_ekko = gl_ekko_ci.
    if gl_ekko_ci-zzremark1 ne ekko_ci-zzremark1.
    e_ci_ekko-zzremark1 = ekko_ci-zzremark1.
    if gl_aktyp ne 'A'.
    e_ci_update = 'X'.
    endif.
    endif.
    But i am unable to save records to EKKO table and also unable to fetch them.
    Kindly help me on this topic.
    Regards,
    Shaligram
    Moderator Message: Do not dump your specifications. Be clear with what exactly is your problem. A generic statement, saying that "its not working", does not help. Have you debugged your program and tried to analyze where's the problem area?
    Edited by: kishan P on Jun 6, 2011 2:06 PM

    Hi,
    Try this :
    To Move data from screen fields to program and vice versa 
    (A). Screen fields to program (EXIT_SAPMM06E_008)
    In this FM :
    move-corresponding (Yor screen fields, i guess it is *gl_ekko_ci* in your program) to e_ci_ekko.
    (B). Program to Screen (EXIT_SAPMM06E_006)
    In this FM :
    move-corresponding i_ekko to (Yor screen fields, i guess it is *gl_ekko_ci* in your program).
    Similarly for item details and make sure that your project is active

  • ECS: New Pricing condition for purchase order on item level

    Hello Experts,
    we use SRM 5.0 with the extend classic scenario.
    We customized a new pricing condition (absolute discount), which we want to use in a purchase order and added it to the calculation schema.
    condition type:
    Application     BBP                      
    Source system LOCAL
    Usage           PR
    Condition Type  ZRBT
    Access Seq.     01CT
    Condition class       discount                  
    Calculat. Type    fixed amount
    Condit.category
    Rounding rule  commercial
    manual has priority
    item level
    delete
    amount/percent
    UoM
    Scale Base Type   quantity
    Check stat             none       
    Max. No. Dimens    no scales
    We see the condition type and can choose it in the transaction which is used to create a po.
    But when we choose it from the drop-down box it isn't added to the calculation.
    Regards,
    Sven

    Hello Sven,
    Thank you very much for posting the OSS note solution for your issue.
    I had similar issue and finally was able to resolve it after reading your post.
    regards
    Vinod

  • IDOC ORDERS02 E1EDP02 QUALF 001: Purchase Order at Item level not inserted

    Hi all,
    I try with an ORDERS02 IDoc in segment E1EDP02 with QUALF 001 to insert a customer purchase order number at item level different from the one passed in E1EDK01 QUALF 001 and I expect to insert additionally to the VBKD record for POSNR 000000 one for my item line.
    This additinal VBKD record is not inserted and I do not get this customer purchase order number in my sales order.
    Does any one know what to do?
    Thanks in advance.
    Axel

    To take over customer purchase order number on item level like the one for the ship-to-party (to treat a QUALF=001 for BSTKD like the QUALF=044 for BSTKD_E) seems to be unpossible.
    Within IDOC_INPUT_ORDERS
    LVEDAF5M: FILL_E1EDP02
    WHEN '044'.
    *- Bestellnummer des Warenempfängers -
    *- purchase order number consignee -
          PERFORM IDOC_MOVE USING E1EDP02-BELNR XVBAP-BSTKD_E D_FLAG_P-PBES.
    We need to have
    WHEN '001'.
    *- Bestellnummer des Warenempfängers -
    *- purchase order number -
          PERFORM IDOC_MOVE USING E1EDP02-BELNR XVBAP-BSTKD D_FLAG_P-PBES.
    this is calles from
    LVEDAF2U:
    *- Auftragsposition Referenzen -
    *- item reference data -
          WHEN 'E1EDP02'.
           MOVE IDOC_DATA-SDATA TO E1EDP02.
           PERFORM ZUORDNEN_ORDERS_E1EDP02.
    *-Zusätzliche Daten aus IDOC-Struktur (Kundenerweiterungen)----
    *-additional data's from IDOC (customer exit)----
           SY-SUBRC = 0.
           PERFORM CUSTOMER_FUNCTION_IDOC USING IDOC_DATA.
    This calls
    CALL CUSTOMER-FUNCTION '001'
    So IDOC-DATA-SDATA is allready in E1EDP02
    but it is not sufficient to do the call needed like stated above within EXIT_SAPLVEDA_001 since
    I expect a result in VBKD, not in VBAP, and BSTKD is not like BSTKD_E a field of XVBAP.
    In LVEDAF16, LVDEAF1C, LVEDAF27 AND LVEDAF4N the field is taken over into the screen but we have no chance to forward it to there
    and to enhance there. Last one seems most interesting since it is for VA01!
    It could be to enhance EDIT_SAPLVEDA_002 but how to forward the content to this field if it is a VBKD
    field and all VBKD fields are statically added to VBAP fields in the program and not in the dictionary.
    That would cause to append a parking field in VBAP or require to modify the code!
    Any better ideas?

  • Tax classification screen for item level not appearing in sale order under Billing Doc tab

    Hi Expert
    while creating sale order Tax classification screen is not appearing for item level under Billing document tab.
    Tax classification for customer and Material has already maintained. Tax classification screen is not appearing for USER but same time from our USER ID we can able to see that screen.
    please help in above issue. is this related to Authorization issue or other thing need to check.
    Regards
    Pash@SD

    Hi,
    As per standard in Sales Order Document you will be able to see the Tax Classification fields in Billing Tab at Header level (for Customer Tax Classification) and at Item level for (Material tax Classification). The values from Customer M<aster is not populated at Header level as per standard but you can populate the value by using the Exit. Material tax classification populated from material master as you can see that at item level.
    If for one User you are able to see and for other you are not able to see, kindly check first whether both are using same customer and material, and if yes, then check the User Exit.
    Thanks and regards,
    Amitesh Anand

  • Creation of new field in RFX screen and populating item details

    Hi Experts,
    I have to create a new button in "Create RFX " screen where it should procure the shopping cart details and it should populate in table in RFX screen.
    Shopping cart number should be entered in this screen. Set up for this input field is already done.Now i added an button GO.This one should retrieve the shopping cart details of entered shopping cart number and populate in the table present in this screen.
    Procedure
    1.Procure shopping cart details by calling the function module "bbp_pd_sc_getdetail".
    I am strucked after this.How to proceed further as i have tried different procedures.
    Please help if any idea on this

    thanks for reply
    I have did same thing but in input parameter of bado i am getting the shoping cart GUID . form which how i can get the Bid detail.
    and other part is I need to send data by extension this this how we can do ?
    do we need to write code in backend also and need to create custom field in backend PO table.
    Thaks for reply

  • Can we add new field to existing Sales Analysis by Item report?

    I would like to add sum total weight of all the items sold so far to the above system report?
    How could i do that please?
    Thanks.

    You need to have your own report. This system report is hard coded. You do not have option to add fields there.
    Thanks,
    Gordon

  • Error : Balancing field "Profit Center" in the line item 001 not filed

    Hello
    The said error have come under Customer credit memo process for retune of excess tax deduction on billing through T/code VF02. Our system had activated GL splitting. The document line item views are
    Customer  Cr xxxxx
    To    CS Tax return Dr xxxxx
    the Tax GL a/c is Balance sheet. Both a/c s are not assigned with default Pctr.
    If we are assign the tax g/l with default Pctr table then system have post doc.  as properly.
    But we would like to avoid the same. Because the Tax a/c is not specific Pctr related it is depend on
    income / expense GL a/c .
    Please advise how to solve this, if any enhancement is available then mentioned.
    Regards
    Avijit

    Hi
    What is the Document Splitting method you are using? Are you using your own created splitting method or SAP Std? If you are using your own, than in that case for Item Category of Tax on Sales/Purchase, add allowed Business Transaction as revenue also. You can find the same in IMG>Financial Accounting (New)>General Ledger Accounting (New)>Business Transactions>Document Splitting>Extended Document Splitting>Assign Item Category to Splitting Method.
    If you are using the standard splitting method, system will not allow you to change the allowed business transaction. In that case, if you want profit center to derive from material, you need to open a new gl account and assign the same in VKOA. Thereafter, to this gl account assign the item category as Revenue. System will derive the Profit Center from material master.
    In your presentation of final accounts, you can club the two accounts of Tax and Tax returns under one head.
    If either of the two options do not work, than i guess assignment of a default profit center in FAGL3KEH is one option. If your plant is also your profit center, in such a case, you may also check if Plant is there in the accounting document generated by VF01/VF02 and thereafter write a substitution rule for populating the profit center
    Thanks & Regards
    Sanil

  • PR Cost Center Release Strategy for Item Level not Working

    Hi All,
    I have a class with 2 Characterictics, CEBAN-ESTKZ (Creation indicator) and CEBAN-KOSTL (cost Center) and I have 2 release strategies the first one should trigger when MRP creates a PR ( ESTKZ=B and KOSTL=No input) this strategy is working fine, but the second strategy should trigger is if manually I create a PR and it is relevant to a cost center (ESTKZ=R and KOSTL=XXXX) This is not working, I dont know why sistem is not triggering the release strategy if everything seems to be ok.
    I know ceban structure has kostl field, but I checked and this field is not in the EBAN table, maybe this is the reason but then how will this work and as far as I know, this is standard field.
    I checked in CL24N and all the objects are assigned to the class, all hace status released (1) and and the "OK" check mark
    I checked in CL30N and if I enter in the ESTKZ characteristic=R and KOSTL=XXXX Then it finds the correct and only strategy, so I don´t know why this is not working, the only strange thing is that in CL30N if I only enter value R and leave empty the cost center, the system finds and shows me the 2 release strategies, this is strange.
    Is it mandatory to include the acc assignment field in the release strategy?
    Please give some guidance.
    Thanks
    Edited by: Julio on Nov 14, 2011 12:14 PM

    Hi, thanks for your reply,
    I have entered with leading zeros to complete 10 characters and is not working, I really don´t understand what is going on here, It should work even if I just have 1 characteristic assigned to the class right? this characteristic is CEBAN-KOSTL but this is not working.
    Any more ideas?
    Regards

  • Sales order pricing analysis button at item level not visible

    Hi Experts,
    I have a situation for one of the pricing procedures, the Analysis buttion at the at item pricing level (condition tab) is not visible.
    Can anyone please help me understand why is this happening?
    What is the solution for this?
    Thanks in advance!
    Regards,
    Kiran

    HI Satish,
    Looks like this is not a configuration problem.. specially any pricing configuration.
    I wonder if this has anything to do with authorization problem .. not 100% sure.
    Regards,
    Kiran

  • 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

Maybe you are looking for

  • Installing Oracle Database 11.2.0.3 on Centos 6.4 in AWS

    We have been installing and configuring oracle database 11.2.0.3 with OIAM 11gR1 for a few years with great success. RHEL 5.7 WLS 10.3.6 OracleDB 11.2.0.3 OIAM 11gR1 OHS 11.1.1.6 We have recently decided to move our VMs to Amazon's EC2 environment us

  • Ipod shows up on computer but not in itunes

    my ipod shows up on my computer and when i plug it in it says do not disconnect but it is not recognized in itunes. i have tried to plug and unplug it, update software and reset it while itunes was open and ipod was plugged in nothing works what do i

  • Problem during implementation of SP5 in PI 7.1 EHP 1

    Hi, we try to implement SP5 in our new installt PI System (7.1 EHP1) with the JSPM. The validation phase aborts and in the  JSPM_MAIN_1_01.LOG there is the following enty: Aug 16, 2010 9:59:28 AM [Error]: Validation finished with error. See log /usr/

  • Speakers-Which One Do you Recommend

    Which Speakers are the best in your opinion! Post Here

  • Facing difficulty in modifying the pdf files.

    Hi All I have designed a form in LiveCycle designer. http://forums.adobe.com/thread/1399755 from this thread i have one more query.i.e, when i am trying to modify the pdf file values modified values are not saving but validation are working fine. Cou