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: 

BTE: 00001830 for F110

Former Member
0 Kudos

Hi ,

I have created BTE: 00001830 for F110 transaction. But its not triggering

form F110, I wonder why its is not triggerng from F110?.

I have created Product and assigned function module, event and product.

can any one know abt the same and is there any other procedure to create

the BTE?

Thx

2 REPLIES 2

Former Member
0 Kudos

Hi,

It may not be the appropriate one. Try couple of them by placing break points in as many as possible. if not go for Substitution routines.

thanks

Dany

Former Member
0 Kudos

Hi,

I guess it's because F110 submit SAPF110S. ( process 00001830 is in here. )

so if you want to check triggering there you can put a message.

ex.)

FUNCTION Z_PROCESS_00001830.

*"----------------------------------------------------------------------

*"*"Local Interface:

*"  IMPORTING

*"     REFERENCE(I_BUDAT) LIKE  F110C-BUDAT OPTIONAL

*"     REFERENCE(I_NEDAT) LIKE  F110V-NEDAT OPTIONAL

*"     REFERENCE(I_FDEBI) LIKE  F110V-FDEBI OPTIONAL

*"     REFERENCE(I_TRACE) LIKE  TRCOPT STRUCTURE  TRCOPT OPTIONAL

*"  TABLES

*"      T_REGUP STRUCTURE  REGUP_1830

*"  CHANGING

*"     VALUE(C_REGUH) TYPE  REGUH_1830

*"----------------------------------------------------------------------

message i000 with 'process_00001830'.

ENDFUNCTION.

then, you could see it in the proposal log of F110.

I hope this helps you.