Why ‘CLIENT SPECIFIED’ doesn’t works?

Hi, experts.
Why client specified doesn’t work.
I’m sure that i’m having roles for updating values in system and that table is not initial.
When i try to remove WHERE statement – it’s just getting a values from current system.

 

data : lt_tab type table of mara.
select * from mara CLIENT SPECIFIED
into CORRESPONDING FIELDS OF TABLE lt_tab
where mandt = ‘500’.
write : ‘123’

 

Current mandt EGD – 300. I want to get values from EGP 500.
I think it’s just ignores ‘CLIENT SPECIFIED’ for some reasons.

And sy-subrc = 4.
Here’s trace

trace.jpg

Scroll to Top