‎2007 Sep 04 11:52 AM
‎2007 Sep 04 11:53 AM
‎2007 Sep 04 11:53 AM
‎2007 Sep 04 11:54 AM
Hi
There is no limit on this.
YOU CAN USE LIKE THIS.
case V_DAY.
WHEN 1 OR 2.
WHEN 3.
WHEN 4.
WHEN OTHERS.
ENDCASE.
reward if helpful.
‎2007 Sep 04 11:54 AM
Hi,
You can use as many as WHEN statments in a CASE statment, there is no restriction
Regrads
Sudheer
‎2007 Sep 04 11:54 AM
‎2007 Sep 04 11:55 AM
Hi,
there is no limit you can use n number of cases under when statement.
Regards,
Vijay
‎2007 Sep 04 11:56 AM
Hi Prasad,
there is no such limit on when.
did you come across any such prob. pls let me know.
Regards,
Sachin.
‎2007 Sep 04 12:18 PM
There is no such limit to the number of WHEN in a CASE statement.
Example.........
CASE sy-ucomm.
WHEN 'BACK'.
LEAVE TO SCREEN 100.
WHEN 'CANCEL'.
LEAVE SCREEN.
WHEN 'EXIT'.
LEAVE PROGRAM.
.
.
.
.
.
.
WHEN OTHERS.
MESSAGE '...' TYPE 'E'.
ENDCASE.
Regards,
Pavan
‎2007 Sep 04 12:27 PM
Hi,
There is no limit. You can use any no. of times.
Regards,
Asreddy
‎2007 Sep 05 7:42 AM
I Friends,
Thanks for your replies. I got the answer and so I am closing the topic
‎2013 Jun 07 1:23 PM