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: 

Customized function Module BOM Problems

Former Member
0 Kudos
92

Hi,

i have created New function Module as copy of of

IDOC_INPUT_BOMMAT .

now i need to do some customizations in the new function module

like

1.calculating validity dates by using function module

CC_CHANGE_NUMBER_READ

This is required for:

Valid from date Change Ref - ZE1CHNGNR-ZCHFROM

Valid to date Change Ref - ZE1CHNGNR-ZCHTO

Current Year Change Ref - ZE1CHNGNR-ZCHCURR a new customized extended segment

How to do this

Please help me

1 REPLY 1

Former Member
0 Kudos
60

In function module "IDOC_INPUT_BOMMAT" there is a subroutine

  • move and convert data from idoc to application internal tables

perform idoc_to_bom_itabs tables idoc_data

idoc_contrl.

that transfers all the data in IDOC to internal tables.I think after this you have to write your code and modify BOM internal tables in the program. you can find all the BOM internal tables in the include "LCSDSTOP". I have never done this. Please try and see whether this will work for you.

Thanks.