Application Development 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: 

User Exit :Not able to update EKKO

Former Member
0 Kudos

Hello Experts,

I m working on user exit to add field under Customer Tab in mE21N.I get the customer field on screen, but not able to update

table EKKO.

My user -exit is already assigned to some ather project.

Help me to update the values in EKKO.

Aastha

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

It does not cause any problem if your user exit is assigned to some other project, Problem may be whether you are using correct EXIT to update!

Check this Enhancement MM06E005, this is for customer field maintenence.

Edited by: Anurag_n on Apr 12, 2010 9:58 AM

7 REPLIES 7

Former Member
0 Kudos

Hi,

It does not cause any problem if your user exit is assigned to some other project, Problem may be whether you are using correct EXIT to update!

Check this Enhancement MM06E005, this is for customer field maintenence.

Edited by: Anurag_n on Apr 12, 2010 9:58 AM

0 Kudos

Thanks Anurag,

Plz suggest me how to update EKKO table for that using FM EXIT_SAPMM06E_006

EXIT_SAPMM06E_007

EXIT_SAPMM06E_008

Aastha

0 Kudos

Hi,

Update the structrue fields "I_CI_EKKO" (Customer Fields) user exit "EXIT_SAPMM06E_006"/008.

Regards

Vinod

0 Kudos

Hi,

But how??

Aastha

Former Member
0 Kudos

Hi Aastha,

Define a global variable in the top with the same data type as of your field.

You can capture the value of your field in the PAI module of the customer screen you have created into that variable.

Again in the exit EXIT_SAPMM06E_008, you can update your field through that global variable

by passing it to the changing parameter E_CI_EKKO which will be holding your field.

Regards,

Akshay

0 Kudos

>

> Hi Aastha,

>

> Define a global variable in the top with the same data type as of your field.

> You can capture the value of your field in the PAI module of the customer screen you have created into that variable.

> Again in the exit EXIT_SAPMM06E_008, you can update your field through that global variable

> by passing it to the changing parameter E_CI_EKKO which will be holding your field.

>

> Regards,

> Akshay

Hi Akshay,

Implement exit EXIT_SAPMM06E_013 to update custom fields values in EKKO .

Regards,

S.Sivakumar

Former Member
0 Kudos

Solved