‎2008 Nov 26 3:49 PM
Hi,
I want to create a view, but I have some problem to replicate some concept that normally I use within SQL here in a R/3 system.
I have created this view inside SE11:
CABN ATNAM LIKE '%_MOD' OR
CABN ATNAM LIKE 'SC4%_102' AND
CABN ATNAM NOT LIKE '%_MOD'
The problem is that I can't use the parentheses inside the transaction
Using the parentheses, I have to create something like this:
CABN ATNAM LIKE '%_MOD' OR
(CABN ATNAM LIKE 'SC4%_102' AND
CABN ATNAM NOT LIKE '%_MOD')
Any idea to solve this problem?
Thank you a lot
‎2008 Nov 28 1:40 PM
Hi.
CABN ATNAM LIKE '%_MOD' OR " 1
CABN ATNAM LIKE 'SC4%_102' AND CABN ATNAM NOT LIKE '%_MOD' " 2Create one view with first condition and then use created view in another
view with second conditions.