cancel
Showing results for 
Search instead for 
Did you mean: 

BRF+ DBLOOKUP

jbreen
Explorer
0 Kudos
159

Hi All,

I am new to BRF+. We are developing a function within BRF+ that uses the DBLOOKUP expression. The plan is to call this function multiple times within an ABAP program. If we do this, it appears that the DBLOOKUP is executed as part of each function call. This seems inefficient as the DBLOOKUP is selecting a large volume of data that will be the same with each function call. It seems that that only alternative would be to fetch against this table within the ABAP program and pass it to the function as part of its signature.

Is there a way to perform this DBLOOKUP once allowing the records to persist between each function call? Appreciate your help in advance.

John

Accepted Solutions (0)

Answers (1)

Answers (1)

jbreen
Explorer
0 Kudos

Hi All,

I was able to solve this issue using a procedure call to a static method instead.

John