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

Table entry not found in TBDBE

Former Member
0 Likes
3,431

Hi All

I have an issue with IDOC_INPUT_ACC_DOCUMENT. This IDOC I need to customize and apply some logic before posting. This IDOC is called by BAPI_IDOC_INPUT1, generically from table TBDBE.

When I make a copy of this FM I need to create a new entry in this table with message type.

I know I need to generate ALE-interface. But, I don't know how to do that?

Could anybody please help me?

Thanks

Senthil

Hi All

I have an issue with IDOC_INPUT_ACC_DOCUMENT. This IDOC I need to customize and apply some logic before posting. This IDOC is called by BAPI_IDOC_INPUT1, generically from table TBDBE.

When I make a copy of this FM I need to create a new entry in this table with message type.

I know I need to generate ALE-interface. But, I don't know how to do that?

Could anybody please help me?

Thanks

Senthil

3 REPLIES 3
Read only

Former Member
1,603

Hi Senthil,

I think you can use BDBG transaction to generate the BAPI function module to be used in the standard processing function module BAPI_IDOC_INPUT1.

Check entry of table TBDBE with basic type ACC_DOCUMENT03 and similarly if we try to generate the ALE interface for BAPI we get error. Means we cannot create two ale interfaces for single BO (BUS6035) and it's corresponding method (POST).

So, it will be better to change the current IDOC function module like IDOC_INPUT_ACC_DOCUMENT with any possible User-Exit / Enhancement. Or copy this function mocule and make your custom changes and bind it directly onto the IDOC Process code.

Regards,

Manju

Read only

Former Member
0 Likes
1,603

When you run BD21, TBDME holds Function module which will read change pointers for you Master data and creates the IDOC. Use BD60 to maintain the same.

Search BD60

http://help.sap.com/saphelp_nw04/helpdata/en/78/2178da51ce11d189570000e829fbbd/content.htm

Read only

Former Member
0 Likes
1,603

Thanks to all.