Dears.
I have a single * statement in FM module as following, there is a webservice will call it frequently (about 3000 per time).
select single * from zs0002 where kunnr = likp-kunnr.
if sy-subrc = 0.
p_format = zs0002-zformat.
endif.<...
Dears,I've found the answer,The cause is I use the dequeue the record, not dequeue the whole table. Dequeue the record does not work well. After change to dequeue the whole table, it works well. But as out request, we will maintain the data and call ...
Hi frdric.girod,Don't use Answer if you don't propose an answer. => ok, I seldom ask question here.and for your issu, you did not provide enough information about the problem. Do you update the table in the function ? =>no, I just do select.when do y...