cancel
Showing results for 
Search instead for 
Did you mean: 

AIC_INCIDENT_S - Value cleared after search

former_member223320
Participant
0 Kudos

Hello Experts,

I have created an AET field and added it to AIC_INCIDENT_S search criteria. I made that field as DDLB & added the values. When I select the value from DDLB and run the search, the search is working fine. But, it's immediately clearing the selected value from DDLB, setting back to the first value in the DDLB ( it's actually initial in the list). Users want the selected value to be there after completing the search.

I tried to check in GET_XXX and SET_XXX methods, but they never got triggered.

Did I miss anything? Please help. Thanks!

-Ricky.

Accepted Solutions (0)

Answers (1)

Answers (1)

bruce_li
Contributor
0 Kudos

Hi Ricky,

I think you can debug at following method to see which getter method is generated and which value is defaulted.

CL_BTSLS_ADVS_CNTRL
METHOD GET_DQUERY_DEFINITIONS

CALL METHOD me->(lv_getter)
CHANGING
cs_result = <rt_result>.

Best Regards,

Bruce

former_member223320
Participant
0 Kudos

Hi Bruce,

I have already checked... There was a length mismatch.. I corrected.. it's working fine now.

Thanks for the response.

-Ricky.