cancel
Showing results for 
Search instead for 
Did you mean: 

BBP_PD_SC_LISTSEL

former_member182371
Active Contributor
0 Kudos

Hi,

i´m using fm BBP_PD_SC_LISTSEL.

For table IT_ITEM_CUF_SEARCH i do:


  CLEAR: st_cuf_search, it_cuf_search.
  REFRESH it_cuf_search.
  st_cuf_search-fieldname = 'ZFIELD'.
  st_cuf_search-value     = 'SCO'.
  APPEND st_cuf_search TO it_cuf_search.

is it possible to add two values for the same ZFIELD?

e.g. 'SCO' and 'SCP'.

if so, How?

Best regards.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Pablo,

I am not very sure about this.

Try to add the following code and see:

CLEAR: st_cuf_search, it_cuf_search.

REFRESH it_cuf_search.

st_cuf_search-fieldname = 'ZFIELD'.

st_cuf_search-value = 'SCO'.

APPEND st_cuf_search TO it_cuf_search.

st_cuf_search-fieldname = 'ZFIELD'.

st_cuf_search-value = 'SCP'.

APPEND st_cuf_search TO it_cuf_search.

Thanks,

Pradeep

former_member182371
Active Contributor
0 Kudos

Hi,

thanks for the answer.

I´ve already tried your solution but it doesn ´t work.

Best regards.

Answers (1)

Answers (1)

former_member182371
Active Contributor
0 Kudos

Hi,

i haven´t found a solution yet.

If anybody of you does please let me kow.

Best regards.