‎2004 Oct 20 9:53 AM
I have to use BTE, concretly 00503103, can anybody tell me how to use it?.
thanks in advance
‎2004 Oct 20 11:59 AM
‎2004 Oct 20 12:42 PM
Business transaction event, it is a module that is thrown after an event.
‎2004 Oct 20 12:53 PM
Hi Colin,
You asked what are BTE's?
These are <b>B</b>usiness <b>T</b>ransaction <b>E</b>vents.
They're a type of enhancement that are offered by SAP within the FI module. They use either a <i>Publish & Subscribe</i> or <i>Process</i> interfaces to retrieve their data from the main SAP programs.
They're not commonly used...
And now you know as much about BTE's as me!
Regards,
Hafeez
‎2004 Oct 20 1:19 PM
Hi,
Thanks. I think I've used them before now eons ago now you have explained what they are.
I think you will find there is a function module relating to the business transaction event with the name containing the event name in some form or another.
Also, you need to do some configuration to get the BTE to activate but this escapes me. You will need to debug the code leading up to the function module to see what configuration is required, this is what I did.
Cheers
Colin
‎2004 Oct 20 1:57 PM
Transaction BF* (example check out BF34) for BTE configutaion.
Regards
Raja
‎2004 Oct 20 2:12 PM
Hi,
Search the main program of the transaction with the BTE number
You will find a function call some thing like
call function 'OPEN_FI_PERFORM_00001011_E'
exporting
i_bseg = bseg
i_bkpf = bkpf.
Now develop a FM (implementing your logic for enhancements) with the importing structre exactly same as this exporting structure.
in transaction BF34 assing the FM to the BTE number.
more at http://help.sap.com
Regards
Raja
‎2004 Oct 20 3:12 PM