cancel
Showing results for 
Search instead for 
Did you mean: 

Error for variable in customer enhancement RXCEIO_BSREXC_FRCC

Former Member
0 Kudos

Hi All,

I have created a customer exit for a field in BEx query.

When I run in RSRT I get an error "Error for variable in customer enhancement RXCEIO_BSREXC_FRCC".

After performing logic I am populating E_T_RANGE as below:

wa_e_t_range-sign = 'I'.
wa_e_t_range-opt = 'NP'.
wa_e_t_range-low = 'RZZ*'.
APPEND wa_e_t_range TO e_t_range.

I want to exclude values for certain conditions.

What should I change to solve the problem?

Accepted Solutions (0)

Answers (1)

Answers (1)

DoanManhQuynh
Active Contributor
0 Kudos

this could be relate to your problem:

https://help.sap.com/saphelp_nw73/helpdata/en/4c/65fcd82f841f3ce10000000a42189c/frameset.htm

that I think its not support to use NP as operator. may be you should try to use CP instead.

Former Member
0 Kudos

We solved the problem by including the values only we want by replacing NP with 'EQ'.