‎2010 Jun 02 4:56 PM
Hi All,
I have range internal table r_proj as below.
I |CP |D*
I |NE |D+++++++++1++++
Now I want all project Ids starting with D but I do not want those whose cost center starts with 1.
When I am putting this condition LOOP AT int_tab WHERE posid IN r_proj. I am still getting the project ID
D0102C00003171521 which should not come inside the loop.
Is am doing anyhing wrong?
Regards,
Vinit
‎2010 Jun 02 5:22 PM
Hi,
Write the second line as:
E |EQ |D+++++++++1++++
All "Includes" are connected with 'or', so if the record matches one Include range it is passes the test.
Regards, Gerd Rother
‎2010 Jun 02 5:22 PM
Hi,
Write the second line as:
E |EQ |D+++++++++1++++
All "Includes" are connected with 'or', so if the record matches one Include range it is passes the test.
Regards, Gerd Rother
‎2010 Jun 02 5:34 PM
Almost there, I think
E | CP |D+++++++++1++++
could work.
Thomas
‎2010 Jun 02 5:42 PM
Uh, sure. I just reversed the NE which was obviously wrong.
Gerd
‎2010 Jun 02 6:20 PM