Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SE14- Does not exist in database

Former Member
0 Likes
2,332

hello all

I have append structure in Structure MEPO1211 with field name as ZZVSCC

component type ZVSCC with domain of KSCTL properties

I have done this for inserting this field in ME21N item overview which uses the MEPO1211 structure

but now it dosent display the field

in SE14 i got this message- Does not exist in database

Is there are any settings modifications to be done?

Or any other solutions?

What should I do to see this field in ME21N - Item Overview

pls help.

thank you.

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,703

MEPO1211 is a structure not a database table, so SE14 should not be used...

To fill the internal table with your customer field, perform some search at scn on BAdI ME_PROCESS_PO_CUST. Try using get/set_data on ref to item in method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM (when item is created/changed) and in method IF_EX_ME_PROCESS_PO_CUST~OPEN (on existing item at opening of PO)

If this field must be input allowed for users in detail screen, manage a customer subscreen with either BAdI ME_GUI_PO_CUST or Customer-Exit Enhancement MM06E005.

Regards,

Raymond

7 REPLIES 7
Read only

Former Member
0 Likes
1,703

Hi Nilesh,

Your requirement is to have custom fields in ME21N. For this you need screen exit for ME21N. Read this detailed post - https://scn.sap.com/message/6531036

BR.

Read only

Former Member
0 Likes
1,703

Hi Nilesh,

go to SMOD tcode. Utilities -> Find Give package name ME.  MM06E005 is the exact exit name to add custom field. go to Components. includes CI_EKKODB for Hrader table (EKKO) and CI_EKPODB for Item table(EKPO). add Custom field here. then you go to SE 14 and adjust header and item table. it takes a time to activate.

Thanks

Sabyasachi

Read only

0 Likes
1,703

hello sir,

I m not getting exactly where to add the  field of cost center.(in which exit)

Can u please explain me?

the field is ZZVSCC which i had created in Structure - mepo1211.

Thanku

Nilesh

Read only

0 Likes
1,703

Hi,

Check the link below

http://www.saptechnical.com/Tutorials/ExitsBADIs/ME21N/Index.htm

proper step wise procedure is given with screenshot

only change below fields

instead of CHECK im_element     = 'HEADER'..do this CHECK im_element     = 'ITEM'.

wherever there is header take item..

Regards

Tejas

Read only

0 Likes
1,703

Hi Nilesh,

Did you try link in my previous post ?

BR.

Read only

0 Likes
1,703

dear sir,

yes I tried as u suggested but its not working.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
1,704

MEPO1211 is a structure not a database table, so SE14 should not be used...

To fill the internal table with your customer field, perform some search at scn on BAdI ME_PROCESS_PO_CUST. Try using get/set_data on ref to item in method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM (when item is created/changed) and in method IF_EX_ME_PROCESS_PO_CUST~OPEN (on existing item at opening of PO)

If this field must be input allowed for users in detail screen, manage a customer subscreen with either BAdI ME_GUI_PO_CUST or Customer-Exit Enhancement MM06E005.

Regards,

Raymond