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

BTE 00001110 is not working

Former Member
0 Likes
4,263

Hello guys.

I have to create a validation for duplicate invoice in FI for tcode FV60 and FB60, so I found that using BTE can be done.

I followed all the steps to create the BTE, but it is not working. See the picture. Everything is done, but the BTE is not trigger. No idea why. It doesnt say that I need to active other things...Am I missing sth? I used tcode FIBF.

I checked the function PC_FUNCTION_FIND with 00001110, the result is ARGENT_PROCESS_00001110, but not mine.

Also i checked tcode BERP and this is the result, my process doesnt show

Regards

Miguel

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,991

Did you willingly keep the filter on country SE (Sweden) ?

Regards,

Raymond

9 REPLIES 9
Read only

former_member268925
Discoverer
0 Likes
2,991

Miguel,

I am having the exact same problem; have you had any luck finding out how to resolve this issue?

Read only

0 Likes
2,991

Hi,

I modify the standar function, i didnt create a client process, i used a SAP process and create my own function and assigned it to the SAP process. Because it didnt work with the client process...no idea why.

Regards

Miguel

Read only

Former Member
0 Likes
2,991

Hi,

I think the BTE is working only for special transactions. This BTE is triggering in FM FI_DUPLICATE_INVOICE_CHECK.  Can you put the break point and try to find that the BTE is triggering or not.

FM FI_DUPLICATE_INVOICE_CHECK

check sy-tcode ne 'FBVB'.

*--------------- Open FI- Prozeß-Schnittstelle -------------------------
   call function 'OPEN_FI_PERFORM_00001110_P'
     exporting
       i_bukrs = i_bukrs
       i_lifnr = i_lifnr
       i_waers = i_waers
       i_bldat = i_bldat
       i_xblnr = i_xblnr
       i_wrbtr = i_wrbtr
       i_belnr = i_belnr
       i_gjahr = i_gjahr
       i_buzei = i_buzei
       i_shkzg = i_shkzg
       i_blart = i_blart                                     "Note 568926
     importing
       e_nostd = xnost.

Thanks,

Kiran.

Read only

RaymondGiuseppi
Active Contributor
0 Likes
2,992

Did you willingly keep the filter on country SE (Sweden) ?

Regards,

Raymond

Read only

0 Likes
2,991

Hello,

yeap...mistake, I didnt know that it was a country field...

but still it doesnt work.. I dont know if that field do something, because what i did to make it works, was to modify the process BTE of an SAP application and it has the country AR and my function module, but my country is CL and it stop there...rare

Anyway, thanks for the tips.

Regards

Miguel

Read only

0 Likes
2,991

Hi Miguel

Can you try removing the Application from FI-FI to blank ,we have the same BTE in our system and it's set to blank..

Can you give a try  by setting the Application to Blank ?

Regards
Ram

Read only

0 Likes
2,991

The exact bahavior comes from the BTE definition, check table TPS01. Look for definion of field with SE11 as most are documented.

Regards,

Raymond

Read only

VijayCR
Active Contributor
0 Likes
2,991

Hello Miguel,

Open the program SAPMF05A and check for the call of the BTE ie

   CALL FUNCTION 'OPEN_FI_PERFORM_00001110_E

put a debugger there and check if this FM is triggered.

Thanks,

Vijay.

Read only

0 Likes
2,991

There is no country filter treatment on EVENT 00001110 (at least until SAP_FIN 617). The definition must be without country filter on FIBF and the filter must be implemented on your customized FM.