HI Guru's,
In TKEFE table having ERKRS FIENM
My requirement is fetching VV FIELDS and DISPLAYING ALV O/P . based on ERKRS = 'IDEA'......
in the TKEFE table HAVING 144 VV FIELDS.i need to neglate other fields expect vv fields..... any idea to do this?
Thanx in advance!!!
Moderator message: please do more research before posting.
Message was edited by: Thomas Zloch
Hi,
Option 1:
Select ERKRS FIENM into table itab where ERKRS = 'IDEA' and FIENM CP 'VV*'.
Option 2:
Select ERKRS FIENM into table itab where ERKRS = 'IDEA'.
DELETE itab WHERE FIENE NP 'VV*'.
Cheers
~Niranjan
thx dude