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: 

Update change documents for customer fields in table EBAN (CI_EBANDB)

Former Member
0 Kudos

Hi Folks,

Do you know how to get the change documents updated for customer fields in table eban (ci_ebandb)?

I have set the change documents flag on the data element.

However the field is not updated in the change documents .

Thanks in advance for your help.

/Thomas

4 REPLIES 4

Former Member
0 Kudos

Hi Folks,

Am I the only person in the SAP world that would like my customer fields in CI_EBANDB to update the change documents (Table CDPOS)?

Any other that have achived this?

Please advice how

Thanks in advance.

0 Kudos

Hi Thomas,

SCDO - Change documents for purchase requisitions BANF Includes EBAN table, as you just have added fields in CI_INCLUDE and Change documents flag is also set for the corresponding data elements it should automatically update CDPOS for custom fields.

May be give a try creating your own change document for EBAN table and try generating the update program thru SCDO.

[this|; is somewhat related.

I know I have not answered you query exactly though

0 Kudos

Hi,

If you implement the enhancement MEREQ001 you should also implement the routines in order to manage the PAI dialog in the customer subscreen SAPLXM02 0111.

So in order to get data from your subscreen, you have to create the PAI module and then implemnt the EXIT_SAPLMEREQ_003 (Import Data from Customer Subscreen for Purchase Requisition).

Useful info can be found [here|;

Regards,

Andrea

Former Member
0 Kudos

Hi Thomas ,

Try this exit:

MEREQ001 EXIT_SAPLMEREQ_001

Sample code:


data: my_item  type mereq_item.

my_item = im_req_item->get_data( ).

clear ci_ebandb-zzrecip.
ci_ebandb-zzrecip = my_item-zzrecip.

Thanks,

AMS