cancel
Showing results for 
Search instead for 
Did you mean: 

Filtering on space in CE_PROJECTION

0 Kudos
Dear All,
I am new to coding with CE Functions. I have a very basic scenario.
I am trying to use CE_PROJECTION and filtering on the LOEVM value, i.e., LOEVM = space
The below code snippet is not compiling.
pt_hist_tass = CE_PROJECTION (:ct_hist_tass, [
"MANDT","WERKS","MATNR","GRPNR","REPOBJ","LOEVM"], '("LOEVM" = '')');
Can anyone, please help me with the syntax for the filtering logic?
Thanks in advance.
Thanks & Best Regards,
Amrit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Amrit,

Please try as below.

pt_hist_tass = CE_PROJECTION (:ct_hist_tass, [

"MANDT","WERKS","MATNR","GRPNR","REPOBJ","LOEVM"], '"LOEVM" = ''''');

Note: 5 single quotes without space after =

Thanks

Basha.

0 Kudos

Thanks Barsha. The issue is resolved now.

Thanks & Best Regards,

Amrit

Answers (0)